.page-fishing-games {
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #F5F7FA); /* Ensure body background is respected */
}

.page-fishing-games__dark-bg {
  background: #E53935; /* Main brand color for dark sections */
  color: #ffffff; /* White text for dark backgrounds */
}

.page-fishing-games__light-bg {
  background: #F5F7FA; /* Light background color */
  color: #333333; /* Main text color for light backgrounds */
}

.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  position: relative;
  overflow: hidden;
}

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

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

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
  z-index: 1; /* Ensure content is above any background effects if any */
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff; /* White text on dark background */
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for description */
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

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

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-fishing-games__section {
  padding: 60px 20px;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #333333;
}

.page-fishing-games__content-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-fishing-games__content-area p,
.page-fishing-games__content-area ul,
.page-fishing-games__content-area ol {
  flex: 1;
  min-width: 300px; /* Ensure content wraps nicely */
  color: inherit; /* Inherit color from parent section */
}

.page-fishing-games__content-area--reverse {
  flex-direction: row-reverse;
}

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

.page-fishing-games__image--left {
  margin-right: 40px;
}

.page-fishing-games__image--right {
  margin-left: 40px;
}

.page-fishing-games__feature-list,
.page-fishing-games__tip-list,
.page-fishing-games__promo-list,
.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__feature-item,
.page-fishing-games__tip-item,
.page-fishing-games__promo-item,
.page-fishing-games__step-item {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly visible on dark bg */
  color: inherit;
}

.page-fishing-games__light-bg .page-fishing-games__feature-item,
.page-fishing-games__light-bg .page-fishing-games__tip-item,
.page-fishing-games__light-bg .page-fishing-games__promo-item,
.page-fishing-games__light-bg .page-fishing-games__step-item {
  background-color: #ffffff; /* White card on light background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__feature-title,
.page-fishing-games__tip-title,
.page-fishing-games__promo-item strong,
.page-fishing-games__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: inherit;
}

.page-fishing-games__feature-item p,
.page-fishing-games__tip-item p,
.page-fishing-games__promo-item p,
.page-fishing-games__step-item p {
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-fishing-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-fishing-games__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games__cta-buttons--center .page-fishing-games__btn-primary,
.page-fishing-games__cta-buttons--center .page-fishing-games__btn-secondary {
  margin: 0 10px; /* Adjust spacing for centered buttons */
}

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-fishing-games__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: #E53935; /* Brand color for question */
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #E53935;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

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

.page-fishing-games__conclusion .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__conclusion .page-fishing-games__content-area p {
  color: #f0f0f0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__hero-content {
    padding: 0 15px;
  }
  .page-fishing-games__content-area {
    flex-direction: column;
    gap: 30px;
  }
  .page-fishing-games__content-area--reverse {
    flex-direction: column;
  }
  .page-fishing-games__image--left,
  .page-fishing-games__image--right {
    margin: 0;
    max-width: 100%;
  }
  .page-fishing-games__image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }
  .page-fishing-games__content-area,
  .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__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-fishing-games__cta-buttons--center .page-fishing-games__btn-primary,
  .page-fishing-games__cta-buttons--center .page-fishing-games__btn-secondary {
    margin: 0;
  }
}

/* Ensure images don't display smaller than 200px in content area */
.page-fishing-games img:not(.page-fishing-games__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no CSS filters are applied to images */
.page-fishing-games img {
  filter: none !important;
}