/* style/fishing-games.css */

/* Base styles for the page-fishing-games scope */
.page-fishing-games {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  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: clamp(2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Card styles */
.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* A bright green from button gradient */
  border: 2px solid #2AD16F;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background */
}

/* 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 */
  margin-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1920px; /* Ensure it doesn't exceed typical screen width */
}

.page-fishing-games__hero-content {
  position: relative; /* Changed from absolute to relative to avoid text overlap issues */
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(8, 22, 15, 0.85); /* Slightly transparent background */
  border-radius: 12px;
  margin-top: -80px; /* Pull content up over the image slightly for visual flow */
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Video Section */
.page-fishing-games__video-section {
  padding: 60px 20px;
  padding-top: 10px; /* As per instructions, small top padding */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 60px;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  width: 100%; /* Ensure it spans full width of its container */
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-fishing-games__video-description {
  color: #A7D9B8; /* Text Secondary */
  margin-top: 20px;
  font-size: 1.1rem;
}

.page-fishing-games__video-cta {
  margin-top: 30px;
}

/* Introduction Section */
.page-fishing-games__intro-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-fishing-games__intro-content p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
}

.page-fishing-games__intro-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Game Showcase Section */
.page-fishing-games__game-showcase {
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-fishing-games__game-card {
  text-align: center;
  padding: 20px;
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__game-card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__game-card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

/* How-to-Play Section */
.page-fishing-games__how-to-play {
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.page-fishing-games__step {
  text-align: center;
  padding: 30px;
}

.page-fishing-games__step-icon {
  background-color: #2AD16F;
  color: #08160F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-fishing-games__how-to-play-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__strategy-item {
  padding: 30px;
  text-align: left;
}

.page-fishing-games__strategy-title {
  font-size: 1.8rem;
  color: #2AD16F; /* Bright green */
  margin-bottom: 15px;
}

.page-fishing-games__strategy-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-fishing-games__strategies-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-fishing-games__promotions {
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.page-fishing-games__promo-card {
  text-align: center;
  padding: 20px;
}

.page-fishing-games__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__promo-card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__promo-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games__promo-card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__promo-card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Features Section */
.page-fishing-games__features {
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-fishing-games__feature-item {
  text-align: center;
  padding: 30px;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

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

.page-fishing-games__feature-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  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: #13994A;
}

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #F2FFF6;
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E;
  border-radius: 0 0 8px 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

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

/* Conclusion Section */
.page-fishing-games__conclusion {
  padding: 60px 0;
  text-align: center;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

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

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

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

@media (max-width: 768px) {
  /* Global mobile adaptations */
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Hero section specific */
  .page-fishing-games__hero-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  /* Video section specific */
  .page-fishing-games__video-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles offset */
  }

  .page-fishing-games__video-wrapper {
    margin: 25px auto;
  }

  /* Image responsive rules */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-fishing-games__game-card-image,
  .page-fishing-games__promo-card-image {
    height: auto !important; /* Allow height to adjust naturally */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
  }

  /* Video responsive rules */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  /* Button responsive rules */
  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    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__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__cta-buttons {
    flex-direction: column;
  }

  /* Card and container responsiveness */
  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__step-title,
  .page-fishing-games__feature-title,
  .page-fishing-games__promo-card-title,
  .page-fishing-games__game-card-title {
    font-size: 1.4rem;
  }

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

  .page-fishing-games__faq-toggle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }

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

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__conclusion-cta-buttons {
    gap: 10px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 20px;
  }

  .page-fishing-games__game-card-image,
  .page-fishing-games__promo-card-image {
    height: auto !important; 
    min-height: 180px;
  }

  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
}