.page-faq {
  --faq-accent: #FF2A7E;
  --faq-neon: #00E5FF;
  --faq-success: #00FF9D;
  --faq-paper: #F5E6C8;
  --faq-bg-deep: #2B0A3D;
  --faq-bg-ink: #1A0B2E;
  --faq-muted: #3D1B5E;
  --faq-glass: rgba(255, 255, 255, 0.08);
  --faq-radius: 16px;
  --faq-transition: 0.3s ease;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 42, 126, 0.12) 0%, transparent 36%),
    radial-gradient(circle at 12% 55%, rgba(0, 229, 255, 0.08) 0%, transparent 28%),
    var(--faq-bg-deep);
  color: var(--faq-paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

.page-faq .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.page-faq .faq-hero {
  position: relative;
  padding: 48px 0 32px;
  overflow: hidden;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--faq-bg-deep) 0%, var(--faq-accent) 38%, var(--faq-neon) 76%, var(--faq-bg-deep) 100%);
  opacity: 0.85;
}

.page-faq .faq-hero__inner {
  display: grid;
  gap: 28px;
}

.page-faq .faq-hero__content {
  position: relative;
  z-index: 1;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(245, 230, 200, 0.72);
  margin-bottom: 20px;
}

.page-faq .breadcrumb a {
  color: var(--faq-neon);
  text-decoration: none;
  transition: color var(--faq-transition);
}

.page-faq .breadcrumb a:hover {
  color: var(--faq-paper);
}

.page-faq .breadcrumb__separator {
  color: rgba(245, 230, 200, 0.4);
}

.page-faq .faq-hero__index {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--faq-accent);
  text-shadow: 0 0 12px rgba(255, 42, 126, 0.55);
  margin-bottom: 12px;
}

.page-faq .faq-hero__title {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.14;
  margin: 0 0 16px;
  color: var(--faq-paper);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), 0 0 22px rgba(255, 42, 126, 0.28);
}

.page-faq .faq-hero__lead {
  font-size: 17px;
  max-width: 680px;
  color: rgba(245, 230, 200, 0.86);
  margin: 0;
}

.page-faq .faq-hero__visual {
  position: relative;
}

.page-faq .faq-hero__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--faq-radius);
  box-shadow: 0 0 40px rgba(255, 42, 126, 0.18), 0 0 18px rgba(0, 229, 255, 0.12);
}

.page-faq .faq-panel {
  padding: 40px 0 16px;
}

.page-faq .faq-panel--alt {
  background:
    linear-gradient(135deg, rgba(61, 27, 94, 0.65) 0%, rgba(43, 10, 61, 0.25) 68%),
    rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.page-faq .faq-panel__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  border-left: 4px solid var(--faq-accent);
  padding-left: 18px;
}

.page-faq .faq-panel--alt .faq-panel__head {
  border-left-color: var(--faq-neon);
}

.page-faq .section-index {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 38px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 230, 200, 0.26);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.page-faq .faq-panel__head h2 {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: clamp(22px, 3.4vw, 32px);
  margin: 0 0 6px;
  color: var(--faq-paper);
}

.page-faq .faq-panel__head p {
  margin: 0;
  font-size: 15px;
  color: rgba(245, 230, 200, 0.68);
}

.page-faq .faq-accordion {
  display: grid;
  gap: 14px;
}

.page-faq .faq-item {
  background: var(--faq-glass);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left-width: 6px;
  border-radius: var(--faq-radius);
  overflow: hidden;
  transition: background var(--faq-transition), box-shadow var(--faq-transition), border-color var(--faq-transition);
}

.page-faq .faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.page-faq .faq-item--hotline {
  border-left-color: var(--faq-accent);
}

.page-faq .faq-item--neon {
  border-left-color: var(--faq-neon);
}

.page-faq .faq-item--success {
  border-left-color: var(--faq-success);
}

.page-faq .faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  user-select: none;
}

.page-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-faq .faq-item__no {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 14px;
  color: var(--faq-accent);
  min-width: 34px;
  text-align: right;
  opacity: 0.9;
}

.page-faq .faq-item--neon .faq-item__no {
  color: var(--faq-neon);
}

.page-faq .faq-item--success .faq-item__no {
  color: var(--faq-success);
}

.page-faq .faq-item__q {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-paper);
  line-height: 1.4;
}

.page-faq .faq-item__toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(245, 230, 200, 0.38);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.page-faq .faq-item__toggle::before,
.page-faq .faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--faq-paper);
  border-radius: 2px;
}

.page-faq .faq-item__toggle::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.page-faq .faq-item__toggle::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.28s ease;
}

.page-faq .faq-item[open] .faq-item__toggle {
  transform: rotate(135deg);
  border-color: var(--faq-accent);
}

.page-faq .faq-item--neon[open] .faq-item__toggle {
  border-color: var(--faq-neon);
}

.page-faq .faq-item--success[open] .faq-item__toggle {
  border-color: var(--faq-success);
}

