/* FAQ Section — game_tgn_0017 detail page (neo-brutalist light) */
.g17-detail-article .faq-section {
  margin: 0;
}

.g17-detail-article .faq-title {
  font-size: 1.25rem;
  color: var(--nebula-pink);
  margin: 0 0 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: color var(--transition-fast);
  list-style: none;
}
.faq-title::-webkit-details-marker {
  display: none;
}


.g17-detail-article .faq-title:hover {
  color: var(--comet-cyan);
}

.g17-detail-article .faq-section:not([open]) .faq-title {
  margin-bottom: 0;
  list-style: none;
}

.g17-detail-article .faq-section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--g17-radius-sm);
  border: 2px solid #1a1625;
  background: var(--nebula-pink);
  box-shadow: 2px 2px 0 #1a1625;
  transition: background var(--transition-fast);
}

.g17-detail-article .faq-title:hover .faq-section-toggle {
  background: var(--comet-cyan);
}

.g17-detail-article .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
}

.g17-detail-article .faq-item {
  background: #fff;
  border: var(--g17-border);
  border-radius: var(--g17-radius-sm);
  box-shadow: 3px 3px 0 #1a1625;
  overflow: hidden;
}

.g17-detail-article .faq-question {
  padding: 14px 16px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--star-white);
  background: #fff8ef;
  border-left: 4px solid var(--nebula-pink);
}

.g17-detail-article .faq-answer {
  padding: 12px 16px 16px;
  color: var(--ink-muted);
  line-height: 1.6;
  border-top: 2px dashed #d6d3d1;
}

.g17-detail-article .faq-answer a {
  color: var(--g17-accent-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.g17-detail-article .faq-section-toggle .fa,
.g17-detail-article .faq-section-toggle .fa-chevron-right,
.g17-detail-article .faq-section-toggle i {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: rotate(-45deg);
  transition: transform var(--transition-fast);
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: visible;
  box-sizing: border-box;
}

.g17-detail-article .faq-section-toggle .fa::before,
.g17-detail-article .faq-section-toggle .fa-chevron-right::before,
.g17-detail-article .faq-section-toggle i::before {
  display: none !important;
  content: "" !important;
}

.g17-detail-article .faq-section[open] .faq-section-toggle .fa,
.g17-detail-article .faq-section[open] .faq-section-toggle .fa-chevron-right,
.g17-detail-article .faq-section[open] .faq-section-toggle i {
  transform: rotate(45deg);
}

.g17-detail-article .faq-answer p {
  margin: 0 0 10px;
}

.g17-detail-article .faq-answer p:last-child {
  margin-bottom: 0;
}
