/* style/fishing-games.css */

/* Base styles for the fishing games page, ensuring light text on dark body background */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for readability */
  text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  box-sizing: border-box;
  background: #0a0a0a; /* Ensure dark background for hero */
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Clamp for responsive font size without fixed large values */
  font-size: clamp(2.2em, 5vw, 3.5em);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.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: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background: #1e87bb;
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-fishing-games__btn-primary--center,
.page-fishing-games__btn-secondary--center {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-fishing-games__btn-primary--large {
  font-size: 1.3em;
  padding: 18px 40px;
}

/* Introduction Section */
.page-fishing-games__introduction {
  padding: 60px 0;
  background: #ffffff;
  color: #333333; /* Dark text on light background */
}

.page-fishing-games__introduction .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__introduction .page-fishing-games__text-block {
  color: #333333;
}

.page-fishing-games__image-content {
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Features Section */
.page-fishing-games__features {
  padding: 60px 0;
  background: #0a0a0a; /* Dark background */
  color: #ffffff;
}

.page-fishing-games__features .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Guide Section */
.page-fishing-games__guide {
  padding: 60px 0;
  background: #ffffff;
  color: #333333;
}

.page-fishing-games__guide .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__guide .page-fishing-games__text-block {
  color: #333333;
}

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

.page-fishing-games__step-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-fishing-games__step-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-card .page-fishing-games__card-title {
  color: #26A9E0;
}

.page-fishing-games__step-card .page-fishing-games__card-description {
  color: #555555;
}

/* Promotions Section */
.page-fishing-games__promotions {
  padding: 60px 0;
  background: #0a0a0a;
  color: #ffffff;
}

.page-fishing-games__promotions .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__promotions .page-fishing-games__text-block {
  color: #f0f0f0;
}

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

.page-fishing-games__promo-card {
  background: rgba(38, 169, 224, 0.15); /* Main brand color with transparency */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  background: rgba(38, 169, 224, 0.25);
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: #ffffff;
}

.page-fishing-games__promo-card .page-fishing-games__card-description {
  color: #f0f0f0;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background: #ffffff;
  color: #333333;
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background: #eef;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: #e0e0f0;
  border-bottom-color: transparent;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 15px 20px 20px;
  font-size: 1em;
  color: #555555;
  background: #f8f8f8;
}

/* Final CTA Section */
.page-fishing-games__cta-final {
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__cta-final .page-fishing-games__section-title {
  color: #26A9E0;
  margin-bottom: 25px;
}

.page-fishing-games__cta-final .page-fishing-games__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-fishing-games__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(2em, 6vw, 3em);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-section {
    min-height: 500px;
    padding-bottom: 40px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 7vw, 2.8em);
  }
  .page-fishing-games__hero-description {
    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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__btn-primary--center,
  .page-fishing-games__btn-secondary--center {
    max-width: 100%;
  }
  .page-fishing-games__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

/* Ensure content area images are not too small */
.page-fishing-games__image-content {
  min-width: 200px;
  min-height: 200px;
}

/* Dark background sections */
.page-fishing-games__dark-bg {
  background: #0a0a0a;
  color: #ffffff;
}

/* Light background sections */
.page-fishing-games__light-bg {
  background: #ffffff;
  color: #333333;
}

/* Ensure no CSS filters are applied to images */
.page-fishing-games img {
  filter: none;
}

/* Specific color for login button if applicable, though not used here directly */
a[href*="login.html"].page-fishing-games__btn-primary {
  background: #EA7C07;
  border-color: #EA7C07;
}

a[href*="login.html"].page-fishing-games__btn-primary:hover {
  background: #c76706;
  border-color: #c76706;
}