/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-bg: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border: #2E7A4E;
  --page-fishing-games-glow: #57E38D;
  --page-fishing-games-gold: #F2C14E;
  --page-fishing-games-divider: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
  --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
  background-color: #ffffff; /* Default light background for contrast */
  color: #333333; /* Dark text for contrast */
}

.page-fishing-games__text-contrast-fix {
  color: #333333 !important; /* Ensure dark text on light background */
}

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

.page-fishing-games__section {
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-block {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
}

.page-fishing-games__text-link {
  color: var(--page-fishing-games-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__highlight {
  color: var(--page-fishing-games-glow);
  font-weight: bold;
}

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__card-description {
  font-size: 15px;
  color: var(--page-fishing-games-text-secondary);
}

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

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

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-glow);
  border: 2px solid var(--page-fishing-games-glow);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--page-fishing-games-glow);
  color: var(--page-fishing-games-deep-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2);
}

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

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

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

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--page-fishing-games-gold);
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Intro Section */
.page-fishing-games__intro-section {
  border-bottom: 1px solid var(--page-fishing-games-divider);
}

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

.page-fishing-games__feature-card {
  text-align: center;
  padding: 30px;
}

.page-fishing-games__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

/* How to Play Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__step-card {
  text-align: center;
}

.page-fishing-games__step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid var(--page-fishing-games-glow);
}

.page-fishing-games__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

/* Game Types Section */
.page-fishing-games__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__game-type-card {
  text-align: center;
  padding: 30px;
}

/* Promotions Section */
.page-fishing-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__promotion-card {
  padding: 20px;
  text-align: center;
}

.page-fishing-games__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-fishing-games__security-item {
  text-align: center;
}

.page-fishing-games__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Why Choose Section */
.page-fishing-games__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  font-size: 17px;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__benefits-list li {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__benefits-list li::before {
  content: '✅';
  font-size: 20px;
  flex-shrink: 0;
}

.page-fishing-games__benefits-list li p {
  margin: 0;
  text-align: left;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  padding: 15px 20px;
  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;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  color: var(--page-fishing-games-gold);
  list-style: none; /* For details/summary */
}

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

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

.page-fishing-games__faq-answer {
  padding-top: 10px;
  font-size: 15px;
  color: var(--page-fishing-games-text-secondary);
  line-height: 1.7;
}

/* Call to Action Section */
.page-fishing-games__call-to-action {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 700px;
  }
}

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

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

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

  .page-fishing-games__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

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

  .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: 15px;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games img {
    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__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-fishing-games__hero-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__guide-image,
  .page-fishing-games__promotion-image,
  .page-fishing-games__security-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__benefits-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-fishing-games__benefits-list li::before {
    margin-bottom: 5px;
  }
}