/* style/fishing-games.css */

:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --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-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #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;
  padding-bottom: 50px; /* Add some padding at the bottom for spacing */
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-fishing-games__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.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.6); /* Darken image slightly for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text block */
  border-radius: 10px;
  margin-top: 150px; /* Push content down below image for 'image above text' */
  margin-bottom: 50px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
}

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

/* CTA Buttons */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.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(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-fishing-games__cta-button--secondary {
  background: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-primary-color);
  border: 2px solid var(--page-fishing-games-primary-color);
  margin-top: 20px;
}

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

/* Why Choose Section */
.page-fishing-games__why-choose {
  background-color: var(--page-fishing-games-deep-green);
}

.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-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--page-fishing-games-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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.5em;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 10px;
}

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

/* How to Join Section */
.page-fishing-games__how-to-join {
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__guide-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__guide-title {
  font-size: 1.4em;
  color: var(--page-fishing-games-primary-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}

.page-fishing-games__guide-title::before {
  content: '✓'; /* Or use a number counter */
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-main);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: bold;
}

.page-fishing-games__guide-item:nth-child(1) .page-fishing-games__guide-title::before { content: '1'; }
.page-fishing-games__guide-item:nth-child(2) .page-fishing-games__guide-title::before { content: '2'; }
.page-fishing-games__guide-item:nth-child(3) .page-fishing-games__guide-title::before { content: '3'; }
.page-fishing-games__guide-item:nth-child(4) .page-fishing-games__guide-title::before { content: '4'; }
.page-fishing-games__guide-item:nth-child(5) .page-fishing-games__guide-title::before { content: '5'; }

.page-fishing-games__guide-text {
  color: var(--page-fishing-games-text-secondary);
  font-size: 0.95em;
}

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

/* Game Showcase Section */
.page-fishing-games__game-showcase {
  background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__game-grid {
  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);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--page-fishing-games-border-color);
  transition: transform 0.3s ease;
}

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

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

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

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

/* Strategy Tips Section */
.page-fishing-games__strategy-tips {
  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: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__strategy-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__strategy-title {
  font-size: 1.3em;
  color: var(--page-fishing-games-primary-color);
  margin-bottom: 10px;
}

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

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}

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

.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(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--page-fishing-games-border-color);
}

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

.page-fishing-games__promo-text {
  color: var(--page-fishing-games-text-secondary);
  font-size: 0.95em;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
}

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

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

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

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

.page-fishing-games__faq-question:hover {
  background-color: var(--page-fishing-games-deep-green);
}

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

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

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

.page-fishing-games__faq-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
  background-color: var(--page-fishing-games-deep-green);
  padding-bottom: 80px;
}

/* General link styling */
.page-fishing-games a {
  color: var(--page-fishing-games-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: var(--page-fishing-games-glow-color);
  text-decoration: underline;
}

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

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

  .page-fishing-games__section {
    padding: 40px 15px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games__hero-section {
    min-height: 500px;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    margin-top: 80px;
    padding: 15px;
  }

  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }

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

  /* Image, Video, Button Responsive Rules */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__hero-image,
  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__strategy-image,
  .page-fishing-games__promo-image,
  .page-fishing-games__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Override explicit heights */
  }

  .page-fishing-games__container,
  .page-fishing-games__feature-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__game-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__cta-button--primary,
  .page-fishing-games__cta-button--secondary {
    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__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between buttons if multiple */
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__guide-item,
  .page-fishing-games__game-card,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-card {
    margin-bottom: 20px; /* Adjust spacing for mobile */
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }

  .page-fishing-games__section-title {
    font-size: 1.6em;
  }

  .page-fishing-games__hero-content {
    margin-top: 50px;
  }
}