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

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp as advised */
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-fishing-games__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

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

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 10px #57E38D;
}

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

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

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 40px;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  max-width: 900px;
  text-align: center;
  position: relative; /* Ensure content is above any potential background layers */
  z-index: 10;
  padding: 0 20px;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
  padding-top: 80px;
}

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

.page-fishing-games__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

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

.page-fishing-games__feature-text {
  color: #A7D9B8;
  font-size: 0.95em;
}

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

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

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

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

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

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

.page-fishing-games__game-card-text {
  color: #A7D9B8;
  font-size: 0.9em;
  flex-grow: 1;
  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(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.page-fishing-games__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #2AD16F;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games__step-text {
  color: #A7D9B8;
  font-size: 0.95em;
}

/* Promotions Section */
.page-fishing-games__promotions {
  background-color: #0A4B2C;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
}

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

.page-fishing-games__promo-text {
  color: #A7D9B8;
  font-size: 0.9em;
}

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

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

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

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

.page-fishing-games__tip-text {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-fishing-games__strategy-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E;
}

/* 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; /* Override card padding */
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
  user-select: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-item summary::marker {
  display: none;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

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

.page-fishing-games__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
  padding-bottom: 80px;
  background-color: #08160F;
}

/* Global image styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Ensure content area images are not too small */
.page-fishing-games__feature-icon,
.page-fishing-games__game-card-image,
.page-fishing-games__step-icon,
.page-fishing-games__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

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

  .page-fishing-games__section-description,
  .page-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

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

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 10px; /* Add margin for stacked buttons */
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__cta-button + .page-fishing-games__cta-button {
    margin-top: 10px;
  }

  .page-fishing-games__container,
  .page-fishing-games__hero-content,
  .page-fishing-games__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-fishing-games__game-card-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__strategy-image {
    height: auto; /* Allow height to adjust for smaller screens */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

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

  .page-fishing-games__dark-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }

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

  .page-fishing-games__feature-title,
  .page-fishing-games__game-card-title,
  .page-fishing-games__step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__tip-title {
    font-size: 1.2em;
  }

  .page-fishing-games__hero-section {
    padding: 10px 0 30px 0;
  }

  .page-fishing-games__section {
    padding: 30px 0;
  }
}