.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Main text color */
  background-color: #08160F; /* Overall background color */
}

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

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6; /* Main text color */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh; /* Ensure hero section has a decent height */
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0A4B2C; /* Deep Green fallback */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7; /* Slightly dim the image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 60px);
  color: #F2FFF6; /* Main text color */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2.2vw, 22px);
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Main text color */
  border: 2px solid #57E38D;
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #57E38D;
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6; /* Main text color */
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
  transform: translateY(-2px);
}

.page-fishing-games__btn-play {
  background: linear-gradient(180deg, #F2C14E 0%, #E0A800 100%); /* Gold color */
  color: #11271B; /* Card BG color for contrast */
  border: 2px solid #F2C14E;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  margin-top: 20px;
}

.page-fishing-games__btn-play:hover {
  background: linear-gradient(180deg, #E0A800 0%, #F2C14E 100%);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-fishing-games__btn-link {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
  margin-top: 15px;
}

.page-fishing-games__btn-link:hover {
  background: #1E3A2A; /* Divider color */
  color: #57E38D;
}

/* Features Section */
.page-fishing-games__features-grid,
.page-fishing-games__games-grid,
.page-fishing-games__promotions-grid,
.page-fishing-games__trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__game-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__feature-card-image,
.page-fishing-games__game-card-image,
.page-fishing-games__promo-card-image,
.page-fishing-games__strategy-image,
.page-fishing-games__trust-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block; /* Ensures max-width works correctly */
}

.page-fishing-games__feature-card-title,
.page-fishing-games__game-card-title,
.page-fishing-games__promo-card-title {
  font-size: 24px;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__feature-card-description,
.page-fishing-games__game-card-description,
.page-fishing-games__promo-card-description {
  font-size: 16px;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.7;
}

/* How-To-Play Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
}

.page-fishing-games__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__step-title {
  font-size: 22px;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__step-description {
  font-size: 15px;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.6;
}

/* Strategy Section */
.page-fishing-games__strategy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__strategy-item:nth-child(even) {
  flex-direction: column-reverse; /* Alternate layout */
}

.page-fishing-games__strategy-title {
  font-size: 26px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #A7D9B8;
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-fishing-games__strategy-list li::before {
  content: '✔';
  color: #57E38D; /* Glow color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

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

/* Trust Section */
.page-fishing-games__trust-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E;
  color: #F2FFF6;
}

.page-fishing-games__trust-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__trust-description {
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.7;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* Hide default marker for details */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green on hover */
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow color */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.7;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
  border-top: none; /* Remove top border when open to merge with question */
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  background-color: #08160F;
  padding-bottom: 80px;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
  color: #F2FFF6;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-subtitle {
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 38px);
  }

  .page-fishing-games__section-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    min-height: 60vh;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(14px, 2.5vw, 18px);
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games__btn-link {
    padding: 12px 25px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Container responsiveness for images/content */
  .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__promo-card,
  .page-fishing-games__step-card,
  .page-fishing-games__strategy-item,
  .page-fishing-games__trust-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__trust-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__strategy-item {
    flex-direction: column !important; /* Ensure consistent column layout on mobile */
  }
  
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

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

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    padding: 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(13px, 3vw, 16px);
  }

  .page-fishing-games__feature-card-title,
  .page-fishing-games__game-card-title,
  .page-fishing-games__promo-card-title,
  .page-fishing-games__trust-title {
    font-size: 20px;
  }

  .page-fishing-games__step-title {
    font-size: 18px;
  }
}