/* FAQ Section — detail page (game_tgn_0006 pink theme) */
.description-box .faq-section {
  margin: 0;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.description-box .faq-title {
  font-size: 1.35rem;
  color: #c2187a;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.75), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 105, 180, 0.25);
  border-radius: 16px;
  line-height: 1.25;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  list-style: none;
}
.faq-title::-webkit-details-marker {
  display: none;
}


.description-box .faq-title:hover {
  border-color: rgba(255, 20, 147, 0.45);
  box-shadow: var(--shadow);
}

.description-box .faq-section[open] .faq-title {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  list-style: none;
}

.description-box .faq-section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: #2196f3;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.35);
}

.description-box .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px 14px;
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.75), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 105, 180, 0.25);
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.description-box .faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 105, 180, 0.18);
  border-radius: 12px;
  overflow: hidden;
}

.description-box .faq-question {
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text-color);
  border-left: 4px solid var(--primary-color);
}

.description-box .faq-answer {
  padding: 12px 16px 16px;
  color: #555;
  line-height: 1.55;
  border-top: 1px solid rgba(255, 105, 180, 0.12);
}

.description-box .faq-answer a {
  color: var(--secondary-color);
}

.description-box .faq-answer p {
  margin: 0 0 10px;
}

.description-box .faq-answer p:last-child {
  margin-bottom: 0;
}

.description-box .faq-section-toggle .fa,
.description-box .faq-section-toggle .fa-chevron-right,
.description-box .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 0.25s ease;
  font-size: 0;
  line-height: 0;
  box-sizing: border-box;
}

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

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

/* Game detail metadata */
.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin: 6px 0 0;
  padding: 8px 0;
  border-top: 1px solid var(--ink-rule, rgba(0, 0, 0, 0.12));
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--ink-muted, var(--color-text-muted, #64748b));
}

.detail-facts .game-developer,
.detail-facts .game-publish-date,
.detail-facts .game-update-time {
  margin: 0;
}

.detail-facts + .detail-content-section > h2:first-child,
.detail-facts + .detail-content-section > .detail-split-block:first-child h2,
.detail-facts + .detail-content-sections {
  margin-top: 0;
}

.detail-facts + .detail-content-section > h2:first-child,
.detail-facts + .detail-content-section > .detail-split-block:first-child > h2 {
  margin-top: 12px;
  padding-top: 0;
  border-top: none;
}
