/* style/fishing-games.css */

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

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

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Responsive H2 */
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768; /* Auxiliary color */
  border-radius: 2px;
}

.page-fishing-games__text-block {
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary text color */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding for video/hero */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for hero image */
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-fishing-games__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); /* Responsive H1 */
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  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%);
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-fishing-games__btn--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
}

.page-fishing-games__btn--text {
  background: none;
  border: none;
  color: #2AD16F;
  padding: 5px 10px;
  font-size: 1rem;
  text-decoration: underline;
}

.page-fishing-games__btn--text:hover {
  color: #57E38D;
}

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

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 60px 0;
  background-color: #08160F;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__feature-card {
  background-color: #08160F; /* Darker background for card content */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-fishing-games__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-fishing-games__step-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
  display: block;
}

.page-fishing-games__step-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Strategies Section */
.page-fishing-games__strategies-section {
  padding: 60px 0;
  background-color: #11271B;
}

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

.page-fishing-games__text-content {
  flex: 2;
}

.page-fishing-games__strategy-image {
  flex: 1;
  width: 100%; /* Important for desktop flex container */
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  display: block;
}

/* Weapons Section */
.page-fishing-games__weapons-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-fishing-games__weapon-card {
  background-color: #11271B;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-fishing-games__weapon-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__weapon-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

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

.page-fishing-games__promo-card {
  background-color: #08160F;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__promo-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__promo-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

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

.page-fishing-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> tag */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* For <summary> tag */
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 25px;
  text-align: center;
  color: #2AD16F;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F;
}

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

/* Links */
.page-fishing-games a {
  color: #2AD16F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: #57E38D;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
  }

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

  .page-fishing-games__strategy-image {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .page-fishing-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .page-fishing-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__weapon-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__step-card,
  .page-fishing-games__weapon-card,
  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__step-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px; /* Ensure minimum height */
    object-fit: cover;
    display: block !important;
  }
  
  .page-fishing-games__hero-image {
    min-height: 250px; /* Specific min-height for hero on mobile */
  }

  /* Image/Video/Button containers */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container,
  .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;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific padding for video section on mobile */
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual */
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
}

/* Ensure all content area images are at least 200px wide/high */
.page-fishing-games__feature-image,
.page-fishing-games__step-image,
.page-fishing-games__promo-image,
.page-fishing-games__strategy-image {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters on images */
.page-fishing-games img {
  filter: none;
}

/* Links in text blocks to match main text color, but retain hover */
.page-fishing-games__text-block a,
.page-fishing-games__step-description a,
.page-fishing-games__faq-answer a,
.page-fishing-games__promo-description a {
  color: #2AD16F;
  text-decoration: underline;
}
.page-fishing-games__text-block a:hover,
.page-fishing-games__step-description a:hover,
.page-fishing-games__faq-answer a:hover,
.page-fishing-games__promo-description a:hover {
  color: #57E38D;
}