.page-fishing-games {
  color: #ffffff; /* Body background is #0a0a0a (dark), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content background is transparent to show body background */
}

.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, 3.5vw, 48px);
  font-weight: bold;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-fishing-games__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark for contrast */
  color: #ffffff;
}

.page-fishing-games .highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); /* Dark gradient background */
}

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

.page-fishing-games__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Introduction Section */
.page-fishing-games__introduction-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-bottom-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background for sections */
}

.page-fishing-games__introduction-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title,
.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
  color: #FFFFFF; /* White for titles on dark background */
}

.page-fishing-games__introduction-section .page-fishing-games__section-description,
.page-fishing-games__promotions-section .page-fishing-games__section-description,
.page-fishing-games__faq-section .page-fishing-games__section-description,
.page-fishing-games__cta-bottom-section .page-fishing-games__section-description {
  color: #f0f0f0;
}

.page-fishing-games__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__text-block,
.page-fishing-games__image-block {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__image-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-block p {
  font-size: 17px;
  color: #f0f0f0;
  line-height: 1.8;
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
}

.page-fishing-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

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

.page-fishing-games__feature-item p {
  font-size: 16px;
  color: #cccccc;
}

/* Top Games Section */
.page-fishing-games__top-games-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-fishing-games__top-games-section .page-fishing-games__section-title {
  color: #FFFFFF;
}

.page-fishing-games__top-games-section .page-fishing-games__section-description {
  color: #f0f0f0;
}

.page-fishing-games__top-games-section .page-fishing-games__section-description a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games__top-games-section .page-fishing-games__section-description a:hover {
  text-decoration: underline;
}

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

.page-fishing-games__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__card-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__card-btn {
  width: 100%;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.page-fishing-games__guide-item .page-fishing-games__btn-secondary {
  margin-top: 20px;
  width: auto;
  min-width: 150px;
}

.page-fishing-games__guide-step-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games__guide-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-fishing-games__guide-cta {
  margin-top: 50px;
  width: auto;
  padding: 18px 40px;
  font-size: 20px;
}

/* Promotions Section */
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__promo-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

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

.page-fishing-games__promo-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-fishing-games__promo-cta {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Safety & Support Section */
.page-fishing-games__safety-support-section {
  padding: 80px 0;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #26A9E0;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-fishing-games__faq-question:hover {
  background-color: #1e87b7;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

.page-fishing-games__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Details element specific styling to remove default arrow */
.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-item summary {
  list-style: none;
}

/* Bottom CTA Section */
.page-fishing-games__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__btn-primary {
  margin-top: 40px;
  padding: 18px 40px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 30px;
  }
}

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

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

  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

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

  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__top-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__safety-support-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom-section {
    padding: 50px 0;
  }

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

  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .page-fishing-games__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__image-block {
    min-width: unset;
    width: 100%;
    padding: 0 15px;
  }

  .page-fishing-games__text-block p {
    font-size: 15px;
  }

  .page-fishing-games__feature-list,
  .page-fishing-games__game-cards,
  .page-fishing-games__guide-list,
  .page-fishing-games__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__card,
  .page-fishing-games__guide-item,
  .page-fishing-games__promo-item {
    padding: 25px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__card-title,
  .page-fishing-games__guide-step-title,
  .page-fishing-games__promo-title {
    font-size: 20px;
  }

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

  .page-fishing-games__guide-cta,
  .page-fishing-games__promo-cta,
  .page-fishing-games__support-cta,
  .page-fishing-games__cta-bottom-section .page-fishing-games__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 25px;
    font-size: 18px;
  }
  
  .page-fishing-games__guide-cta, .page-fishing-games__promo-cta, .page-fishing-games__support-cta {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .page-fishing-games__faq-list {
    padding: 0 15px;
  }

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

  .page-fishing-games__faq-toggle {
    font-size: 20px;
  }

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

  /* Mobile image responsiveness */
  .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__hero-image-wrapper,
  .page-fishing-games__image-block,
  .page-fishing-games__video-section, /* Not used here, but for completeness */
  .page-fishing-games__video-container, /* Not used here, but for completeness */
  .page-fishing-games__video-wrapper /* Not used here, but for completeness */ {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific padding for sections in mobile */
  .page-fishing-games__introduction-section .page-fishing-games__container,
  .page-fishing-games__features-section .page-fishing-games__container,
  .page-fishing-games__top-games-section .page-fishing-games__container,
  .page-fishing-games__guide-section .page-fishing-games__container,
  .page-fishing-games__promotions-section .page-fishing-games__container,
  .page-fishing-games__safety-support-section .page-fishing-games__container,
  .page-fishing-games__faq-section .page-fishing-games__container,
  .page-fishing-games__cta-bottom-section .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding-top: 10px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(24px, 10vw, 36px);
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 15px;
    padding: 10px 15px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__card-title,
  .page-fishing-games__guide-step-title,
  .page-fishing-games__promo-title {
    font-size: 18px;
  }
  .page-fishing-games__faq-question {
    font-size: 15px;
  }
  .page-fishing-games__faq-answer {
    font-size: 14px;
  }
}