/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-bg: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
}

.page-fishing-games {
  background-color: var(--page-fishing-games-bg);
  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;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games__sub-title {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--page-fishing-games-gold);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__paragraph {
  font-size: 18px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  background-color: var(--page-fishing-games-bg);
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  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: brightness(0.7);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  margin-top: 20px; /* Space between image and content */
  max-width: 900px;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--page-fishing-games-text-main);
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-btn-gradient);
  color: var(--page-fishing-games-text-main);
  border: 2px solid transparent;
}

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

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

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

.page-fishing-games__btn-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background: var(--page-fishing-games-btn-gradient);
  color: var(--page-fishing-games-text-main);
  border: none;
  transition: all 0.3s ease;
}

.page-fishing-games__btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 255, 0, 0.3);
}

/* Intro Section */
.page-fishing-games__intro-section {
  background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__feature-item {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  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__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-fishing-games__feature-heading {
  font-size: 24px;
  color: var(--page-fishing-games-gold);
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: var(--page-fishing-games-text-secondary);
}

/* Games Showcase Section */
.page-fishing-games__games-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);
  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);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-fishing-games__game-description {
  font-size: 15px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__bullet-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-fishing-games__bullet-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%2357E38D"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__bullet-list li strong {
  color: var(--page-fishing-games-text-main);
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__step-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);
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--page-fishing-games-btn-gradient);
  color: var(--page-fishing-games-text-main);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

/* Promo Section */
.page-fishing-games__promo-section {
  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);
  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);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

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

.page-fishing-games__promo-description {
  font-size: 15px;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

/* Download Section */
.page-fishing-games__download-section {
  background-color: var(--page-fishing-games-bg);
}

.page-fishing-games__download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__download-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.page-fishing-games__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
  color: var(--page-fishing-games-text-secondary);
  font-size: 17px;
}

.page-fishing-games__ordered-list li {
  margin-bottom: 10px;
}

.page-fishing-games__ordered-list li strong {
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.page-fishing-games__download-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(var(--page-fishing-games-primary-color), 0.1);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

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

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

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

/* For details tag, hide default marker */
details.page-fishing-games__faq-item > summary {
  list-style: none;
}
details.page-fishing-games__faq-item > summary::-webkit-details-marker {
  display: none;
}

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

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

  .page-fishing-games__section-title {
    font-size: clamp(26px, 3.5vw, 42px);
  }

  .page-fishing-games__sub-title {
    font-size: clamp(20px, 2.5vw, 32px);
  }

  .page-fishing-games__paragraph {
    font-size: 17px;
  }
}

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

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

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

  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-fishing-games__hero-description {
    font-size: clamp(15px, 3vw, 18px);
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card,
  .page-fishing-games__download-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-fishing-games__download-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-fishing-games__download-content {
    flex-direction: column;
  }

  .page-fishing-games__download-text,
  .page-fishing-games__download-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

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

  .page-fishing-games__bullet-list,
  .page-fishing-games__ordered-list,
  .page-fishing-games__faq-list {
    padding-left: 0;
    margin-left: 0;
    text-align: left;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__section {
    padding: 30px 0;
  }

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

  .page-fishing-games__hero-description {
    font-size: clamp(14px, 4vw, 16px);
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 10px 15px;
    font-size: 15px;
  }
}