:root {
  --bg-primary: #0d0d1a;
  --bg-card: #161625;
  --bg-card-hover: #1e1e33;
  --text-primary: #f0e6ff;
  --text-secondary: #9b8ec4;
  --text-muted: #6b5e8a;
  --accent-purple: #a855f7;
  --accent-rose: #f472b6;
  --accent-gold: #fbbf24;
  --accent-gold-dark: #f59e0b;
  --accent-gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-rose));
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 600px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  width: 100%;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(251, 191, 36, 0.45);
}

/* Hero (首页) */
.hero {
  text-align: center;
  padding: 3rem 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-purple);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  margin-bottom: 3rem;
}

.social-proof {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

/* Quiz */
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.question-number {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.question-scenario {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  min-height: 80px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.option-btn {
  display: block;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.option-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(4px);
}

.option-btn:active {
  transform: scale(0.985);
}

/* Result */
.result-header {
  text-align: center;
  margin-bottom: 2rem;
}

.result-type {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-purple);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-preview {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Paywall */
.paywall {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.paywall-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.paywall-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.paywall-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.paywall-includes {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 2;
}

/* Full Report */
.report-section {
  margin-bottom: 2rem;
}

.report-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.report-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .question-scenario {
    font-size: 1.1rem;
  }
  .result-type {
    font-size: 1.8rem;
  }
  .container {
    padding: 1.5rem 1rem;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
