/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #f0f2f5); /* Inherit from shared, fallback to light gray */
}

.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, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.page-fishing-games__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__text-link:hover {
  text-decoration: underline;
}

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

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

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 30px;
}

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

.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: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games__btn-tertiary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 8px 18px;
  font-size: 14px;
}

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

/* 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 */
  overflow: hidden;
  color: #FFFFFF;
  background-color: #26A9E0; /* Ensure dark background for white text */
}

.page-fishing-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-fishing-games__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: #f0f0f0;
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #FFFFFF;
  color: #333333;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__why-choose-section .page-fishing-games__section-title {
  color: #FFFFFF;
}

.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-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
  text-align: center;
}

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

.page-fishing-games__game-card {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

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

.page-fishing-games__game-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-title {
  color: #FFFFFF;
}

.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: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

/* Tips and Strategies Section */
.page-fishing-games__tips-strategies-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__list-item {
  background: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__list-item strong {
  color: #26A9E0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

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

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

.page-fishing-games__promo-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-fishing-games__promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-fishing-games__promo-description {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__promo-note {
  margin-top: 40px;
  font-size: 15px;
  color: #f0f0f0;
}

/* Safe Access Section */
.page-fishing-games__safe-access-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

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

.page-fishing-games__safety-list .page-fishing-games__list-item {
  background: #f9f9f9;
  border-left: 5px solid #EA7C07; /* Using a contrasting color for safety tips */
}

.page-fishing-games__safety-list .page-fishing-games__list-item strong {
  color: #EA7C07;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

.page-fishing-games__faq-list {
  margin-top: 40px;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

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

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

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

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
  text-align: center;
}

.page-fishing-games__copyright-info {
  margin-top: 40px;
  font-size: 14px;
  color: #777777;
}

/* Global image and video responsive styles */
.page-fishing-games img,
.page-fishing-games video {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__hero-image-wrapper,
.page-fishing-games__video-container,
.page-fishing-games__game-card,
.page-fishing-games__feature-card,
.page-fishing-games__promo-card,
.page-fishing-games__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

  .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__main-title {
    font-size: 32px;
  }

  .page-fishing-games__hero-description {
    font-size: 17px;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
  }

  .page-fishing-games img,
  .page-fishing-games video {
    max-width: 100% !important;
    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__video-container,
  .page-fishing-games__game-card,
  .page-fishing-games__feature-card,
  .page-fishing-games__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__safe-access-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 15px; /* Adjust section padding for mobile */
  }
  
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }

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

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

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

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

  .page-fishing-games__list-item {
    padding: 15px;
  }
}