/* style/fishing-games.css */

/* Custom Colors */
:root {
  --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;
}

/* Base styles for the page */
.page-fishing-games {
  color: var(--page-fishing-games-text-main); /* Light text for dark body background */
  background-color: var(--page-fishing-games-background);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-fishing-games-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.page-fishing-games__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  text-align: justify;
}

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

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for better text contrast, no color change */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the bottom part of the image */
  background: linear-gradient(0deg, var(--page-fishing-games-deep-green) 0%, rgba(10, 75, 44, 0.7) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__hero-description {
  color: var(--page-fishing-games-text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  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: var(--page-fishing-games-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  filter: brightness(1.1); /* Slightly brighter on hover */
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-glow);
  border: 2px solid var(--page-fishing-games-glow);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

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

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

/* Introduction Section */
.page-fishing-games__introduction-section {
  padding: 60px 20px;
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 60px 20px;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__feature-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border);
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

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

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

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 60px 20px;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__step-item {
  text-align: center;
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--page-fishing-games-border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--page-fishing-games-button-gradient);
  border-radius: 50%;
  color: var(--page-fishing-games-text-main);
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.5);
}

.page-fishing-games__step-title {
  color: var(--page-fishing-games-gold);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  color: var(--page-fishing-games-text-secondary);
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 60px 20px;
  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;
}

.page-fishing-games__strategy-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border);
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  padding: 60px 20px;
}

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

.page-fishing-games__game-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-title {
  color: var(--page-fishing-games-gold);
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 20px;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__promo-card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border);
}

/* Benefits Section */
.page-fishing-games__benefits-section {
  padding: 60px 20px;
}

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

.page-fishing-games__benefit-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border);
}

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

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--page-fishing-games-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  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-divider);
  list-style: none;
}

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--page-fishing-games-glow);
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--page-fishing-games-text-secondary);
  font-size: 1em;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 60px 20px;
  text-align: center;
}

/* Image styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

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

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-fishing-games__container {
    padding: 30px 15px;
  }

  .page-fishing-games__feature-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__benefit-list,
  .page-fishing-games__game-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__guide-section,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__benefit-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__container,
  .page-fishing-games__introduction-section,
  .page-fishing-games__features-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__benefits-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  
  .page-fishing-games__hero-content {
    margin-top: -30px; /* Adjust for smaller screens */
  }

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

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

  .page-fishing-games__card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }

  .page-fishing-games__section-title {
    font-size: clamp(22px, 6vw, 30px);
  }

  .page-fishing-games__step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }
}