.page-fishing-games {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-fishing-games__main-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFA53A;
  letter-spacing: 0.5px;
}

.page-fishing-games__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
  min-width: 200px; /* Ensure button is large enough */
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* Section Titles */
.page-fishing-games__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFA53A;
  border-radius: 2px;
}

/* Features Section */
.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-fishing-games__feature-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  transition: transform 0.2s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #FFB04D;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: #FFF3E6;
}

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

.page-fishing-games__game-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  transition: transform 0.2s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-fishing-games__game-info {
  padding: 20px;
  text-align: center;
}

.page-fishing-games__game-title {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  color: #FFB04D;
  margin-bottom: 10px;
}

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

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(255, 165, 58, 0.3);
  min-width: 120px; /* Ensure button is large enough */
}

.page-fishing-games__game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.5);
}

/* How to Play Section */
.page-fishing-games__how-to-play-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 600px;
}

.page-fishing-games__step-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #FF8C1A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: clamp(1.1rem, 2.8vw, 1.3rem);
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

.page-fishing-games__how-to-play-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

/* CTA Section (bottom) */
.page-fishing-games__cta-section {
  text-align: center;
  padding: 50px 0;
  background-color: #17191F;
  border-top: 1px solid #A84F0C;
}

.page-fishing-games__cta-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__cta-button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__cta-button--secondary {
  background: #A84F0C;
  box-shadow: 0 4px 15px rgba(168, 79, 12, 0.4);
}

.page-fishing-games__cta-button--secondary:hover {
  background: #D96800;
  box-shadow: 0 6px 20px rgba(217, 104, 0, 0.6);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #FFB04D;
  cursor: pointer;
  position: relative;
  background-color: #17191F;
  font-weight: bold;
  text-align: left;
}

.page-fishing-games__faq-question::marker, .page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: #FFF3E6;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-fishing-games__hero-section {
    flex-direction: row;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .page-fishing-games__hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
    max-width: 60%;
  }

  .page-fishing-games__hero-content {
    flex: 1;
    max-width: 40%;
    padding: 0;
  }

  .page-fishing-games__how-to-play-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .page-fishing-games__steps-list {
    margin-right: 40px;
    max-width: 50%;
  }

  .page-fishing-games__how-to-play-image {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-image {
    aspect-ratio: 16 / 9; /* Maintain aspect ratio for smaller screens */
  }
  .page-fishing-games__hero-section {
    padding-top: 20px;
  }
  .page-fishing-games__hero-content {
    padding: 0 10px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  .page-fishing-games__subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__game-card {
    padding: 20px;
  }
  .page-fishing-games__game-image {
    max-width: 100%;
    height: auto;
  }
  .page-fishing-games__how-to-play-content {
    flex-direction: column;
  }
  .page-fishing-games__steps-list {
    margin-right: 0;
    max-width: 100%;
  }
  .page-fishing-games__how-to-play-image {
    max-width: 100%;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 549px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }
  .page-fishing-games__container {
    padding: 15px 10px;
  }
  .page-fishing-games__hero-section {
    padding-bottom: 30px;
  }
  .page-fishing-games__cta-button {
    min-width: unset; /* Allow buttons to shrink */
  }
  .page-fishing-games__game-button {
    min-width: unset; /* Allow buttons to shrink */
  }
}

/* Ensure content images are never smaller than 200px display size */
.page-fishing-games img:not(.page-fishing-games__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for mobile to ensure responsiveness without shrinking below 200px if possible */
@media (max-width: 768px) {
  .page-fishing-games img:not(.page-fishing-games__hero-image) {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum visual size */
    min-height: 200px; /* Still enforce minimum visual size */
  }
}