.page-fishing-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, main padding from body */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
}

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

.page-fishing-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* Adjusted H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
  max-width: 60ch; /* Restrict H1 length */
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 70ch; /* Restrict description length */
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-fishing-games__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-fishing-games__secondary-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.page-fishing-games__secondary-button:hover {
  background-color: #4A8BFF;
}

.page-fishing-games__secondary-button--center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}

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

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

.page-fishing-games__paragraph {
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-fishing-games__introduction-section,
.page-fishing-games__featured-games-section,
.page-fishing-games__promotions-section,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
}

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

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

.page-fishing-games__introduction-image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure minimum size */
}

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

.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 4px 8px rgba(0, 0, 0, 0.05);
  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 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

.page-fishing-games__game-card-link {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-fishing-games__game-card-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-fishing-games__game-card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.page-fishing-games__game-card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-fishing-games__promotions-text {
  flex: 1;
}

.page-fishing-games__promotions-image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure minimum size */
}

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

.page-fishing-games__promotions-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-fishing-games__promotions-list-item {
  background-color: #E6F0FF;
  border-left: 4px solid #2F6BFF;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 4px;
  color: #1F2D3D;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-fishing-games__guide-step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid #D6E2FF;
}

.page-fishing-games__guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-fishing-games__guide-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-fishing-games__guide-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

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

.page-fishing-games__strategy-image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure minimum size */
}

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

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

.page-fishing-games__strategy-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-fishing-games__strategy-list-item {
  margin-bottom: 8px;
}

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

.page-fishing-games__why-choose-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-fishing-games__why-choose-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-fishing-games__why-choose-image-wrapper {
  text-align: center;
}

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

.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: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #E6F0FF;
  color: #1F2D3D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0; /* Remove default margin */
}

.page-fishing-games__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-fishing-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games__introduction-grid,
  .page-fishing-games__promotions-content,
  .page-fishing-games__strategy-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__introduction-image-wrapper,
  .page-fishing-games__promotions-image-wrapper,
  .page-fishing-games__strategy-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }

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

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__featured-games-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }

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

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    max-width: 100%;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .page-fishing-games__section-title {
    font-size: 1.6rem;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__why-choose-grid {
    grid-template-columns: 1fr;
  }

  /* Force content images to be responsive and not overflow */
  .page-fishing-games img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }

  .page-fishing-games__game-card-image {
    height: auto;
  }

  .page-fishing-games__introduction-image,
  .page-fishing-games__promotions-image,
  .page-fishing-games__guide-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__why-choose-image {
    width: 100%;
    height: auto;
  }

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

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

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

/* Ensure no image filters are applied */
.page-fishing-games img {
  filter: none; /* Absolutely no CSS filters */
}

/* Specific image size constraint for content area (min 200px) */
.page-fishing-games__introduction-image,
.page-fishing-games__game-card-image,
.page-fishing-games__promotions-image,
.page-fishing-games__guide-image,
.page-fishing-games__strategy-image,
.page-fishing-games__why-choose-image {
  min-width: 200px;
  min-height: 200px;
  /* Ensure CSS doesn't make them smaller than 200px */
  width: 100%; /* Or specific width > 200px */
  height: auto; /* Or specific height > 200px */
  max-width: 100%;
  object-fit: cover;
}