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

.page-fishing-games {
  background-color: var(--body-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px var(--glow-color);
}

.page-fishing-games__intro-text {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games__cta-button--secondary {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--text-main);
  margin-left: 20px;
}

.page-fishing-games__cta-button--secondary:hover {
  background: var(--deep-green);
}

.page-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-fishing-games__video-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--body-bg);
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--primary-color);
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(17, 168, 78, 0.5);
}

.page-fishing-games__section-description {
  font-size: 1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Example max-width for video */
  margin: 0 auto;
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__video-link {
  display: block;
  cursor: pointer;
}

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

.page-fishing-games__features-section,
.page-fishing-games__games-showcase,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__tips-strategies-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-bottom-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games__features-grid,
.page-fishing-games__games-grid,
.page-fishing-games__guide-steps,
.page-fishing-games__promo-cards,
.page-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-image,
.page-fishing-games__game-image,
.page-fishing-games__guide-image,
.page-fishing-games__promo-image,
.page-fishing-games__tip-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__guide-title,
.page-fishing-games__promo-title,
.page-fishing-games__tip-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__feature-text,
.page-fishing-games__game-description,
.page-fishing-games__guide-text,
.page-fishing-games__promo-text,
.page-fishing-games__tip-text {
  font-size: 0.95em;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--deep-green);
  color: var(--text-main);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-fishing-games__faq-question:hover {
  background-color: var(--primary-color);
}

.page-fishing-games__faq-qtext {
  font-size: 1.1em;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
}

.page-fishing-games__faq-answer {
  padding: 20px 30px;
  background-color: var(--card-bg);
  color: var(--text-secondary);
  text-align: left;
  font-size: 0.95em;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__cta-bottom-section .page-fishing-games__cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

  .page-fishing-games__hero-section,
  .page-fishing-games__video-section,
  .page-fishing-games__features-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__tips-strategies-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom-section {
    padding: 30px 15px;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__video,
  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__guide-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__tip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-cards,
  .page-fishing-games__tips-grid,
  .page-fishing-games__cta-buttons-group,
  .page-fishing-games__card,
  .page-fishing-games__section,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-cards,
  .page-fishing-games__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .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;
    margin: 0 !important;
  }

  .page-fishing-games__cta-buttons-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

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

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