.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default light text for dark body background */
  background-color: var(--background-color, #08160F); /* Dark background */
}

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

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-color, #F2C14E);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-fishing-games__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

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

/* Buttons */
.page-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-fishing-games__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color, #F2FFF6);
  border: none;
}

.page-fishing-games__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn--secondary {
  background: transparent;
  color: var(--gold-color, #F2C14E);
  border: 2px solid var(--gold-color, #F2C14E);
}

.page-fishing-games__btn--secondary:hover {
  background: var(--gold-color, #F2C14E);
  color: var(--background-color, #08160F);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__btn--play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color, #F2FFF6);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__btn--play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

.page-fishing-games__btn--large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Card Styles */
.page-fishing-games__card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color, #F2FFF6);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__card-title {
  font-size: 22px;
  color: var(--gold-color, #F2C14E);
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-fishing-games__card-description {
  font-size: 16px;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Feature Grid */
.page-fishing-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

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

.page-fishing-games__game-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* How-to-play Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-fishing-games__step-card {
  text-align: center;
  padding: 25px;
}

.page-fishing-games__step-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  line-height: 1;
}

.page-fishing-games__how-to-play-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-fishing-games__how-to-play-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Promotions Section */
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-fishing-games__promo-item {
  font-size: 17px;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-fishing-games__promo-item::before {
  content: '⚡'; /* Unicode lightning bolt for bullet point */
  position: absolute;
  left: 0;
  color: var(--glow-color, #57E38D);
  font-size: 20px;
  line-height: 1;
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  padding: 0;
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
  list-style: none; /* Remove default marker for details */
}

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Slight hover effect */
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 20px 30px 30px 30px;
  font-size: 16px;
  color: var(--text-secondary-color, #A7D9B8);
  background-color: var(--background-color, #08160F);
}

/* CTA Section */
.page-fishing-games__cta-box {
  text-align: center;
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 50px 30px;
  margin-top: 60px;
}

.page-fishing-games__cta-title {
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
}

.page-fishing-games__cta-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    height: 500px;
  }
  .page-fishing-games__hero-content {
    max-width: 700px;
  }
  .page-fishing-games__section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__container,
  .page-fishing-games__hero-content,
  .page-fishing-games__cta-box {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-image-wrapper {
    height: 400px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(15px, 2.8vw, 18px);
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-fishing-games__btn--large {
    padding: 15px 30px !important;
    font-size: 18px !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }

  .page-fishing-games__feature-grid, .page-fishing-games__game-grid, .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__card-description {
    font-size: 15px;
  }

  .page-fishing-games__game-image {
    height: 180px;
  }

  .page-fishing-games__step-number {
    font-size: 40px;
  }
  .page-fishing-games__how-to-play-image-wrapper {
    margin-top: 30px;
  }
  .page-fishing-games__how-to-play-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__promo-item {
    font-size: 16px;
    padding-left: 25px;
  }
  .page-fishing-games__promo-item::before {
    font-size: 18px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px 20px 20px 20px;
    font-size: 15px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 20px;
  }

  .page-fishing-games__cta-box {
    padding: 40px 20px;
  }
  .page-fishing-games__cta-description {
    font-size: 16px;
  }

  /* Image responsiveness for all images within the page-fishing-games scope */
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-card,
  .page-fishing-games__how-to-play-image-wrapper,
  .page-fishing-games__cta-box,
  .page-fishing-games__hero-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-image-wrapper {
    height: 300px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(14px, 3.5vw, 16px);
  }
  .page-fishing-games__hero-content {
    padding: 10px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(22px, 6vw, 30px);
  }
}