.page-fishing-games {
  background-color: #100224; /* Base background from WOW88 style, slightly adjusted for green theme */
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content below shared header */
}

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

.page-fishing-games__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 50px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Responsive font size */
}

.page-fishing-games__description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-fishing-games__cta-button {
  display: inline-block;
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  background-color: #9c0606;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #017439, #3cb371);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__games-showcase-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section {
  padding: 60px 0;
}

.page-fishing-games__grid-two-columns {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

.page-fishing-games__grid-two-columns .page-fishing-games__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block; /* Ensure it doesn't leave extra space below */
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__about-section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-fishing-games__feature-card {
  background-color: #017439; /* Primary color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__feature-card p {
  color: #f0f0f0;
  font-size: 1em;
}

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

.page-fishing-games__game-card {
  background-color: #1a0833; /* Darker background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__game-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin: 20px 15px 10px 15px;
}

.page-fishing-games__game-description {
  color: #f0f0f0;
  font-size: 0.95em;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-fishing-games__game-button {
  display: inline-block;
  background-color: #017439; /* Primary color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__game-button:hover {
  background-color: #005a2d;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__tips-list li {
  background-color: #1a0833;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
  position: relative;
  padding-left: 40px;
}

.page-fishing-games__tips-list li::before {
  content: '✓';
  color: #FFFF00; /* Yellow for checkmark */
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-fishing-games__tips-list li strong {
  color: #FFFFFF;
}

.page-fishing-games__cta-banner {
  background: linear-gradient(90deg, #017439, #005a2d);
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-fishing-games__cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-fishing-games__cta-buttons .page-fishing-games__cta-button {
  margin: 0 15px;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
}

.page-fishing-games__cta-buttons .page-fishing-games__cta-button:hover {
  background-color: #9c0606;
}

.page-fishing-games__faq-list {
  background-color: #1a0833;
  border-radius: 10px;
  padding: 30px;
}

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.page-fishing-games__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  font-size: 1.05em;
  color: #f0f0f0;
  padding-top: 15px;
  display: none; /* Hidden by default */
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__grid-two-columns {
    flex-direction: column;
  }
  .page-fishing-games__cta-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-fishing-games__description {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-fishing-games__game-image {
    height: 180px;
  }
  .page-fishing-games__cta-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-buttons .page-fishing-games__cta-button {
    margin: 0;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow */
  .page-fishing-games__image,
  .page-fishing-games__game-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__game-image {
    height: 200px;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
  }
}