/* Crown Vault — standalone visual identity, fullscreen canvas (no site chrome) */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #020100;
}

.cv-root {
  --cv-bg-deep: #030201;
  --cv-gold: #e6ebf0;
  --cv-gold-bright: #ffffff;
  --cv-gold-dim: #828b96;
  --cv-sapphire: #1f9e6e;
  --cv-amethyst: #e895b8;
  --cv-diamond: #ffe6f2;
  --cv-rose-gold: #a83a5e;
  --cv-text: #f2ead9;
  --cv-text-dim: #a89a78;

  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
  background: var(--cv-bg-deep);
  color: var(--cv-text);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.cv-stage { position: relative; width: 100%; height: 100%; }

#cv-canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  background: var(--cv-bg-deep);
}

/* ---------- HUD ---------- */
.cv-hud {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: max(14px, env(safe-area-inset-top)) 18px 0;
  z-index: 5;
}
.cv-hud.cv-visible { display: flex; }
.cv-hud-stats { display: flex; gap: 18px; }
.cv-hud-item { display: flex; flex-direction: column; }
.cv-hud-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--cv-text-dim); font-weight: 700; font-family: 'Manrope', sans-serif; }
.cv-hud-value { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 20px; color: var(--cv-gold); text-shadow: 0 0 10px rgba(230,235,240,.4); }
.cv-hud-buttons { display: flex; gap: 8px; }
.cv-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(20,14,4,.6); border: 1px solid rgba(230,235,240,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--cv-gold); cursor: pointer;
}
.cv-icon-btn:active { background: rgba(230,235,240,.2); }

/* ---------- Overlays ---------- */
.cv-overlay {
  position: absolute; inset: 0; z-index: 20;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: radial-gradient(ellipse at 50% 30%, rgba(60,40,10,.92) 0%, rgba(2,1,0,.98) 100%);
}
.cv-overlay.cv-visible { display: flex; }

.cv-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--cv-rose-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cv-eyebrow span {
  display: block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cv-rose-gold));
}
.cv-eyebrow span:last-child { background: linear-gradient(90deg, var(--cv-rose-gold), transparent); }

.cv-title {
  font-family: 'Bodoni Moda', serif; font-weight: 800;
  font-size: clamp(30px, 8vw, 50px); letter-spacing: .08em;
  margin: 0 0 10px; color: var(--cv-text);
  text-shadow: 0 0 24px rgba(230,235,240,.5);
}
.cv-title span { color: var(--cv-gold); font-style: italic; }

.cv-subtitle { font-size: 15px; color: var(--cv-text-dim); margin: 0 0 26px; max-width: 320px; line-height: 1.55; }

.cv-btn {
  font-family: 'Bodoni Moda', serif; font-weight: 700;
  background: linear-gradient(180deg, var(--cv-gold-bright), var(--cv-gold));
  color: #3a0f1f; border: none; border-radius: 10px;
  padding: 14px 36px; font-size: 16px; letter-spacing: .04em; cursor: pointer;
  box-shadow: 0 0 20px rgba(230,235,240,.35), 0 6px 0 #4a5058, 0 10px 20px rgba(0,0,0,.4);
}
.cv-btn:active { transform: translateY(3px); box-shadow: 0 0 14px rgba(230,235,240,.3), 0 3px 0 #4a5058; }

.cv-score-line { display: flex; gap: 30px; margin: 6px 0 24px; }
.cv-score-block { display: flex; flex-direction: column; align-items: center; }
.cv-score-block .cv-hud-label { font-size: 11px; }
.cv-score-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 28px; color: var(--cv-gold); }

.cv-controls-hint { margin-top: 20px; font-size: 12px; color: var(--cv-text-dim); max-width: 300px; line-height: 1.5; }

.cv-audio-warning {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(12px);
  display: none; align-items: center; gap: 12px;
  background: rgba(20,14,4,.92); border: 1px solid rgba(230,235,240,.4);
  border-radius: 10px; padding: 10px 16px; font-size: 13px; color: var(--cv-text);
  z-index: 7; opacity: 0; transition: opacity .25s ease, transform .25s ease; pointer-events: none;
}
.cv-audio-warning.cv-visible { display: flex; opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.cv-audio-warning button { background: #7a3d5e; color: #fff0f7; border: none; border-radius: 6px; padding: 6px 12px; font-weight: 700; font-size: 12px; cursor: pointer; }

@media (max-width: 480px) {
  .cv-btn { padding: 12px 30px; font-size: 15px; }
  .cv-hud-value { font-size: 17px; }
}
