/* style/fishing-games-skill-guide.css */
.page-fishing-games-skill-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  line-height: 1.6;
  background-color: var(--dark-bg);
}

.page-fishing-games-skill-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-fishing-games-skill-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games-skill-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-fishing-games-skill-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-fishing-games-skill-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games-skill-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games-skill-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games-skill-guide__btn-primary,
.page-fishing-games-skill-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-skill-guide__btn-primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-fishing-games-skill-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-fishing-games-skill-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-skill-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-fishing-games-skill-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--dark-bg);
  color: #ffffff;
}

.page-fishing-games-skill-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #1A2B4C;
  padding-bottom: 15px;
}

.page-fishing-games-skill-guide__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-fishing-games-skill-guide__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-fishing-games-skill-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-fishing-games-skill-guide__list-item {
  margin-bottom: 10px;
}

.page-fishing-games-skill-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-skill-guide__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-skill-guide__faq-container {
  margin-top: 50px;
  border: 1px solid #1A2B4C;
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games-skill-guide__faq-item {
  border-bottom: 1px solid #1A2B4C;
}

.page-fishing-games-skill-guide__faq-item:last-child {
  border-bottom: none;
}

.page-fishing-games-skill-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1A2B4C;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games-skill-guide__faq-question:hover {
  background-color: #2a3e63;
}

.page-fishing-games-skill-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-fishing-games-skill-guide__faq-item.active .page-fishing-games-skill-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-skill-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #0e1a31;
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-fishing-games-skill-guide__faq-item.active .page-fishing-games-skill-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px;
}

.page-fishing-games-skill-guide__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-fishing-games-skill-guide__floating-btn {
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-fishing-games-skill-guide__floating-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games-skill-guide__floating-btn--login {
  background-color: #1A2B4C;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-fishing-games-skill-guide__floating-btn--login:hover {
  background-color: #0e1a31;
  border-color: #FFD700;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games-skill-guide__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-skill-guide__section-title {
    font-size: 2em;
  }
  .page-fishing-games-skill-guide__paragraph,
  .page-fishing-games-skill-guide__list-item,
  .page-fishing-games-skill-guide__faq-question,
  .page-fishing-games-skill-guide__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-skill-guide__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games-skill-guide__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-skill-guide__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-skill-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-skill-guide__btn-primary,
  .page-fishing-games-skill-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-fishing-games-skill-guide__content-area {
    padding: 30px 15px;
  }
  .page-fishing-games-skill-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-fishing-games-skill-guide__paragraph,
  .page-fishing-games-skill-guide__list-item,
  .page-fishing-games-skill-guide__faq-question,
  .page-fishing-games-skill-guide__faq-answer {
    font-size: 0.95em;
  }
  .page-fishing-games-skill-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games-skill-guide__image-centered {
    max-width: 100% !important;
  }
  .page-fishing-games-skill-guide__faq-question {
    padding: 15px 15px;
  }
  .page-fishing-games-skill-guide__faq-answer {
    padding: 15px 15px;
  }
  .page-fishing-games-skill-guide__faq-item.active .page-fishing-games-skill-guide__faq-answer {
    padding: 15px 15px !important;
  }
  .page-fishing-games-skill-guide__floating-buttons {
    right: 10px;
    bottom: 10px;
  }
  .page-fishing-games-skill-guide__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}