/* style/fishing-game-strategy.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-dark: #08160F;
    --card-bg-dark: #11271B;
    --text-main-light: #F2FFF6;
    --text-secondary-light: #A7D9B8;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-fishing-game-strategy {
  background-color: var(--bg-dark);
  color: var(--text-main-light);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--deep-green);
}

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

.page-fishing-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-fishing-game-strategy__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 30px;
}

.page-fishing-game-strategy__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px var(--glow-color);
}

.page-fishing-game-strategy__description {
  font-size: 1.1em;
  color: var(--text-secondary-light);
  margin-bottom: 30px;
}

.page-fishing-game-strategy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-game-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-game-strategy__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-game-strategy__card-bg {
  background-color: var(--card-bg-dark);
}

.page-fishing-game-strategy__dark-bg {
  background-color: var(--bg-dark);
}

.page-fishing-game-strategy__dark-section {
  background-color: var(--deep-green);
}

.page-fishing-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-game-strategy__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--glow-color);
  border-radius: 2px;
}

.page-fishing-game-strategy__content-area {
  text-align: left;
  font-size: 1.05em;
  color: var(--text-main-light);
}

.page-fishing-game-strategy__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--secondary-color);
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-game-strategy p {
  margin-bottom: 15px;
  color: var(--text-main-light);
}

.page-fishing-game-strategy__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Styles */
.page-fishing-game-strategy__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-game-strategy__faq-item {
  background-color: var(--card-bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-light);
}

.page-fishing-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main-light);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
}

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

.page-fishing-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold-color);
}

.page-fishing-game-strategy__faq-item[open] .page-fishing-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1.0em;
  line-height: 1.7;
  color: var(--text-secondary-light);
  background-color: var(--card-bg-dark);
}

.page-fishing-game-strategy__faq-answer p {
  margin-bottom: 0;
}

/* Details element native marker removal */
.page-fishing-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-game-strategy__faq-item summary {
  list-style: none;
}

.page-fishing-game-strategy__conclusion-section {
  padding-bottom: 80px;
}

.page-fishing-game-strategy__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Global image responsiveness for content area */
.page-fishing-game-strategy img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fishing-game-strategy {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-fishing-game-strategy__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-game-strategy__hero-content {
    padding: 15px;
    margin-top: 20px;
  }

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

  .page-fishing-game-strategy__description {
    font-size: 1em;
  }

  .page-fishing-game-strategy__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-fishing-game-strategy__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-fishing-game-strategy__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-fishing-game-strategy__content-area {
    padding: 0;
  }

  .page-fishing-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-game-strategy__section,
  .page-fishing-game-strategy__container,
  .page-fishing-game-strategy__content-area,
  .page-fishing-game-strategy__hero-section,
  .page-fishing-game-strategy__hero-image-wrapper,
  .page-fishing-game-strategy__hero-content,
  .page-fishing-game-strategy__btn-primary,
  .page-fishing-game-strategy__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-fishing-game-strategy__hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-game-strategy__btn-primary,
  .page-fishing-game-strategy__btn-large {
    white-space: normal !important;
    word-wrap: break-word !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

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

  .page-fishing-game-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}