:root {
  --primary: #C0392B;
  --primary-dark: #922B21;
  --primary-light: #E74C3C;
  --secondary: #1A1A2E;
  --accent: #F39C12;
}

/* 霓虹潮玩短视频社区风 */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0815; }
::-webkit-scrollbar-thumb { background: linear-gradient(#8b5cf6, #d946ef); border-radius: 8px; }
::selection { background: #d946ef; color: #fff; }

/* 渐变文字 */
.neon-text {
  background: linear-gradient(90deg, var(--primary-light), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 卡片光晕 */
.glow-card { transition: transform .35s cubic-bezier(.16,.84,.44,1), box-shadow .35s ease; }
.glow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px -8px rgba(139,92,246,.45);
}

/* 图片缩放 */
.zoom-img { overflow: hidden; }
.zoom-img img { transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.zoom-img:hover img { transform: scale(1.08); }

/* 移动端抽屉导航 */
.nav { transition: transform .4s cubic-bezier(.16,.84,.44,1); }
@media (max-width: 1023px) {
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    flex-direction: column; align-items: flex-start;
    background: #0c0a1a; padding: 5.5rem 1.5rem 2rem;
    transform: translateX(100%);
    z-index: 60; overflow-y: auto; gap: .35rem;
    display: flex !important;
  }
  .nav.active { transform: translateX(0); }
  .nav a { width: 100%; }
  .menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: opacity .35s ease; z-index: 55;
  }
  .menu-overlay.active { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
}

/* FAQ 折叠 */
.faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s ease, opacity .4s ease;
}
.faq-icon { transition: transform .35s ease; }

/* 回到顶部 */
.back-to-top { opacity: 0; visibility: hidden; transition: opacity .35s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* 入场动画 */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s cubic-bezier(.16,.84,.44,1) both; }

@media print {
  header, footer, .nav, .no-print { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}
