/* style/fishing-games.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-fishing-games__description {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button color - lighter green for border */
  border: 2px solid #2AD16F;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 16px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit image height */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

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

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

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 56px); /* Responsive H1 font size */
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-fishing-games__hero-content .page-fishing-games__description {
  font-size: clamp(18px, 2.8vw, 22px);
  margin-bottom: 40px;
  color: #F2FFF6; /* Main text color for hero description */
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* About Section */
.page-fishing-games__about-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-fishing-games__text-block,
.page-fishing-games__image-block {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

/* Benefits Section */
.page-fishing-games__benefits-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__benefit-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-fishing-games__benefit-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__card-icon {
  width: 100%; /* Ensure images are responsive */
  height: auto;
  max-width: 250px; /* Limit max size */
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-fishing-games__card-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-fishing-games__benefit-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card h3 {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  padding: 20px 20px 10px;
}

.page-fishing-games__game-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  padding: 0 20px 20px;
  flex-grow: 1; /* Make paragraph grow to push button to bottom */
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin: 0 20px 20px;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-fishing-games__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 24px;
  color: #2AD16F; /* Main green for steps */
  margin-bottom: 10px;
}

.page-fishing-games__step-item p {
  color: #F2FFF6; /* Text Main */
  font-size: 17px;
}

.page-fishing-games__step-item a {
    color: #F2C14E; /* Gold for links */
    text-decoration: underline;
}

.page-fishing-games__step-item a:hover {
    color: #F2FFF6;
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__promo-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-card h3 {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  padding: 20px 20px 10px;
}

.page-fishing-games__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 0 20px 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* For details tag */
}

.page-fishing-games__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green when open */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #2E7A4E; /* Border */
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  background-color: #0A4B2C; /* Deep Green when open */
  border-bottom-color: transparent;
}

.page-fishing-games__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-fishing-games__faq-answer a {
    color: #F2C14E; /* Gold for links */
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: #F2FFF6;
}

/* CTA Section */
.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-fishing-games__cta-content {
  max-width: 800px;
}

.page-fishing-games__cta-content .page-fishing-games__section-title {
  color: #F2C14E; /* Gold */
}

.page-fishing-games__cta-content .page-fishing-games__description {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Ensure small top padding on mobile */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__hero-content {
    padding: 0 15px;
  }

  .page-fishing-games__main-title {
    font-size: 32px;
  }

  .page-fishing-games__description {
    font-size: 16px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  
  .page-fishing-games__section-title {
    font-size: 28px;
    padding: 0 15px;
  }

  .page-fishing-games__about-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__benefits-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-cards-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-fishing-games__benefit-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__game-card h3,
  .page-fishing-games__promo-card h3 {
    font-size: 20px;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 180px;
  }

  .page-fishing-games__steps-list {
    padding: 0 15px;
  }

  .page-fishing-games__step-item {
    padding: 20px;
  }

  .page-fishing-games__step-title {
    font-size: 20px;
  }

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

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

  /* Image responsiveness for all images in content sections */
  .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__content-wrapper,
  .page-fishing-games__benefits-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-cards-grid,
  .page-fishing-games__steps-list,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }
}

/* Specific dark background for some sections to ensure contrast */
.page-fishing-games__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}
.page-fishing-games__dark-section .page-fishing-games__description {
  color: #A7D9B8;
}
.page-fishing-games__dark-section .page-fishing-games__section-title {
  color: #F2C14E;
}

/* Light background for some sections if needed, but not explicitly requested */
.page-fishing-games__light-bg {
  background-color: #0A4B2C; /* Deep Green, actually a medium-dark */
  color: #F2FFF6;
}
.page-fishing-games__light-bg .page-fishing-games__description {
  color: #A7D9B8;
}
.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #F2C14E;
}
.page-fishing-games__light-bg .page-fishing-games__step-item {
    background-color: #11271B; /* Card BG */
}
.page-fishing-games__light-bg .page-fishing-games__step-title {
    color: #2AD16F;
}
.page-fishing-games__light-bg .page-fishing-games__step-item p {
    color: #F2FFF6;
}