.page-game-guides-boss-hunting-tips {
  font-family: Arial, sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
}

.page-game-guides-boss-hunting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-boss-hunting-tips__hero {
  background: linear-gradient(135deg, #0A192F 0%, #303d52 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-boss-hunting-tips__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,ocean,fishing_game,dark_blue]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-game-guides-boss-hunting-tips__hero .page-game-guides-boss-hunting-tips__container {
  position: relative;
  z-index: 1;
}

.page-game-guides-boss-hunting-tips__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-guides-boss-hunting-tips__subtitle {
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-boss-hunting-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-guides-boss-hunting-tips__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A192F; /* Dark text for gold background */
}

.page-game-guides-boss-hunting-tips__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-guides-boss-hunting-tips__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-guides-boss-hunting-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-game-guides-boss-hunting-tips__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-boss-hunting-tips__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-boss-hunting-tips__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-game-guides-boss-hunting-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-boss-hunting-tips__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold accent */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-guides-boss-hunting-tips__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-guides-boss-hunting-tips__section p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-boss-hunting-tips__section p a:hover {
  text-decoration: underline;
}

.page-game-guides-boss-hunting-tips__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-game-guides-boss-hunting-tips__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-game-guides-boss-hunting-tips__list li::before {
  content: '▶'; /* Custom bullet point */
  color: #FFD700; /* Gold bullet */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8em;
}

.page-game-guides-boss-hunting-tips__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-game-guides-boss-hunting-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides-boss-hunting-tips__image--large {
  max-width: 90%;
}

.page-game-guides-boss-hunting-tips__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-game-guides-boss-hunting-tips__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-game-guides-boss-hunting-tips__cta-buttons .page-game-guides-boss-hunting-tips__btn {
  margin: 10px;
}

.page-game-guides-boss-hunting-tips__section--faq {
  background-color: #0F2038;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-boss-hunting-tips__faq-item {
  background-color: #1A2B42;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-game-guides-boss-hunting-tips__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-boss-hunting-tips__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides-boss-hunting-tips__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-boss-hunting-tips__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-guides-boss-hunting-tips__faq-answer {
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-game-guides-boss-hunting-tips__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-boss-hunting-tips__title {
    font-size: 2.5em;
  }

  .page-game-guides-boss-hunting-tips__subtitle {
    font-size: 1.2em;
  }

  .page-game-guides-boss-hunting-tips__section-title {
    font-size: 2em;
  }

  .page-game-guides-boss-hunting-tips__sub-title {
    font-size: 1.5em;
  }

  .page-game-guides-boss-hunting-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-boss-hunting-tips__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-guides-boss-hunting-tips__cta-buttons {
    flex-direction: column;
  }

  .page-game-guides-boss-hunting-tips__list--columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides-boss-hunting-tips__title {
    font-size: 2em;
  }

  .page-game-guides-boss-hunting-tips__subtitle {
    font-size: 1em;
  }

  .page-game-guides-boss-hunting-tips__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-boss-hunting-tips__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides-boss-hunting-tips__hero {
    padding: 60px 0;
  }

  .page-game-guides-boss-hunting-tips__section {
    padding: 50px 0;
  }
}