.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content slightly over image for visual flow, but not covering */
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.8) 0%, #2F6BFF 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 900px;
}

.page-fishing-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  /* Avoid fixed large font-size for H1 as per prompt */
}

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

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

.page-fishing-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.page-fishing-games__button:hover {
  box-shadow: 0 5px 15px #A5C4FF;
  transform: translateY(-2px);
}

.page-fishing-games__button--secondary {
  background: none;
  border: 2px solid #D6E2FF;
  color: #D6E2FF;
}

.page-fishing-games__button--secondary:hover {
  background-color: rgba(214, 226, 255, 0.1);
  box-shadow: 0 5px 15px rgba(165, 196, 255, 0.3);
  transform: translateY(-2px);
}

.page-fishing-games__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-fishing-games__button--large {
  padding: 15px 35px;
  font-size: 1.15em;
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

/* About Fishing Games Section */
.page-fishing-games__about-fishing-games {
  background-color: #F4F7FB;
}

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

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

.page-fishing-games__text-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-fishing-games__image-content {
  flex: 1;
  text-align: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
  object-fit: cover;
}

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

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

.page-fishing-games__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

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

.page-fishing-games__benefit-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__benefit-image {
  width: 200px; /* Ensure minimum size */
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  display: block;
}

.page-fishing-games__benefit-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-fishing-games__benefit-description {
  font-size: 0.9em;
  line-height: 1.5;
  color: #1F2D3D;
}

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

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

.page-fishing-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.1em;
  font-weight: 600;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #F4F7FB;
  color: #1F2D3D;
  position: relative;
  margin: 0; /* Reset default margin */
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-fishing-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-answer p {
  padding-bottom: 15px;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-fishing-games__faq-question.active + .page-fishing-games__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* CTA Banner Section */
.page-fishing-games__cta-banner {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

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

.page-fishing-games__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-fishing-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #D6E2FF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-fishing-games__content-grid {
    flex-direction: column;
  }
  .page-fishing-games__image-content {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }
  .page-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__button {
    width: 100%;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-fishing-games__section-description {
    font-size: 0.95em;
  }
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
  /* Mobile content area image constraint */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Retain minimum size even on mobile */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
  }
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.4em;
  }
  .page-fishing-games__cta-title {
    font-size: 1.6em;
  }
}