/* style/fishing-games.css */
:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-background-color: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

.page-fishing-games p, .page-fishing-games li {
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--page-fishing-games-text-main);
}

.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;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--page-fishing-games-text-main);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button--primary {
  background: var(--page-fishing-games-button-gradient);
  color: var(--page-fishing-games-text-main);
  border: none;
}

.page-fishing-games__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__cta-button--secondary:hover {
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-main);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

/* --- General Sections --- */
.page-fishing-games__intro-section,
.page-fishing-games__features-section,
.page-fishing-games__game-types-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__benefits-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-banner {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games__intro-title,
.page-fishing-games__features-title,
.page-fishing-games__game-types-title,
.page-fishing-games__how-to-play-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promotions-title,
.page-fishing-games__benefits-title,
.page-fishing-games__faq-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games__intro-text {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

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

.page-fishing-games__feature-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__feature-text {
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
}

/* --- Game Types Grid --- */
.page-fishing-games__game-card-grid,
.page-fishing-games__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card,
.page-fishing-games__promotion-card {
  background-color: var(--page-fishing-games-card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-fishing-games__game-card-image,
.page-fishing-games__promotion-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__game-card-title,
.page-fishing-games__promotion-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__game-card-description,
.page-fishing-games__promotion-card-description {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
}

/* --- How To Play Steps --- */
.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-fishing-games__step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--page-fishing-games-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-fishing-games__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--page-fishing-games-primary-color);
  margin-right: 20px;
  line-height: 1;
}

.page-fishing-games__step-content {
  flex-grow: 1;
}

.page-fishing-games__step-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__step-description {
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 15px;
}

/* --- Strategy List --- */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__strategy-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--page-fishing-games-primary-color);
  font-size: 1.05rem;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__strategy-item strong {
  color: var(--page-fishing-games-text-main);
}

/* --- Benefits List --- */
.page-fishing-games__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-fishing-games__benefit-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--page-fishing-games-secondary-color);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--page-fishing-games-text-main);
}

/* --- FAQ Section --- */
.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  border-top: 1px solid var(--page-fishing-games-border-color);
  margin-top: -1px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: none;
}

.page-fishing-games__faq-item:not([open]) .page-fishing-games__faq-answer {
  display: none;
}

/* --- CTA Banner --- */
.page-fishing-games__cta-banner {
  background-color: var(--page-fishing-games-primary-color);
  padding: 50px 0;
}

.page-fishing-games__cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-fishing-games__cta-banner-text {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--page-fishing-games-text-main);
  font-weight: bold;
  max-width: 800px;
}

.page-fishing-games__cta-banner-button {
  background: var(--page-fishing-games-button-gradient);
  color: var(--page-fishing-games-text-main);
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 10px;
}

.page-fishing-games__cta-banner-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

/* --- Responsive Styles --- */
/* All images basic responsive style */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All video basic responsive style */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Video container basic responsive style */
.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* All buttons basic responsive style */
.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games a[class*="button"],
.page-fishing-games a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button container basic responsive style */
.page-fishing-games__cta-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-fishing-games__feature-list,
  .page-fishing-games__game-card-grid,
  .page-fishing-games__promotion-grid,
  .page-fishing-games__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__intro-title,
  .page-fishing-games__features-title,
  .page-fishing-games__game-types-title,
  .page-fishing-games__how-to-play-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__promotions-title,
  .page-fishing-games__benefits-title,
  .page-fishing-games__faq-title {
    font-size: 2rem;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .page-fishing-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__intro-text {
    font-size: 0.95rem;
  }

  .page-fishing-games__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-fishing-games__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-fishing-games__strategy-item {
    font-size: 0.95rem;
  }

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

  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .page-fishing-games__cta-banner-text {
    font-size: 1.5rem;
  }

  .page-fishing-games__cta-banner-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  /* Mobile responsive for all images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Mobile responsive for all videos */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Mobile responsive for all containers */
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-banner,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content,
  .page-fishing-games__feature-list,
  .page-fishing-games__game-card-grid,
  .page-fishing-games__promotion-grid,
  .page-fishing-games__step-list,
  .page-fishing-games__strategy-list,
  .page-fishing-games__benefit-list,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-banner-inner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Specific mobile padding adjustments */
  .page-fishing-games__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__hero-content {
    padding: 20px 15px;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-banner {
    padding: 40px 0;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }

  /* Ensure buttons wrap if they are in a flex container */
  .page-fishing-games__hero-cta-group {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}