.page-faq .faq-item__a {
  padding: 0 20px 22px 68px;
  font-size: 15px;
  color: rgba(245, 230, 200, 0.86);
  animation: faq-fade-in 0.3s ease both;
}

.page-faq .faq-item__a p:first-child {
  margin-top: 0;
}

.page-faq .faq-item__a p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-item__a ul,
.page-faq .faq-item__a ol {
  margin: 10px 0 10px;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.page-faq .faq-item__a li::marker {
  color: var(--faq-accent);
}

.page-faq .faq-item--neon .faq-item__a li::marker {
  color: var(--faq-neon);
}

.page-faq .faq-item--success .faq-item__a li::marker {
  color: var(--faq-success);
}

.page-faq .highlight {
  display: inline-block;
  padding: 0 6px;
  background: linear-gradient(135deg, rgba(255, 42, 126, 0.25) 0%, rgba(255, 42, 126, 0.08) 100%);
  border-radius: 6px;
  color: var(--faq-paper);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 42, 126, 0.24);
}

.page-faq .faq-item__a a {
  color: var(--faq-neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: border-color var(--faq-transition), color var(--faq-transition);
}

.page-faq .faq-item__a a:hover {
  border-bottom-color: var(--faq-neon);
  color: var(--faq-paper);
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-faq .faq-playback__grid {
  display: grid;
  gap: 32px;
}

.page-faq .faq-playback__art {
  margin: 0;
  align-self: start;
  position: relative;
}

.page-faq .faq-playback__art::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(255, 42, 126, 0.18) 0%, rgba(0, 229, 255, 0.12) 100%);
  border-radius: calc(var(--faq-radius) + 4px);
  z-index: 0;
  pointer-events: none;
}

.page-faq .faq-playback__art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--faq-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(255, 42, 126, 0.08) 100%);
}

.page-faq .faq-playback__art figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(245, 230, 200, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-faq .faq-playback__art figcaption::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--faq-neon);
  border-radius: 2px;
}

.page-faq .faq-support {
  padding: 48px 0 28px;
}

.page-faq .faq-support__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 28px;
  border-radius: var(--faq-radius);
  background:
    linear-gradient(135deg, rgba(255, 42, 126, 0.2) 0%, transparent 42%),
    var(--faq-glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 34px rgba(255, 42, 126, 0.12);
  align-items: flex-start;
}

.page-faq .faq-support__inner h2 {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  margin: 0 0 8px;
  color: var(--faq-paper);
}

.page-faq .faq-support__inner p {
  margin: 0;
  font-size: 15px;
  color: rgba(245, 230, 200, 0.82);
}

.page-faq .faq-support__inner a:not(.btn) {
  color: var(--faq-neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: border-color var(--faq-transition), color var(--faq-transition);
}

.page-faq .faq-support__inner a:not(.btn):hover {
  border-bottom-color: var(--faq-neon);
  color: var(--faq-paper);
}

.page-faq .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--faq-accent) 0%, #D1005A 100%);
  color: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 0 22px rgba(255, 42, 126, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: box-shadow var(--faq-transition), transform var(--faq-transition), filter var(--faq-transition);
}

.page-faq .btn--primary:hover {
  box-shadow: 0 0 40px rgba(255, 42, 126, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.page-faq .faq-support__note {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 230, 200, 0.5);
}

.page-faq .faq-support__note::before {
  content: "◆ ";
  color: var(--faq-accent);
}

@media (prefers-reduced-motion: reduce) {
  .page-faq *,
  .page-faq *::before,
  .page-faq *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 767px) {
  .page-faq .container {
    padding-inline: 18px;
  }

  .page-faq .faq-hero {
    padding-top: 38px;
  }

  .page-faq .faq-hero__visual {
    margin-top: 4px;
  }

  .page-faq .faq-panel {
    padding-top: 44px;
  }

  .page-faq .faq-panel__head {
    flex-direction: column;
    gap: 8px;
  }

  .page-faq .section-index {
    font-size: 28px;
  }

  .page-faq .faq-item__a {
    padding: 0 16px 20px 16px;
  }

  .page-faq .faq-item summary {
    padding: 16px;
  }

  .page-faq .faq-item__no {
    min-width: 26px;
    font-size: 13px;
  }

  .page-faq .faq-item__q {
    font-size: 15px;
  }

  .page-faq .faq-support__inner {
    padding: 24px 20px;
  }
}

@media (min-width: 768px) {
  .page-faq .faq-hero__inner {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 48px;
  }

  .page-faq .faq-hero__visual {
    margin-left: auto;
    width: 100%;
  }

  .page-faq .faq-playback__grid {
    grid-template-columns: 1fr 0.62fr;
    align-items: start;
    gap: 56px;
  }

  .page-faq .faq-playback__art {
    position: sticky;
    top: 120px;
  }

  .page-faq .faq-support__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
  }
}
