.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

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

.page-fishing-games__main-title,
.page-fishing-games__section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-fishing-games__subtitle,
.page-fishing-games__text-block {
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  overflow: hidden;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-section .page-fishing-games__container {
  position: relative;
  z-index: 1;
}

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

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

.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;
  transition: all 0.3s ease;
  font-size: 1.1em;
  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;
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-fishing-games__intro-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategies-section,
.page-fishing-games__faq-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 20px;
}

.page-fishing-games__intro-section .page-fishing-games__section-title,
.page-fishing-games__how-to-play-section .page-fishing-games__section-title,
.page-fishing-games__strategies-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__intro-section .page-fishing-games__text-block,
.page-fishing-games__how-to-play-section .page-fishing-games__text-block,
.page-fishing-games__strategies-section .page-fishing-games__text-block,
.page-fishing-games__faq-section .page-fishing-games__text-block {
  color: #333333;
}

.page-fishing-games__features-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-bottom-section {
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff;
  padding: 60px 20px;
}

.page-fishing-games__features-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__feature-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__strategy-grid,
.page-fishing-games__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card,
.page-fishing-games__step-item,
.page-fishing-games__strategy-item,
.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on brand color bg */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__promo-card {
  background-color: #ffffff; /* White background for promo cards on brand color bg */
  color: #333333;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: #26A9E0;
}

.page-fishing-games__promo-card p {
  color: #333333;
}

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

.page-fishing-games__feature-icon,
.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fishing-games__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games__step-item {
  background-color: #f8f8f8; /* Light background for steps */
  color: #333333;
}

.page-fishing-games__step-item .page-fishing-games__step-title {
  color: #26A9E0;
}

.page-fishing-games__strategy-item {
  background-color: #f0f0f0; /* Light background for strategies */
  color: #333333;
  text-align: left;
}

.page-fishing-games__strategy-item .page-fishing-games__strategy-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__video-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Darker background for video */
  color: #ffffff;
  text-align: center;
}

.page-fishing-games__video-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px; /* Max width for video */
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-fishing-games__video-description {
  margin-top: 20px;
  font-style: italic;
  color: #e0e0e0;
}

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

.page-fishing-games__faq-item {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #e0e0e0;
  color: #333333;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-fishing-games__cta-bottom-section {
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games__cta-bottom-content {
  max-width: 900px;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.2em;
  }

  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__hero-section {
    min-height: 500px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header */
  }

  .page-fishing-games__main-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-fishing-games__subtitle {
    font-size: 1em;
  }

  .page-fishing-games__section-title {
    font-size: 1.7em;
    margin-bottom: 25px;
  }

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

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

  .page-fishing-games__intro-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__features-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__video-section,
  .page-fishing-games__cta-bottom-section {
    padding: 40px 15px;
  }

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

  .page-fishing-games__feature-card,
  .page-fishing-games__step-item,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__feature-icon,
  .page-fishing-games__promo-image {
    max-height: 150px;
  }

  /* Mobile video responsiveness */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 0px; /* Adjust as needed for inner spacing */
    overflow: hidden !important;
  }

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

  .page-fishing-games__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 10px 20px;
  }
}