/* style/fishing-games.css */

:root {
  --b29club-primary: #11A84E;
  --b29club-secondary: #22C768;
  --b29club-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --b29club-card-bg: #11271B;
  --b29club-background: #08160F;
  --b29club-text-main: #F2FFF6;
  --b29club-text-secondary: #A7D9B8;
  --b29club-border: #2E7A4E;
  --b29club-glow: #57E38D;
  --b29club-gold: #F2C14E;
  --b29club-divider: #1E3A2A;
  --b29club-deep-green: #0A4B2C;
}

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

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--b29club-background);
}

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

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

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  color: var(--b29club-gold);
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--b29club-text-secondary);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: var(--b29club-gold);
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-fishing-games__intro-text {
  font-size: 1.2em;
  color: var(--b29club-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: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Prevent button text from breaking on desktop */
}

.page-fishing-games__btn-primary {
  background: var(--b29club-button-gradient);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--b29club-glow);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: var(--b29club-gold);
  color: var(--b29club-deep-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* About Game Section */
.page-fishing-games__about-game .page-fishing-games__image {
  margin-top: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.page-fishing-games__features {
  background-color: var(--b29club-card-bg);
}

.page-fishing-games__feature-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(--b29club-deep-green);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--b29club-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--b29club-glow);
}

.page-fishing-games__card-image {
  width: 100%;
  max-width: 400px; /* Recommended size for card images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.8em;
  color: var(--b29club-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-fishing-games__step-item {
  background-color: var(--b29club-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--b29club-border);
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--b29club-button-gradient);
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-title {
  font-size: 1.6em;
  color: var(--b29club-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__step-text {
  font-size: 1em;
  color: var(--b29club-text-secondary);
}

.page-fishing-games__guide-cta {
  margin-top: 40px;
}

/* Strategies Section */
.page-fishing-games__strategies .page-fishing-games__image {
  margin-top: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__strategy-item {
  background-color: var(--b29club-card-bg);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid var(--b29club-divider);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__strategy-heading {
  font-size: 1.5em;
  color: var(--b29club-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__strategy-text {
  font-size: 1em;
  color: var(--b29club-text-secondary);
}

/* Promotions Section */
.page-fishing-games__promotions {
  background-color: var(--b29club-background);
}

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

.page-fishing-games__promo-card {
  background-color: var(--b29club-deep-green);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--b29club-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--b29club-glow);
}

.page-fishing-games__promo-cta {
  margin-top: 40px;
}

/* FAQ Section */
.page-fishing-games__faq {
  background-color: var(--b29club-card-bg);
}

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

.page-fishing-games__faq-item {
  background-color: var(--b29club-deep-green);
  border: 1px solid var(--b29club-border);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: bold;
  color: var(--b29club-text-main);
  background-color: var(--b29club-deep-green);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: var(--b29club-primary);
}

.page-fishing-games__faq-question::-webkit-details-marker, /* Hide default marker for Chrome/Safari */
.page-fishing-games__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--b29club-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: var(--b29club-text-secondary);
  line-height: 1.7;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
  background-color: var(--b29club-background);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games__card-title {
    font-size: 1.6em;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }
}

@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__hero-content {
    padding: 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-fishing-games__intro-text {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__feature-card,
  .page-fishing-games__step-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__strategy-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__image,
  .page-fishing-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__feature-grid,
  .page-fishing-games__steps,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__card-title {
    font-size: 1.4em;
  }
  .page-fishing-games__step-title {
    font-size: 1.3em;
  }
  .page-fishing-games__strategy-heading {
    font-size: 1.3em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-fishing-games__section-title {
    font-size: 1.6em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 1em;
    padding: 10px 15px;
  }
  .page-fishing-games__faq-question {
    font-size: 0.95em;
  }
}