:root {
  --bg-0: #1a1208;
  --bg-1: #0a0805;
  --bg-2: #050302;
  --gold: #d4af37;
  --gold-deep: #b8860b;
  --gold-light: #f4d35e;
  --cream: #f5e9d0;
  --text: #e8d9b0;
  --text-soft: #d4c8a0;
  --muted: #a89870;
  --muted-2: #8a7a55;
  --placeholder: #6b5a3a;
  --track: #2a1f0f;
  --ink: #1a1208;
  --warn-bg: #2a1208;
}

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

html, body {
  min-height: 100%;
  font-family: Inter, system-ui, sans-serif;
  background: #050302;
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: radial-gradient(ellipse at top, #1a1208 0%, #0a0805 60%, #050302 100%);
  min-height: 100dvh;
}

button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }
button:disabled { cursor: not-allowed; }

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,0.6), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255,244,194,0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(212,175,55,0.4), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,244,194,0.5), transparent),
    radial-gradient(1px 1px at 10% 75%, rgba(212,175,55,0.5), transparent);
  background-size: 250px 250px, 300px 300px, 200px 200px, 350px 350px, 280px 280px;
  animation: particles 60s linear infinite;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  overflow: hidden;
}

.progress-wrap { margin-bottom: 24px; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.7);
  font-weight: 600;
  margin-bottom: 8px;
}
.progress-track {
  height: 3px;
  width: 100%;
  background: var(--track);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  transition: width 700ms ease-out;
}

.chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  padding: 6px 12px;
}

.gold-btn {
  width: 100%;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 16px 18px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.22);
  animation: glowPulse 2.4s ease-in-out infinite;
  transition: transform 120ms ease;
  font-family: inherit;
}
.gold-btn:active:not(:disabled) { transform: scale(0.98); }
.gold-btn:disabled {
  opacity: 0.5;
  animation: none;
}

.gold-border { border: 1px solid rgba(212,175,55,0.35); }
.gold-grad { background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%); }

.font-serif { font-family: "Cormorant Garamond", serif; }

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.12;
}

.shimmer-text {
  background: linear-gradient(90deg, #d4af37 0%, #fff4c2 25%, #d4af37 50%, #fff4c2 75%, #d4af37 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3.5s linear infinite;
}

.slide-in { animation: slideIn 500ms ease-out; }
.fade-in { animation: fadeIn 600ms ease-out; }
.float { animation: float 4s ease-in-out infinite; }

.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hook { padding-top: 8px; }
.hook-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 0 60px rgba(212,175,55,0.25);
  display: block;
  margin: 24px auto;
}
.hook h1 {
  font-size: 32px;
  margin-bottom: 16px;
}
.lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 0 4px;
}
.lead strong { color: var(--gold); font-weight: 700; }
.italic-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hook .gold-btn { margin-top: 8px; }
.hook .italic-note { margin: 20px 0 0; }
.tiny {
  font-size: 11px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-top: 20px;
}
.tiny em { font-style: italic; }

.step { padding-top: 8px; }
.step h2 {
  font-size: 28px;
  margin: 20px 0 16px;
}
.step h2.smaller { font-size: 26px; }
.step h2.social { font-size: 24px; }
.body {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.body .gold, .gold { color: var(--gold); font-weight: 600; }
.hint {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
}

.name-input {
  width: 100%;
  background: rgba(26,18,8,0.8);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--cream);
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  outline: none;
  font-family: inherit;
}
.name-input::placeholder { color: var(--placeholder); }
.name-input:focus { border-color: var(--gold); }

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 64px;
}
.spinner-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 40px;
}
.spinner-ring {
  width: 96px;
  height: 96px;
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: 50%;
}
.spinner-spin {
  position: absolute;
  inset: 0;
  width: 96px;
  height: 96px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.spinner-glow {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  opacity: 0.2;
  filter: blur(18px);
}
.load-bar {
  width: 100%;
  height: 3px;
  background: var(--track);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.load-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  transition: width 100ms linear;
}
.load-text {
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  min-height: 24px;
}

.bullets { list-style: none; margin: 0 0 24px; }
.bullets li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.bullets .diamond { color: var(--gold); margin-top: 2px; }

.quote-bar {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  border-left: 2px solid rgba(212,175,55,0.5);
  padding-left: 16px;
  line-height: 1.65;
}
.quote-bar strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.opt-list { display: flex; flex-direction: column; gap: 12px; }
.opt {
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(26,18,8,0.6);
  color: var(--text);
  font-family: inherit;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  width: 100%;
}
.opt:hover:not(:disabled) { border-color: var(--gold); }
.opt .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.opt .txt { font-size: 14px; line-height: 1.4; font-style: italic; }
.opt.plain { font-size: 14px; line-height: 1.4; }
.opt.quote { font-size: 15px; font-style: italic; }
.opt.selected {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  border-color: transparent;
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
}
.opt.selected .lbl { color: var(--ink); }
.opt.selected .txt { font-style: italic; }

.card {
  background: rgba(26,18,8,0.7);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.card p {
  font-size: 14px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}
.card p strong { color: var(--gold); font-style: normal; }

.person { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.person-name { font-weight: 600; color: var(--cream); font-size: 14px; }
.person-meta { font-size: 11px; color: var(--muted); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }

.explain-card {
  background: rgba(26,18,8,0.7);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}
.explain-card strong { color: var(--gold); font-style: normal; }

.authority { text-align: center; }
.photo-wrap {
  position: relative;
  width: fit-content;
  margin: 24px auto;
}
.photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4d35e 100%);
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.3;
}
.photo {
  position: relative;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  display: block;
}
.authority h2 { font-size: 30px; margin-bottom: 8px; }
.role {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.left { text-align: left; }

.lock { font-size: 11px; color: var(--muted-2); text-align: center; margin-top: 16px; }

.sparkles {
  font-size: 56px;
  margin-bottom: 32px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.45));
  line-height: 1;
}

vturb-smartplayer {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px !important;
}
vturb-smartplayer .vturb-player-placeholder { border-radius: 10px; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.35), 0 0 40px rgba(212,175,55,0.15); }
  50% { box-shadow: 0 0 35px rgba(212,175,55,0.55), 0 0 70px rgba(212,175,55,0.25); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes particles {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 200px 600px, -200px 400px, 120px 300px, -80px 200px, 160px 500px; }
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .slide-in, .fade-in, .float, .gold-btn, .shimmer-text, .particles, .spinner-spin {
    animation: none !important;
  }
}

@media (min-width: 768px) {
  .wrap { padding-top: 32px; padding-bottom: 64px; }
}

@media (max-width: 380px) {
  .hook h1 { font-size: 28px; }
  .step h2 { font-size: 24px; }
}
