/* General Styles for .page-fishing-games */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  line-height: 1.6;
}

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

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

.page-fishing-games__dark-section {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-fishing-games__section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  color: #FFCC66; /* Glow */
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-fishing-games__section-title--white {
  color: #FFF5E1;
}

.page-fishing-games__article-body {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.page-fishing-games__article-body p {
  margin-bottom: 20px;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-promo {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold Gradient */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #F2B544; /* Border Gold */
  border: 2px solid #F2B544;
}

.page-fishing-games__btn-secondary:hover {
  background: #F2B544;
  color: #7A0E0E;
}

.page-fishing-games__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  background-color: #B71C1C;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-fishing-games__hero-text-area {
  text-align: center;
  max-width: 900px;
}

.page-fishing-games__hero-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  color: #FFF5E1;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #FFD86A; /* Lighter gold for description */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Why Choose Section */
.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-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFF5E1;
}

.page-fishing-games__feature-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

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

.page-fishing-games__feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF5E1;
}

/* Popular Games Section */
.page-fishing-games__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__product-card {
  background-color: #D32F2F;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px;
}

.page-fishing-games__product-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD86A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-fishing-games__product-title a {
  color: inherit;
  text-decoration: none;
}

.page-fishing-games__product-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__product-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-play {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.3);
  padding: 12px 25px;
  font-size: 16px;
  margin-top: auto; /* Push to bottom */
}

.page-fishing-games__btn-play:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 15px rgba(255, 216, 106, 0.5);
}

/* How to Play Section */
.page-fishing-games__how-to-play-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__how-to-play-list li {
  background-color: #D32F2F;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
}

.page-fishing-games__how-to-play-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD86A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-fishing-games__how-to-play-list p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF5E1;
}

.page-fishing-games__how-to-play-list p a {
  color: #F2B544;
  text-decoration: underline;
}

.page-fishing-games__how-to-play-list p a:hover {
  color: #FFD86A;
}

/* Tips Section */
.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__tips-list li {
  background-color: #D32F2F;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
}

.page-fishing-games__tips-list-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD86A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-fishing-games__tips-list p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF5E1;
}

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

.page-fishing-games__promo-card {
  background-color: #D32F2F;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-fishing-games__promo-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-promo {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.3);
  padding: 12px 25px;
  font-size: 16px;
  margin-top: auto;
}

.page-fishing-games__btn-promo:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 15px rgba(255, 216, 106, 0.5);
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #F2B544; /* Border Gold */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 700;
  color: #FFD86A;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background-color: #E53935; /* Brighter Red */
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2B544;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #B71C1C; /* Background */
  border-radius: 0 0 12px 12px;
  color: #FFF5E1;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.page-fishing-games__faq-answer p a {
  color: #F2B544;
  text-decoration: underline;
}

.page-fishing-games__faq-answer p a:hover {
  color: #FFD86A;
}

/* Final CTA Section */
.page-fishing-games__final-cta-content {
  max-width: 900px;
}

.page-fishing-games__final-cta-content p {
  font-size: 18px;
  color: #FFD86A;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-fishing-games__final-cta-content p a {
  color: #F2B544;
  text-decoration: underline;
}

.page-fishing-games__final-cta-content p a:hover {
  color: #FFD86A;
}

.page-fishing-games__final-cta-buttons {
  margin-top: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 15px;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(22px, 4vw, 36px);
  }
  .page-fishing-games__article-body {
    font-size: 17px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games__btn-promo {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__product-title,
  .page-fishing-games__how-to-play-step-title,
  .page-fishing-games__tips-list-title,
  .page-fishing-games__promo-title {
    font-size: 20px;
  }
  .page-fishing-games__feature-card p,
  .page-fishing-games__product-card p,
  .page-fishing-games__how-to-play-list p,
  .page-fishing-games__tips-list p,
  .page-fishing-games__promo-card p {
    font-size: 15px;
  }
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question,
  .page-fishing-games__faq-qtext {
    font-size: 17px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* Universal Image and Container Adaptations */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Ensure images are not cropped */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__hero-content-wrapper,
  .page-fishing-games__hero-image,
  .page-fishing-games__hero-text-area,
  .page-fishing-games__features-grid,
  .page-fishing-games__feature-card,
  .page-fishing-games__products-grid,
  .page-fishing-games__product-card,
  .page-fishing-games__how-to-play-list,
  .page-fishing-games__how-to-play-list li,
  .page-fishing-games__tips-list,
  .page-fishing-games__tips-list li,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-list,
  details.page-fishing-games__faq-item,
  .page-fishing-games__final-cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  /* HERO Section Specifics */
  .page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
  }

  .page-fishing-games__hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 8vw, 40px); /* Adjust clamp for smaller screens */
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* Button & Button Container Adaptations */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games__btn-promo,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 16px;
  }

  .page-fishing-games__cta-buttons,
  .page-fishing-games__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* Product Grid Adaptations (2 columns) */
  .page-fishing-games__products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Feature Grid Adaptations (1 column) */
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-card,
  .page-fishing-games__how-to-play-list li,
  .page-fishing-games__tips-list li,
  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__product-title,
  .page-fishing-games__how-to-play-step-title,
  .page-fishing-games__tips-list-title,
  .page-fishing-games__promo-title {
    font-size: 18px;
  }

  .page-fishing-games__feature-card p,
  .page-fishing-games__product-card p,
  .page-fishing-games__how-to-play-list p,
  .page-fishing-games__tips-list p,
  .page-fishing-games__promo-card p {
    font-size: 14px;
  }

  /* Article Body */
  .page-fishing-games__article-body {
    font-size: 16px;
    text-align: left;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  /* FAQ Section */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
    font-size: 16px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(20px, 6vw, 32px);
    margin-bottom: 25px;
  }

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