/* style/fishing-games.css */
.page-fishing-games {
  background-color: #08160F;
  color: #F2FFF6;
  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;
}

/* Text Colors */
.page-fishing-games__text-main {
  color: #F2FFF6;
}

.page-fishing-games__text-secondary {
  color: #A7D9B8;
}

/* Background Colors */
.page-fishing-games__dark-bg {
  background-color: #08160F;
}

.page-fishing-games__dark-section {
  background-color: #0A4B2C; /* Deep Green for sections */
  color: #F2FFF6;
}

.page-fishing-games__card {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

.page-fishing-games__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to place content over the bottom part of the image, without overlapping text on main image area */
  background: linear-gradient(to top, rgba(8, 22, 15, 0.95), rgba(8, 22, 15, 0.8), transparent);
  border-radius: 15px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

/* General Section Styles */
.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
  background-color: #08160F;
}

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

.page-fishing-games__feature-item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(42, 209, 111, 0.1);
  padding: 15px;
}

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

.page-fishing-games__feature-text {
  color: #A7D9B8;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  background-color: #0A4B2C;
}

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

.page-fishing-games__game-card {
  text-align: left;
  overflow: hidden;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2E7A4E;
}

.page-fishing-games__game-content {
  padding: 25px;
}

.page-fishing-games__game-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games__game-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-fishing-games__game-title a:hover {
  color: #2AD16F;
}

.page-fishing-games__game-description {
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* How To Play Section */
.page-fishing-games__how-to-play {
  background-color: #08160F;
}

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

.page-fishing-games__step-item {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(242, 193, 78, 0.1);
  padding: 10px;
}

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

.page-fishing-games__step-text {
  color: #A7D9B8;
}

.page-fishing-games__step-text a {
  color: #2AD16F;
  text-decoration: none;
}

.page-fishing-games__step-text a:hover {
  text-decoration: underline;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies {
  background-color: #0A4B2C;
}

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

.page-fishing-games__tip-item {
  padding: 25px;
  text-align: left;
}

.page-fishing-games__tip-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-fishing-games__tip-text {
  color: #A7D9B8;
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #08160F;
}

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

.page-fishing-games__promo-card {
  text-align: left;
  overflow: hidden;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2E7A4E;
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #F2FFF6;
  padding: 15px 20px 0;
}

.page-fishing-games__promo-text {
  color: #A7D9B8;
  padding: 0 20px 20px;
}

.page-fishing-games__cta-center {
  margin-top: 50px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #0A4B2C;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  background-color: #11271B;
  color: #F2FFF6;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid #2E7A4E;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  background-color: #08160F;
  color: #A7D9B8;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

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

.page-fishing-games__faq-answer a {
  color: #2AD16F;
  text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

/* Image & Video responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }

  .page-fishing-games__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-fishing-games__hero-content {
    padding: 20px;
    margin-top: -50px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-fishing-games__hero-description,
  .page-fishing-games__section-description,
  .page-fishing-games__feature-text,
  .page-fishing-games__game-description,
  .page-fishing-games__step-text,
  .page-fishing-games__tip-text,
  .page-fishing-games__promo-text,
  .page-fishing-games__faq-answer p {
    font-size: 1em;
  }

  .page-fishing-games__hero-actions,
  .page-fishing-games__cta-actions {
    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__section {
    padding: 60px 0;
  }

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

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .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;
  }

  .page-fishing-games__faq-question {
    font-size: 1em;
  }

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

  .page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

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