.page-fishing-games {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

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

.page-fishing-games__dark-bg {
  background-color: #0a0a0a; /* Ensure dark background */
  color: #ffffff;
}

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

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

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 1;
  max-width: 800px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  text-align: center;
}

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

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

.page-fishing-games__btn-secondary {
  background-color: #EA7C07; /* Login color for secondary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

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

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.page-fishing-games__section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

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

.page-fishing-games__introduction-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__text-block p {
  margin-bottom: 20px;
  color: #333333;
}

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

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

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

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

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

.page-fishing-games__feature-icon {
  width: 100%; /* Ensure large image, not icon */
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

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

/* Games List Section */
.page-fishing-games__games-list-section {
  padding: 80px 0;
}

.page-fishing-games__games-list-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__game-card {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.page-fishing-games__game-card h3 a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games__game-card h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games__game-card p {
  padding: 0 20px 15px;
  color: #555555;
}

.page-fishing-games__game-card .page-fishing-games__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* How-to-play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-fishing-games__step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #EA7C07;
}

.page-fishing-games__step-card p {
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games__btn-tertiary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 0.95rem;
}

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

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

.page-fishing-games__tips-section .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__tips-content {
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-fishing-games__tips-content p {
  margin-bottom: 20px;
}

.page-fishing-games__tips-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-fishing-games__tips-list li {
  margin-bottom: 10px;
}

.page-fishing-games__tips-list strong {
  color: #26A9E0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-fishing-games__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-card h3 {
  padding: 15px 20px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.page-fishing-games__promo-card h3 a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games__promo-card h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games__promo-card p {
  padding: 0 20px 15px;
  color: #f0f0f0;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-fishing-games__view-all-promos {
  text-align: center;
}

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

.page-fishing-games__safety-section .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__safety-content {
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-fishing-games__safety-content p {
  margin-bottom: 20px;
}

.page-fishing-games__safety-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__safety-list li {
  background: #f5f5f5;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__safety-list li::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-fishing-games__safety-list strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-fishing-games__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item details > summary {
  list-style: none; /* Hide default marker */
}

.page-fishing-games__faq-item details > summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
}

.page-fishing-games__faq-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-fishing-games__faq-link:hover {
  color: #1e87bb;
}

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

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

.page-fishing-games__cta-final-section .page-fishing-games__section-subtitle {
  color: #333333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
  }
  .page-fishing-games__image-block {
    margin-top: 30px;
  }
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__games-list-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__safety-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding: 40px 0;
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
    font-size: 1rem;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-fishing-games__section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__image-block,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__game-card .page-fishing-games__btn-secondary,
  .page-fishing-games__promo-card .page-fishing-games__btn-secondary {
    width: calc(100% - 40px) !important;
  }
  .page-fishing-games__safety-list li {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.3rem;
  }
}