body {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.guide-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-section:last-child {
  border-bottom: none;
}

.guide-title {
  color: #ffc107;
  margin-bottom: 30px;
  font-weight: 700;
}

.guide-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

.toc-link {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.toc-link:hover {
  color: #ffc107;
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.toc-link i {
  margin-right: 10px;
  color: #ffc107;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  box-shadow: none;
}

.accordion-body {
  background-color: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.spot-link {
  color: #1DB954;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.spot-link:hover {
  text-decoration: underline;
  color: #fff;
}