/* style/fishing-games.css */
: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-bg: #08160F;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
  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;
}

.page-fishing-games__text-center {
  text-align: center;
}

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

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__medium-bg {
  background-color: var(--page-fishing-games-secondary-color);
  color: #000000;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -150px; /* Adjust to place content below image but still visually connected */
  padding: 40px;
  background: rgba(8, 22, 15, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  /* No fixed font-size for H1 */
}

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

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

.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;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-fishing-games-gold-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

/* About Section */
.page-fishing-games__about-section {
  padding: 80px 0;
}

.page-fishing-games__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__content-grid .page-fishing-games__text-block {
  flex: 1;
  padding-right: 20px;
}

.page-fishing-games__content-grid .page-fishing-games__image-block {
  flex: 1;
  text-align: center;
}

.page-fishing-games__content-grid .page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  color: var(--page-fishing-games-text-secondary);
}

/* Games Showcase */
.page-fishing-games__games-showcase {
  padding: 80px 0;
  background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

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

.page-fishing-games__card .page-fishing-games__btn-primary {
  margin: 0 auto;
  width: calc(100% - 30px);
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
}

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

.page-fishing-games__feature-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__guide-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__guide-step-title {
  font-size: 1.6em;
  color: var(--page-fishing-games-primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__guide-item p {
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__guide-item .page-fishing-games__btn-secondary {
  width: auto;
}

.page-fishing-games__callout-box {
  background-color: var(--page-fishing-games-deep-green);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__callout-box p {
  font-size: 1.2em;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 20px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

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

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

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

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

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-fishing-games-gold-color);
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
  background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

/* CTA Bottom */
.page-fishing-games__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__cta-bottom .page-fishing-games__section-title {
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__cta-bottom .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -100px;
    padding: 30px;
  }

  .page-fishing-games__main-title {
    font-size: 2.5em;
  }

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

  .page-fishing-games__content-grid {
    flex-direction: column;
  }

  .page-fishing-games__content-grid .page-fishing-games__text-block {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }

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

  .page-fishing-games__main-title {
    font-size: 2em;
  }

  .page-fishing-games__tagline {
    font-size: 1em;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

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

  .page-fishing-games__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-fishing-games__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-fishing-games__about-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__features-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom {
    padding: 50px 0;
  }

  .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__content-grid,
  .page-fishing-games__game-cards,
  .page-fishing-games__features-grid,
  .page-fishing-games__promo-cards,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__card-image {
    height: 200px;
  }

  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 1.8em;
  }

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