/* ═══════════════════════════════════════ PANELS ═══════════════════════════════════════ */
.variants-wrap, .wc-choose, .choice-wrap, .panel-wrap { padding: 0 0 12px; }
.variants-title, .wc-choose-title, .choice-title, .panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-title);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 6px;
  color: var(--text);
}
.wc-choose-sub, .choice-sub, .panel-sub {
  font-size: 12px; color: var(--text-3); line-height: 1.55;
  margin-bottom: var(--space-md);
}
.variants-sub { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-md); }
.wc-who-pill, .panel-who {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--g-bg);
  border: 1px solid currentColor;
  margin-bottom: var(--space-md);
}

.variant-opt, .choice-opt, .wc-option {
  background: var(--g-bg);
  backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  -webkit-backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  border: 1px solid var(--g-border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: var(--g-inner);
  transition: border-color .2s, background .2s, transform .1s;
  position: relative; overflow: hidden;
  color: var(--text-2);
  font-size: 13px; font-weight: 300; line-height: 1.6;
}
.variant-opt:hover, .choice-opt:hover, .wc-option:hover {
  border-color: var(--g-border-hi); background: var(--g-bg-hi);
}
.variant-opt:active, .choice-opt:active, .wc-option:active {
  transform: scale(.99); border-color: rgba(168,120,216,.30);
}

.variant-opt--original {
  border-color: rgba(216,168,104,.35);
  background: linear-gradient(135deg, rgba(216,168,104,.08), transparent);
}
.variant-opt--original::after {
  content: 'ORIGINAL';
  position: absolute; top: 8px; right: 10px;
  font-size: 8px; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.wc-option-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.wc-option-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(216,168,104,.14);
  border: 1px solid rgba(216,168,104,.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.wc-option-title { font-size: 14px; font-weight: 500; color: var(--text); }
.wc-option-body { font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.6; padding-left: 42px; }

.choice-opt-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.choice-opt-desc  { font-size: 12px; font-weight: 400; color: var(--text-3); line-height: 1.55; }

/* ─── SORTEO ─── */
.sorteo-wrap {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--space-lg) var(--app-px);
  text-align: center;
  min-height: 380px;
}
.sorteo-title { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-title); font-weight: 300; margin-bottom: 10px; }
.sorteo-sub { font-size: 11px; color: var(--text-3); line-height: 1.55; margin-bottom: var(--space-lg); max-width: 280px; }
.sorteo-coin {
  width: clamp(100px, 18vmin, 160px);
  height: clamp(100px, 18vmin, 160px);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(216,168,104,.22), rgba(184,136,72,.08) 60%);
  backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  -webkit-backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  border: 1px solid rgba(216,168,104,.40);
  box-shadow: 0 20px 60px rgba(216,168,104,.25), inset 0 1px 0 rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  margin-bottom: var(--space-lg);
  animation: breathe 3s ease-in-out infinite;
  transition: transform .2s;
}
.sorteo-result { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-display); font-weight: 300; line-height: 1; transition: opacity .2s; min-height: 1em; }
.sorteo-desc { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-top: 12px; min-height: 1.2em; }

/* ─── LEVEL TRANSITION ─── */
.level-transition {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--space-xl) var(--app-px);
  text-align: center;
  min-height: 320px;
}
.lt-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--space-xl) var(--app-px);
  text-align: center;
  background: rgba(8,4,18,.92);
  backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  -webkit-backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  animation: fadeIn .35s ease both;
}
.lt-overlay.out { animation: fadeIn .35s ease reverse both; }
.lt-number { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.lt-name { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-display); font-weight: 300; line-height: 1; letter-spacing: 1px; }

/* ─── END ─── */
.end {
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--space-xl) + env(safe-area-inset-top)) var(--app-px) calc(var(--space-lg) + env(safe-area-inset-bottom));
  text-align: center; max-width: 560px; margin: 0 auto; width: 100%;
}
.end-flame {
  width: clamp(84px, 12vmin, 128px); height: clamp(84px, 12vmin, 128px);
  border-radius: clamp(24px, 3vmin, 36px);
  background: linear-gradient(145deg, rgba(224,92,125,.2), rgba(216,168,104,.12));
  backdrop-filter: blur(var(--g-blur));
  -webkit-backdrop-filter: blur(var(--g-blur));
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
  animation: breathe 3s ease-in-out infinite;
  box-shadow: 0 16px 48px rgba(224,92,125,.30);
}
.end-title { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-display); font-weight: 300; margin-bottom: 10px; }
.end-sub   { font-size: 13px; color: var(--text-3); line-height: 1.65; margin-bottom: var(--space-lg); max-width: 320px; }
.end-stats {
  display: flex; width: 100%;
  background: var(--g-bg);
  backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  -webkit-backdrop-filter: blur(var(--g-blur)) saturate(var(--g-sat));
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--g-shadow);
  margin-bottom: var(--space-lg);
}
.end-stat { flex: 1; padding: 22px 8px; text-align: center; }
.end-stat + .end-stat { border-left: 1px solid var(--g-border); }

/* ─── ACTION BAR ─── */
.action-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px var(--app-px) max(env(safe-area-inset-bottom), 16px);
  display: flex; flex-direction: column; gap: 10px;
  background: transparent;
  pointer-events: none;
  z-index: 6;
  max-width: 720px; margin: 0 auto;
}
.action-bar > * { pointer-events: auto; }
.action-bar:empty { display: none; }

