/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* body background is #121212 from shared.css */
}

.page-fishing-games__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-fishing-games__hero-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-fishing-games__hero-content {
  max-width: 900px;
}

.page-fishing-games__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-fishing-games__hero-cta-buttons,
.page-fishing-games__final-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;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games__content-area {
  background-color: #1a1a1a; /* Slightly lighter dark for content */
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-fishing-games__game-types {
  background-color: #0A2463;
}

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

.page-fishing-games__card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-fishing-games__card:hover {
  transform: translateY(-10px);
}

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

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 10px;
}

.page-fishing-games__card-text {
  font-size: 1em;
  line-height: 1.5;
  padding: 0 20px 20px;
  color: #e0e0e0;
}

.page-fishing-games__features-section {
  background-color: #1a1a1a;
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-fishing-games__feature-item {
  text-align: left;
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-fishing-games__image-centered {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__feature-image,
.page-fishing-games__guide-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__how-to-play {
  background-color: #0A2463;
}

.page-fishing-games__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-fishing-games__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 1em;
  line-height: 1.5;
  color: #e0e0e0;
}

.page-fishing-games__promotions-section {
  background-color: #1a1a1a;
}

.page-fishing-games__promo-cta {
  margin-top: 40px;
}

.page-fishing-games__faq-section {
  background-color: #0A2463;
}

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

.page-fishing-games__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #2a2a2a;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #3a3a3a;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
  background-color: #0A2463;
  color: #ffffff;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #1a1a1a;
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.6;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 20px;
}

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

.page-fishing-games__final-cta-section {
  background-color: #121212;
  padding-bottom: 80px;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    flex-direction: column;
    padding: 60px 15px;
    gap: 30px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    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__section {
    padding: 40px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__text-block {
    font-size: 0.95em;
  }
  .page-fishing-games__game-cards,
  .page-fishing-games__promo-cards,
  .page-fishing-games__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__feature-list {
    gap: 20px;
  }
  .page-fishing-games__card-image {
    height: 200px;
  }
  .page-fishing-games__image-centered {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-fishing-games__feature-image,
  .page-fishing-games__guide-image,
  .page-fishing-games__hero-image,
  .page-fishing-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__image-centered,
  .page-fishing-games__game-cards,
  .page-fishing-games__promo-cards,
  .page-fishing-games__steps-container,
  .page-fishing-games__feature-list,
  .page-fishing-games__faq-list,
  .page-fishing-games__promo-cta,
  .page-fishing-games__final-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}