/* style/game-guides-fishing-high-score.css */

/* Variables */
:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --text-dark-color: #000000;
  --bg-card-color: #FFFFFF;
  --bg-light-color: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-game-guides-fishing-high-score {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--bg-light-color); /* Default light background, assuming body is light */
}

.page-game-guides-fishing-high-score__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-game-guides-fishing-high-score__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height to prevent image from being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-guides-fishing-high-score__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover; /* Ensure image covers the area without distortion */
  min-height: 200px; /* Minimum size requirement */
}

.page-game-guides-fishing-high-score__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.page-game-guides-fishing-high-score__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-guides-fishing-high-score__hero-description {
  font-size: 1.1rem;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-fishing-high-score__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-guides-fishing-high-score__btn-primary,
.page-game-guides-fishing-high-score__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides-fishing-high-score__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-game-guides-fishing-high-score__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-game-guides-fishing-high-score__btn-secondary {
  background: var(--bg-card-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-game-guides-fishing-high-score__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-game-guides-fishing-high-score__content-area {
  padding: 60px 20px;
  overflow: hidden;
}

.page-game-guides-fishing-high-score__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-game-guides-fishing-high-score__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main-color);
}

.page-game-guides-fishing-high-score__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-game-guides-fishing-high-score p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-main-color);
}

.page-game-guides-fishing-high-score__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  color: var(--text-main-color);
}

.page-game-guides-fishing-high-score__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-game-guides-fishing-high-score__image-card {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-card-color);
  padding: 15px;
  box-sizing: border-box;
}

.page-game-guides-fishing-high-score__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides-fishing-high-score__image-caption {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* FAQ Styles */
.page-game-guides-fishing-high-score__faq-item {
  background-color: var(--bg-card-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-fishing-high-score__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-color);
  background-color: #E8F0FF; /* Lighter background for question */
  border-bottom: 1px solid var(--border-color);
}

.page-game-guides-fishing-high-score__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-guides-fishing-high-score__faq-question::marker {
  display: none;
}

.page-game-guides-fishing-high-score__faq-qtext {
  flex-grow: 1;
}

.page-game-guides-fishing-high-score__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-game-guides-fishing-high-score__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: var(--text-main-color);
}

.page-game-guides-fishing-high-score__faq-answer p {
  margin-bottom: 0;
}

/* Color Contrast based on assumed body background */
.page-game-guides-fishing-high-score__dark-bg {
  background-color: var(--primary-color); /* Using brand primary as dark background */
  color: #ffffff;
}

.page-game-guides-fishing-high-score__dark-bg .page-game-guides-fishing-high-score__section-title,
.page-game-guides-fishing-high-score__dark-bg .page-game-guides-fishing-high-score__sub-title,
.page-game-guides-fishing-high-score__dark-bg p,
.page-game-guides-fishing-high-score__dark-bg .page-game-guides-fishing-high-score__list-item {
  color: #ffffff; /* White text on dark background */
}

.page-game-guides-fishing-high-score__dark-bg .page-game-guides-fishing-high-score__image-caption {
  color: #E0E0E0;
}

.page-game-guides-fishing-high-score__light-bg {
  background-color: var(--bg-light-color);
  color: var(--text-main-color);
}

.page-game-guides-fishing-high-score__light-bg .page-game-guides-fishing-high-score__section-title,
.page-game-guides-fishing-high-score__light-bg .page-game-guides-fishing-high-score__sub-title,
.page-game-guides-fishing-high-score__light-bg p,
.page-game-guides-fishing-high-score__light-bg .page-game-guides-fishing-high-score__list-item {
  color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-fishing-high-score__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-game-guides-fishing-high-score__section-title {
    font-size: 2.2rem;
  }
  .page-game-guides-fishing-high-score__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fishing-high-score__hero-section {
    padding-bottom: 40px;
  }
  .page-game-guides-fishing-high-score__hero-content {
    margin-top: 20px;
  }
  .page-game-guides-fishing-high-score__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    padding: 0 15px;
  }
  .page-game-guides-fishing-high-score__hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  .page-game-guides-fishing-high-score__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 15px;
  }
  .page-game-guides-fishing-high-score__btn-primary,
  .page-game-guides-fishing-high-score__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-game-guides-fishing-high-score__content-area {
    padding: 40px 15px;
  }
  .page-game-guides-fishing-high-score__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-game-guides-fishing-high-score__section-title {
    font-size: 1.8rem;
  }
  .page-game-guides-fishing-high-score__sub-title {
    font-size: 1.4rem;
  }
  .page-game-guides-fishing-high-score p,
  .page-game-guides-fishing-high-score__list-item,
  .page-game-guides-fishing-high-score__faq-answer {
    font-size: 16px !important;
  }
  .page-game-guides-fishing-high-score__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  /* Mobile image responsive adaptations */
  .page-game-guides-fishing-high-score img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides-fishing-high-score__image-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-high-score__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-game-guides-fishing-high-score__section-title {
    font-size: 1.6rem;
  }
  .page-game-guides-fishing-high-score__sub-title {
    font-size: 1.2rem;
  }
}