/* style/fishing-games-guide.css */
.page-fishing-games-guide {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-fishing-games-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
  letter-spacing: 0.05em;
}

.page-fishing-games-guide__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games-guide p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
}

.page-fishing-games-guide a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-fishing-games-guide a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games-guide__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 */
  overflow: hidden;
  min-height: 600px;
}

.page-fishing-games-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-fishing-games-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-fishing-games-guide__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-fishing-games-guide__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-guide__hero-description {
  font-size: clamp(1.1em, 2vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__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-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games-guide__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.3);
}

.page-fishing-games-guide__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.5);
}

.page-fishing-games-guide__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Content Grid */
.page-fishing-games-guide__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.page-fishing-games-guide__content-grid > div {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-guide__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

/* Ordered/Unordered Lists */
.page-fishing-games-guide__ordered-list,
.page-fishing-games-guide__unordered-list {
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-guide__ordered-list li,
.page-fishing-games-guide__unordered-list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-guide__ordered-list li strong,
.page-fishing-games-guide__unordered-list li strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games-guide__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games-guide__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games-guide__card p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Strategy Cards */
.page-fishing-games-guide__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-guide__strategy-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games-guide__strategy-card .page-fishing-games-guide__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-fishing-games-guide__strategy-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

.page-fishing-games-guide__promo-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games-guide__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-fishing-games-guide__promo-item p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-fishing-games-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-fishing-games-guide__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-fishing-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-fishing-games-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-guide__section-title {
    font-size: 2em;
  }
  .page-fishing-games-guide__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-fishing-games-guide__hero-description {
    font-size: clamp(1em, 1.8vw, 1.2em);
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__section {
    padding: 40px 0;
  }
  .page-fishing-games-guide__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games-guide__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-guide__hero-content {
    padding: 20px 15px;
  }
  .page-fishing-games-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-guide__btn-primary,
  .page-fishing-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fishing-games-guide__content-grid {
    flex-direction: column;
  }

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

  .page-fishing-games-guide__card,
  .page-fishing-games-guide__strategy-card,
  .page-fishing-games-guide__promo-item,
  .page-fishing-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-guide__cta-buttons,
  .page-fishing-games-guide__button-group,
  .page-fishing-games-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for buttons on mobile */
  }

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

  .page-fishing-games-guide__faq-answer {
    padding: 10px 20px 15px;
  }
}