/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-primary: #11A84E;
  --page-fishing-games-secondary: #22C768;
  --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-background: #08160F;
  --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 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-text-main); /* Default text color for dark background */
  background-color: var(--page-fishing-games-background); /* Default background */
}

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

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

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

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--page-fishing-games-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
  background: var(--page-fishing-games-gold);
  color: var(--page-fishing-games-background);
  transform: translateY(-3px);
}

.page-fishing-games__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit from section for light/dark bg */
  line-height: 1.3;
}

.page-fishing-games__introduction-section .page-fishing-games__section-title,
.page-fishing-games__how-to-play-section .page-fishing-games__section-title,
.page-fishing-games__strategies-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #333333;
}

.page-fishing-games__featured-games-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__why-choose-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: justify;
  color: inherit;
}

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

.page-fishing-games__image-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games__image-content {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 100%; /* Ensure img takes full width of its flex item */
  height: auto;
  display: block;
}

.page-fishing-games__text-content {
  flex: 1.5;
  min-width: 300px;
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: inherit;
}

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

.page-fishing-games__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: inherit;
}

.page-fishing-games__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-fishing-games-primary);
  font-weight: 700;
}

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

.page-fishing-games__game-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--page-fishing-games-gold);
  padding: 0 15px;
}

.page-fishing-games__game-description {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games__btn-play {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__btn-play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-fishing-games__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #333333;
}

.page-fishing-games__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--page-fishing-games-primary);
}

.page-fishing-games__step-description {
  font-size: 1rem;
  color: #555555;
}

.page-fishing-games__tips-block {
  margin-top: 60px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-fishing-games__tips-block .page-fishing-games__sub-title {
  color: var(--page-fishing-games-primary);
  text-align: center;
}

.page-fishing-games__tips-block .page-fishing-games__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-fishing-games__tips-block .page-fishing-games__list-item {
  padding-left: 0;
  font-size: 1rem;
  color: #555555;
}

.page-fishing-games__tips-block .page-fishing-games__list-item::before {
  content: none;
}

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

.page-fishing-games__promo-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__promo-thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--page-fishing-games-gold);
  padding: 0 15px;
}

.page-fishing-games__promo-description {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games__btn-view-promo {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__btn-view-promo:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games__promo-disclaimer {
  margin-top: 40px;
  text-align: center;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__promo-disclaimer a {
  color: var(--page-fishing-games-gold);
  text-decoration: underline;
}

.page-fishing-games__promo-disclaimer a:hover {
  color: var(--page-fishing-games-primary);
}

.page-fishing-games__small-text {
  font-size: 0.9rem;
}

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

.page-fishing-games__strategy-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__strategy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--page-fishing-games-primary);
}

.page-fishing-games__strategy-description {
  font-size: 1rem;
  color: #555555;
  flex-grow: 1;
}

.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: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  color: var(--page-fishing-games-text-main);
  display: flex;
  flex-direction: column;
}

.page-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

.page-fishing-games__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--page-fishing-games-gold);
}

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

.page-fishing-games__cta-buttons--bottom {
  margin-top: 60px;
}

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

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-fishing-games-primary);
  cursor: pointer;
  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);
}

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

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

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }

  .page-fishing-games__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__text-content {
    padding-top: 20px;
  }
}

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

  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__content-container,
  .page-fishing-games__introduction-section,
  .page-fishing-games__featured-games-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games img,
  .page-fishing-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-fishing-games__sub-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__list-item,
  .page-fishing-games__text-block,
  .page-fishing-games__game-description,
  .page-fishing-games__step-description,
  .page-fishing-games__promo-description,
  .page-fishing-games__strategy-description,
  .page-fishing-games__feature-description,
  .page-fishing-games__faq-answer p {
    font-size: 1rem;
  }

  .page-fishing-games__game-thumbnail,
  .page-fishing-games__promo-thumbnail {
    height: 180px;
  }

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

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