.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #0A2463; /* Main brand color for hero background */
  overflow: hidden;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-fishing-games__hero-title {
  font-size: 3.5rem;
  color: #FFD700; /* Auxiliary brand color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.page-fishing-games__hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

.page-fishing-games__hero-video-wrapper:hover {
  transform: translateY(-10px);
}

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

.page-fishing-games__section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #FFD700; /* Auxiliary brand color for section titles */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Light text for dark sections */
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-fishing-games__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

/* About Section */
.page-fishing-games__about-section .page-fishing-games__section-title,
.page-fishing-games__about-section .page-fishing-games__section-intro {
  color: #0A2463;
}

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

.page-fishing-games__feature-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-fishing-games__feature-text {
  font-size: 1rem;
  color: #555555;
}

/* Games Showcase */
.page-fishing-games__games-showcase .page-fishing-games__section-title,
.page-fishing-games__games-showcase .page-fishing-games__section-intro {
  color: #FFD700;
}

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

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

.page-fishing-games__game-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__game-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 1rem;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__guide-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__guide-title {
  font-size: 2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__guide-list li {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
}

.page-fishing-games__guide-list li strong {
  color: #FFD700;
}

/* Promotions Section */
.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-intro {
  color: #0A2463;
}

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

.page-fishing-games__promo-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__promo-title {
  font-size: 1.6rem;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-fishing-games__promo-description {
  font-size: 1rem;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

/* Tips Section */
.page-fishing-games__tips-section .page-fishing-games__section-title,
.page-fishing-games__tips-section .page-fishing-games__section-intro {
  color: #FFD700;
}

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

.page-fishing-games__tip-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.page-fishing-games__tip-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__tip-text {
  font-size: 1rem;
  color: #ffffff;
}

/* Responsible Gaming Section */
.page-fishing-games__responsible-gaming-section .page-fishing-games__section-title,
.page-fishing-games__responsible-gaming-section .page-fishing-games__section-intro {
  color: #0A2463;
}

.page-fishing-games__responsible-text {
  font-size: 1rem;
  color: #555555;
  max-width: 800px;
  margin: 20px auto 40px auto;
  text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  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 25px;
  cursor: pointer;
  background: #0A2463;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

.page-fishing-games__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.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-out, padding 0.3s ease-out;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

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

.page-fishing-games__faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-fishing-games__cta-section .page-fishing-games__section-title,
.page-fishing-games__cta-section .page-fishing-games__section-intro {
  color: #0A2463;
}

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

.page-fishing-games__center-content {
  text-align: center;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-fishing-games__btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games__btn-secondary {
  background-color: #0A2463;
  color: #FFD700;
  border-color: #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #1a3a73;
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 36, 99, 0.4);
}

.page-fishing-games__btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  padding: 10px 20px;
  font-size: 1rem;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

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

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

  .page-fishing-games__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games__hero-title {
    font-size: 2.2rem;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons-final {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__section-intro {
    font-size: 0.95rem;
  }

  .page-fishing-games__content-area,
  .page-fishing-games__hero-video-wrapper,
  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promo-cards-grid,
  .page-fishing-games__tips-grid,
  .page-fishing-games__faq-list,
  .page-fishing-games__guide-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games video,
  .page-fishing-games__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__tip-item,
  .page-fishing-games__faq-item {
    padding: 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__tip-title,
  .page-fishing-games__faq-question h3 {
    font-size: 1.3rem;
  }

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

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

/* Ensure content area images are not too small */
.page-fishing-games__features-grid .page-fishing-games__feature-image,
.page-fishing-games__game-cards-grid .page-fishing-games__game-image,
.page-fishing-games__promo-cards-grid .page-fishing-games__promo-image {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}