/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-background: #08160F;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border: #2E7A4E;
  --page-fishing-games-glow: #57E38D;
  --page-fishing-games-gold: #F2C14E;
  --page-fishing-games-divider: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
  background-color: var(--page-fishing-games-background); /* Dark background */
  color: var(--page-fishing-games-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* --- General Section Styles --- */
.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--page-fishing-games-gold);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-fishing-games-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-background);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-main {
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-secondary {
  color: var(--page-fishing-games-text-secondary);
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 600px;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for content */
  border-radius: 10px;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--page-fishing-games-gold);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-fishing-games__description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-gold);
  border: 2px solid var(--page-fishing-games-gold);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--page-fishing-games-gold);
  color: var(--page-fishing-games-background);
  transform: translateY(-2px);
}

.page-fishing-games__btn-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Introduction Section --- */
.page-fishing-games__introduction-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-card-bg);
  text-align: center;
}

.page-fishing-games__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* --- Game Types Section --- */
.page-fishing-games__game-types-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__card-description {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

/* --- Features Section --- */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-card-bg);
}

.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

.page-fishing-games__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-icon {
  width: 120px; /* Min size 200x200px, but this is an icon. Let's make it 200x200px in HTML, and scale down here. */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(87, 227, 141, 0.5));
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--page-fishing-games-gold);
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
}

/* --- How to Play Section --- */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__step-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-fishing-games__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-fishing-games__guide-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* --- Promotions Section --- */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-card-bg);
}

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

.page-fishing-games__promo-card {
  background-color: var(--page-fishing-games-deep-green);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__promo-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--page-fishing-games-gold);
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 25px;
}

/* --- Download App Section --- */
.page-fishing-games__download-app-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
  text-align: center;
}

.page-fishing-games__download-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* --- FAQ Section --- */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-card-bg);
}

.page-fishing-games__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-deep-green);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  color: var(--page-fishing-games-text-main);
  cursor: pointer;
  background-color: var(--page-fishing-games-deep-green);
  border-bottom: 1px solid transparent; /* default */
  transition: all 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--page-fishing-games-border);
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.5);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
  text-align: left;
}

/* --- Conclusion Section --- */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
  text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(30px, 4.5vw, 50px);
  }
  .page-fishing-games__description {
    font-size: 18px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* All images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image containers */
  .page-fishing-games__section, .page-fishing-games__card, .page-fishing-games__container, .page-fishing-games__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* All videos */
  .page-fishing-games video, .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All video containers */
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  /* All buttons */
  .page-fishing-games__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }

  /* Button containers */
  .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;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
  }

  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-fishing-games__hero-content {
    padding: 10px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-fishing-games__description {
    font-size: 16px;
  }
  .page-fishing-games__introduction-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__features-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__download-app-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .page-fishing-games__text-block {
    font-size: 15px;
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__features-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card-image {
    height: 200px;
  }
  .page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-fishing-games__faq-question {
    font-size: 18px;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    font-size: 15px;
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .page-fishing-games__description {
    font-size: 15px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    font-size: 15px;
    padding: 12px 20px;
    min-width: unset;
  }
}