/* style/fishing-games-popular-recommendations.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-fishing-games-popular-recommendations {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for the page, contrasting with body #121212 */
  line-height: 1.6;
  background-color: transparent; /* Main content background is transparent to show body background */
}

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

.page-fishing-games-popular-recommendations__section-title {
  font-size: clamp(28px, 4vw, 42px); /* Responsive font size for titles */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.2;
}

.page-fishing-games-popular-recommendations__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

/* HERO Section */
.page-fishing-games-popular-recommendations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fishing-games-popular-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Slightly darken background image for text readability */
}

.page-fishing-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-fishing-games-popular-recommendations__main-title {
  font-size: clamp(3em, 6vw, 4.5em); /* Larger font size for main title */
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom color for H1 */
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-fishing-games-popular-recommendations__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-fishing-games-popular-recommendations__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-popular-recommendations__btn-primary {
  background: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom color for Register/Login font */
  border: 2px solid #C30808;
  margin: 10px;
}

.page-fishing-games-popular-recommendations__btn-primary:hover {
  background: #a30606;
  transform: translateY(-2px);
}

.page-fishing-games-popular-recommendations__btn-secondary {
  background: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  margin: 10px;
}

.page-fishing-games-popular-recommendations__btn-secondary:hover {
  background: #005a2e;
  transform: translateY(-2px);
}

/* Section Backgrounds for Contrast */
.page-fishing-games-popular-recommendations__dark-bg .page-fishing-games-popular-recommendations__section-title,
.page-fishing-games-popular-recommendations__dark-bg .page-fishing-games-popular-recommendations__text-block,
.page-fishing-games-popular-recommendations__dark-bg .page-fishing-games-popular-recommendations__feature-title,
.page-fishing-games-popular-recommendations__dark-bg .page-fishing-games-popular-recommendations__feature-description,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__section-title,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__text-block,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__feature-title,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__feature-description,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__game-title,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__game-description,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__strategy-heading,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__strategy-description,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__faq-qtext,
.page-fishing-games-popular-recommendations__dark-section .page-fishing-games-popular-recommendations__faq-answer {
  color: #ffffff; /* Ensure white text on dark sections */
}

.page-fishing-games-popular-recommendations__light-bg .page-fishing-games-popular-recommendations__section-title,
.page-fishing-games-popular-recommendations__light-bg .page-fishing-games-popular-recommendations__text-block,
.page-fishing-games-popular-recommendations__light-bg .page-fishing-games-popular-recommendations__game-title,
.page-fishing-games-popular-recommendations__light-bg .page-fishing-games-popular-recommendations__game-description {
  color: #333333; /* Ensure dark text on light sections */
}

.page-fishing-games-popular-recommendations__dark-section {
  background-color: #017439; /* Brand green for dark sections */
  padding: 60px 0;
}

.page-fishing-games-popular-recommendations__light-bg {
  background-color: #ffffff; /* White background for light sections */
  padding: 60px 0;
}

/* Intro Section */
.page-fishing-games-popular-recommendations__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Why Choose Section */
.page-fishing-games-popular-recommendations__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-recommendations__feature-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark section */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-recommendations__feature-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFF00; /* Yellow for feature titles */
}

.page-fishing-games-popular-recommendations__feature-description {
  font-size: 16px;
}

/* Games List Section */
.page-fishing-games-popular-recommendations__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-popular-recommendations__game-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text on white background */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-popular-recommendations__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-popular-recommendations__game-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439; /* Brand green for game titles */
}

.page-fishing-games-popular-recommendations__game-description {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Strategy Section */
.page-fishing-games-popular-recommendations__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-popular-recommendations__strategy-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-popular-recommendations__strategy-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFF00; /* Yellow for strategy headings */
}

.page-fishing-games-popular-recommendations__strategy-description {
  font-size: 16px;
}

/* Promotions Section */
.page-fishing-games-popular-recommendations__promotions-section {
  text-align: center;
}

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

.page-fishing-games-popular-recommendations__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-fishing-games-popular-recommendations__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-popular-recommendations__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

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

.page-fishing-games-popular-recommendations__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  color: #f0f0f0;
}

/* Final CTA Section */
.page-fishing-games-popular-recommendations__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-fishing-games-popular-recommendations__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

  .page-fishing-games-popular-recommendations__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-fishing-games-popular-recommendations__main-title {
    font-size: clamp(2.5em, 8vw, 3.5em);
  }

  .page-fishing-games-popular-recommendations__hero-description {
    font-size: 16px;
  }

  .page-fishing-games-popular-recommendations__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 30px;
  }

  .page-fishing-games-popular-recommendations__text-block {
    font-size: 16px;
  }

  .page-fishing-games-popular-recommendations__features-grid,
  .page-fishing-games-popular-recommendations__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-popular-recommendations__feature-title {
    font-size: 20px;
  }

  .page-fishing-games-popular-recommendations__game-title {
    font-size: 20px;
  }

  .page-fishing-games-popular-recommendations__strategy-heading {
    font-size: 20px;
  }

  .page-fishing-games-popular-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-popular-recommendations__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsive adaptation */
  .page-fishing-games-popular-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-popular-recommendations__section,
  .page-fishing-games-popular-recommendations__card,
  .page-fishing-games-popular-recommendations__container,
  .page-fishing-games-popular-recommendations__hero-section,
  .page-fishing-games-popular-recommendations__intro-section,
  .page-fishing-games-popular-recommendations__why-choose-section,
  .page-fishing-games-popular-recommendations__games-list-section,
  .page-fishing-games-popular-recommendations__strategy-section,
  .page-fishing-games-popular-recommendations__promotions-section,
  .page-fishing-games-popular-recommendations__faq-section,
  .page-fishing-games-popular-recommendations__cta-final-section,
  .page-fishing-games-popular-recommendations__feature-card,
  .page-fishing-games-popular-recommendations__game-card,
  .page-fishing-games-popular-recommendations__faq-item,
  .page-fishing-games-popular-recommendations__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
}