/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-background: #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-background);
  color: var(--page-fishing-games-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Contrast Fixes */
.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: #ffffff;
  color: #333333;
}

.page-fishing-games__card {
  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: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--page-fishing-games-gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--page-fishing-games-gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-fishing-games__section-intro {
  font-size: 18px;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__text-highlight {
  color: var(--page-fishing-games-gold);
  font-weight: bold;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

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

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

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

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

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 10px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px 0;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly, but not over image */
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 30px;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

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

.page-fishing-games__feature-card {
  text-align: center;
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-fishing-games__feature-card .page-fishing-games__card-title {
  color: var(--page-fishing-games-gold);
  font-size: 24px;
  margin-bottom: 15px;
}

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

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
  text-align: center;
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
  overflow: hidden;
}

.page-fishing-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--page-fishing-games-border);
  filter: none; /* Ensure no CSS filter is applied */
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  color: var(--page-fishing-games-gold);
  font-size: 22px;
  margin: 15px 0 10px;
}

.page-fishing-games__game-card p {
  color: var(--page-fishing-games-text-secondary);
  padding: 0 15px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__guide-item {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
  text-align: left;
}

.page-fishing-games__guide-item .page-fishing-games__card-title {
  color: var(--page-fishing-games-gold);
  font-size: 22px;
  margin-bottom: 10px;
}

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

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

.page-fishing-games__guide-item a:hover {
  color: var(--page-fishing-games-glow);
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__strategy-card {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
  text-align: left;
}

.page-fishing-games__strategy-card .page-fishing-games__card-title {
  color: var(--page-fishing-games-gold);
  font-size: 22px;
  margin-bottom: 10px;
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__promotions-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 1000px;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-fishing-games__promo-list li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 15px;
  padding: 0;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--page-fishing-games-gold);
  cursor: pointer;
  background-color: var(--page-fishing-games-deep-green);
  border-bottom: 1px solid var(--page-fishing-games-divider);
  list-style: none; /* For details/summary */
}

.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-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__faq-answer p {
  margin-top: 15px;
}

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

.page-fishing-games__faq-answer a:hover {
  color: var(--page-fishing-games-glow);
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff;
  color: #333333;
}

/* General Image Styling */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Ensure no CSS filter is applied */
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding-top: 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

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

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__games-showcase-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-final-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

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

  .page-fishing-games__game-thumbnail {
    height: auto;
  }

  .page-fishing-games__feature-icon {
    max-width: 150px;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(24px, 9vw, 32px);
  }

  .page-fishing-games__section-title {
    font-size: clamp(20px, 8vw, 28px);
  }

  .page-fishing-games__hero-description,
  .page-fishing-games__section-intro {
    font-size: 15px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__guide-list,
  .page-fishing-games__strategy-grid {
    gap: 20px;
  }
}