/* style/fishing-games.css */

:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-bg-color: #08160F;
  --page-card-bg: #11271B;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green-color: #0A4B2C;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-main);
  background-color: var(--page-bg-color); /* Body background is dark, so content text is light */
  line-height: 1.6;
}

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

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-gold-color);
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__highlight {
  color: var(--page-gold-color);
  font-weight: 700;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is extra decor */
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text contrast, not color change */
}

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above image filter */
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--page-gold-color);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--page-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
  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;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--page-text-main);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--page-gold-color);
  border: 2px solid var(--page-gold-color);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
  transform: translateY(-2px);
}

.page-fishing-games__btn-icon {
  margin-left: 10px;
  font-size: 20px;
}

/* General Content Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-bg-color);
}

.page-fishing-games__game-types-section,
.page-fishing-games__strategies-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  background-color: var(--page-deep-green-color);
}

.page-fishing-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
  background-color: var(--page-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-border-color);
}

.page-fishing-games__game-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--page-gold-color);
  padding: 20px 25px 10px;
}

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

.page-fishing-games__card-button {
  margin: 0 25px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--page-text-main);
  box-shadow: 0 3px 10px rgba(17, 168, 78, 0.3);
}

.page-fishing-games__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.5);
}

/* Guide List */
.page-fishing-games__guide-list,
.page-fishing-games__strategy-list,
.page-fishing-games__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__guide-list-item,
.page-fishing-games__strategy-list-item,
.page-fishing-games__advantages-list-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__list-item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--page-gold-color);
  margin-bottom: 15px;
}

.page-fishing-games__guide-list-item p,
.page-fishing-games__strategy-list-item p,
.page-fishing-games__advantages-list-item p {
  font-size: 17px;
  color: var(--page-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.page-fishing-games__guide-list-item a,
.page-fishing-games__strategy-list-item a,
.page-fishing-games__advantages-list-item a {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

.page-fishing-games__guide-list-item a:hover,
.page-fishing-games__strategy-list-item a:hover,
.page-fishing-games__advantages-list-item a:hover {
  color: var(--page-gold-color);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.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-gold-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: var(--page-deep-green-color);
}

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  color: var(--page-gold-color);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 17px;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    max-height: 500px;
  }
}

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

  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(16px, 4vw, 20px);
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__card-button,
  .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;
  }

  .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__game-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 60px 0;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 17px;
  }

  .page-fishing-games__list-item-title {
    font-size: 20px;
  }

  .page-fishing-games__faq-question {
    font-size: 18px;
    padding: 15px 20px;
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure padding-top for video/hero section is minimal */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-image-wrapper {
    max-height: 300px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__card-button {
    font-size: 16px;
    padding: 12px 20px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .page-fishing-games__list-item-title {
    font-size: 18px;
  }

  .page-fishing-games__faq-question {
    font-size: 16px;
    padding: 12px 15px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
  }
}