/* style/fishing-games.css */
.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color */
}

.page-fishing-games__paragraph {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color as border */
}

.page-fishing-games__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Dark text for bright background */
  transform: translateY(-2px);
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__card-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #F2C14E;
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__card-link:hover {
  background-color: #FFD36B;
}

/* HERO SECTION */
.page-fishing-games__hero-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 60px;
  color: #FFF6D6;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games__hero-image-container {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-fishing-games__hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-top: 40px; /* Separates content from image */
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* INTRO SECTION */
.page-fishing-games__intro-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
  text-align: center;
}

.page-fishing-games__intro-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
}

/* POPULAR GAMES SECTION */
.page-fishing-games__popular-games-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  line-height: 1.5;
  padding: 0 15px;
  flex-grow: 1;
}

/* STRATEGY SECTION */
.page-fishing-games__strategy-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
}

.page-fishing-games__strategy-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__strategy-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-fishing-games__strategy-description {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6;
}

/* PROMOTIONS SECTION */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__promo-description {
  font-size: 0.95em;
  color: #FFF6D6;
  line-height: 1.5;
  padding: 0 15px;
  flex-grow: 1;
}

/* WHY CHOOSE SECTION */
.page-fishing-games__why-choose-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__list-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
}

.page-fishing-games__list-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__advantage-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-fishing-games__advantage-description {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6;
}

/* FAQ SECTION */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  cursor: pointer;
  list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker,
.page-fishing-games__faq-question::marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6;
  opacity: 0.8;
}

/* CALL TO ACTION SECTION */
.page-fishing-games__call-to-action-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2em;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-fishing-games__hero-image-container img {
    max-height: 500px;
  }

  .page-fishing-games__games-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__advantages-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  /* HERO SECTION */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image-container img {
    max-height: 300px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-content {
    margin-top: 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* BUTTONS & BUTTON CONTAINERS */
  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* GENERAL IMAGES & CONTAINERS */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__games-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__advantages-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* PRODUCT DISPLAY (GAMESHOW) AREA */
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr; /* Single column for games */
  }

  .page-fishing-games__game-card img {
    
  }

  /* OTHER CONTENT MODULES */
  .page-fishing-games__intro-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__call-to-action-section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-fishing-games__paragraph {
    font-size: 1em;
    text-align: left;
  }

  .page-fishing-games__game-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__advantage-title {
    font-size: 1.3em;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
}