/* Sorteerhoed — Magisch perkament thema */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=IM+Fell+English:ital@0;1&family=Pinyon+Script&display=swap');

:root {
  --ink: #2a1a08;
  --ink-soft: #4a3520;
  --ink-faded: rgba(42, 26, 8, 0.65);
  --ink-ghost: rgba(42, 26, 8, 0.4);
  --parchment: #f1e3bf;
  --parchment-light: #f7ecc9;
  --parchment-dark: #d8c391;
  --parchment-shadow: #b89c5e;
  --gold: #b8862a;
  --gold-bright: #d4a24a;
  --wax: #7a0e1a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: 'EB Garamond', 'IM Fell English', Georgia, serif;
  color: var(--ink);
  background: #1a1208;
}

#root, .app {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

button { font-family: inherit; color: inherit; }

/* === Achtergrond === */

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, #2d1f0c 0%, #15100a 60%, #0a0704 100%),
    #0a0704;
  pointer-events: none;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.bg-stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #f4d68a;
  border-radius: 50%;
  box-shadow: 0 0 4px #f4c95d;
  opacity: 0.6;
  animation: twinkle 3.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

/* === Schermen === */

.screen {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: screen-in 0.7s cubic-bezier(.2,.7,.2,1);
}
@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Perkament frame === */

.parchment-frame {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,0.4) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 90%, rgba(0,0,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(184, 134, 42, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 30% 70%, rgba(184, 134, 42, 0.1) 0%, transparent 25%),
    linear-gradient(135deg, var(--parchment-light) 0%, var(--parchment) 50%, var(--parchment-dark) 100%);
  border: 1px solid rgba(122, 90, 50, 0.4);
  padding: 56px 64px 48px;
  max-width: 720px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(122, 90, 50, 0.2),
    inset 0 0 60px rgba(184, 134, 42, 0.18),
    inset 0 0 120px rgba(122, 90, 50, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.4);
  /* Torn / aged edges */
  clip-path: polygon(
    0% 2%, 3% 0%, 8% 1%, 14% 0%, 22% 1%, 30% 0%, 40% 1%, 50% 0%,
    60% 1%, 70% 0%, 78% 1%, 86% 0%, 92% 1%, 97% 0%, 100% 2%,
    99% 8%, 100% 15%, 99% 25%, 100% 35%, 99% 45%, 100% 55%,
    99% 65%, 100% 75%, 99% 85%, 100% 92%, 99% 98%,
    97% 100%, 92% 99%, 86% 100%, 78% 99%, 70% 100%, 60% 99%,
    50% 100%, 40% 99%, 30% 100%, 22% 99%, 14% 100%, 8% 99%, 3% 100%, 0% 98%,
    1% 92%, 0% 85%, 1% 75%, 0% 65%, 1% 55%, 0% 45%, 1% 35%, 0% 25%, 1% 15%, 0% 8%
  );
}

.parchment-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px double rgba(122, 90, 50, 0.5);
  pointer-events: none;
}

.parchment-frame::after {
  /* paper texture noise via SVG fractalNoise */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(122,90,50,0.12) 0px, transparent 2px),
    radial-gradient(circle at 75% 65%, rgba(122,90,50,0.1) 0px, transparent 3px),
    radial-gradient(circle at 45% 85%, rgba(122,90,50,0.08) 0px, transparent 2px),
    radial-gradient(circle at 90% 15%, rgba(122,90,50,0.1) 0px, transparent 3px);
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.ornament {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.6em;
  margin: 0 0 8px;
  text-shadow: 0 0 8px rgba(184, 134, 42, 0.3);
}
.ornament.bottom { margin: 24px 0 0; }

/* === Welcome === */

.welcome .title-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.15);
  line-height: 1;
}

.subtitle-italic {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.welcome-hat {
  margin: 8px auto 8px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  animation: hat-idle 4s ease-in-out infinite;
}
@keyframes hat-idle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.welcome-intro {
  font-family: 'IM Fell English', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 18px auto 28px;
  max-width: 540px;
}
.welcome-intro .dim { color: var(--ink-faded); font-style: italic; }

.name-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.name-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faded);
}

.name-input {
  font-family: 'IM Fell English', 'EB Garamond', serif;
  font-style: italic;
  font-size: 28px;
  text-align: center;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink-soft);
  color: var(--ink);
  width: min(400px, 90%);
  padding: 6px 8px 4px;
  outline: none;
  caret-color: var(--wax);
}
.name-input::placeholder { color: var(--ink-ghost); }
.name-input:focus { border-bottom-color: var(--wax); }

.btn-quill {
  margin-top: 12px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #3a2510 0%, #1f1408 100%);
  color: var(--parchment-light);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 6px 18px rgba(0,0,0,0.4);
}
.btn-quill:hover:not(:disabled) {
  background: linear-gradient(180deg, #4a2f15 0%, #2f1f0c 100%);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-quill:active:not(:disabled) { transform: translateY(1px); }
.btn-quill:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn-arrow {
  font-size: 16px;
  transition: transform 0.25s;
}
.btn-quill:hover:not(:disabled) .btn-arrow { transform: translateX(4px); }
.btn-restart:hover:not(:disabled) .btn-arrow { transform: translateX(-4px); }

/* === Vraag scherm === */

.question-frame {
  max-width: 820px;
  padding: 40px 56px 44px;
}

.q-progress {
  margin-bottom: 8px;
}
.q-progress-text {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 8px;
}
.q-progress-bar {
  height: 2px;
  background: rgba(122, 90, 50, 0.2);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.q-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.5s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 8px var(--gold-bright);
}

.q-hat {
  margin: 16px auto 4px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4));
  animation: hat-bob 2.5s ease-in-out infinite;
}
@keyframes hat-bob {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.q-text {
  font-family: 'IM Fell English', 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  margin: 16px auto 28px;
  max-width: 620px;
  text-wrap: balance;
}
.q-quote {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.6em;
  color: var(--wax);
  vertical-align: -0.15em;
  margin: 0 4px;
}

.q-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}
.q-choices.q-dilemma { gap: 14px; }

.choice {
  appearance: none;
  background: rgba(255, 248, 220, 0.5);
  border: 1px solid rgba(122, 90, 50, 0.35);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.choice:hover:not(:disabled) {
  background: rgba(255, 248, 220, 0.85);
  border-color: var(--gold);
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(122, 90, 50, 0.18);
}
.choice.picked {
  background: linear-gradient(90deg, rgba(212, 162, 74, 0.4), rgba(255, 248, 220, 0.7));
  border-color: var(--gold-bright);
  transform: translateX(6px);
  box-shadow: 0 0 24px rgba(212, 162, 74, 0.5);
}
.choice.fade {
  opacity: 0.25;
  transform: translateX(-6px);
}

.q-dilemma .choice {
  padding: 22px 24px;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  justify-content: center;
}
.q-dilemma .choice .choice-marker { display: none; }

.choice-marker {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--parchment-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.choice-label { flex: 1; line-height: 1.4; }

/* === Thinking screen === */

.thinking {
  background: radial-gradient(ellipse at 50% 50%, #1a1208 0%, #050300 100%);
}

.thinking-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.thinking-hat {
  filter: drop-shadow(0 0 40px rgba(244, 201, 93, 0.3)) drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.thinking-hat.phase-0 { animation: hat-arrive 0.8s cubic-bezier(.2,.7,.2,1) both; }
.thinking-hat.phase-1 { animation: hat-think 3s ease-in-out infinite; }
.thinking-hat.phase-2 { animation: hat-decided 0.8s cubic-bezier(.2,.7,.2,1) both; }

@keyframes hat-arrive {
  from { opacity: 0; transform: scale(0.6) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes hat-think {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  25% { transform: rotate(2deg) translateY(-4px); }
  50% { transform: rotate(-1deg) translateY(2px); }
  75% { transform: rotate(3deg) translateY(-2px); }
}
@keyframes hat-decided {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 60px rgba(244, 201, 93, 0.7)); }
  100% { transform: scale(1); }
}

.mutter-stack {
  position: relative;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mutter {
  position: absolute;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--parchment);
  text-shadow: 0 0 16px rgba(244, 201, 93, 0.4), 0 2px 6px rgba(0,0,0,0.6);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  text-wrap: balance;
  text-align: center;
}
.mutter-active {
  opacity: 1;
  transform: translateY(0);
}
.mutter-past {
  opacity: 0;
  transform: translateY(-12px);
}
.mutter-final {
  opacity: 1;
  color: var(--gold-bright);
  font-style: normal;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 24px);
  animation: final-glow 1s ease-out;
}
@keyframes final-glow {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.sparks {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 3px; height: 3px;
  background: #f4c95d;
  border-radius: 50%;
  box-shadow: 0 0 8px #f4c95d, 0 0 16px rgba(244, 201, 93, 0.5);
  animation: spark-rise 4s ease-in infinite;
  bottom: 20%;
  opacity: 0;
}
@keyframes spark-rise {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-300px) scale(1.2); opacity: 0; }
}

/* === Reveal === */

.reveal {
  background: radial-gradient(ellipse at 50% 50%, var(--hp) 0%, var(--hpd) 60%, #050300 100%);
  align-items: stretch;
  padding: 0;
}

.reveal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.reveal-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(0,0,0,0.7) 100%);
}
.reveal-rays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: rays-in 1.5s ease-out 0.6s both, rays-spin 60s linear infinite;
}
.ray {
  position: absolute;
  width: 4px;
  height: 100vh;
  background: linear-gradient(180deg, transparent 0%, var(--hab) 50%, transparent 100%);
  transform-origin: center;
  opacity: 0.15;
  filter: blur(2px);
}
@keyframes rays-in {
  to { opacity: 1; }
}
@keyframes rays-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.conf {
  position: absolute;
  top: -20px;
  width: 6px;
  height: 12px;
  border-radius: 1px;
  animation: conf-fall linear infinite;
  opacity: 0;
}
.reveal-phase-2 .conf,
.reveal-phase-3 .conf { opacity: 1; }
@keyframes conf-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.5; }
}

.candles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  padding: 0 5% 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: candles-in 1s ease-out 0.4s forwards;
}
@keyframes candles-in {
  to { opacity: 1; }
}
.candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.candle-stick {
  width: 6px;
  height: 60px;
  background: linear-gradient(180deg, #f1e3bf 0%, #d8c391 100%);
  border-radius: 1px;
  box-shadow: inset -1px 0 0 rgba(0,0,0,0.2);
}
.flame {
  width: 10px;
  height: 18px;
  background: radial-gradient(ellipse at 50% 70%, var(--flame-color) 0%, #ff8a3c 60%, transparent 100%);
  border-radius: 50% 50% 30% 30%;
  margin-bottom: -2px;
  filter: blur(0.5px);
  animation: flame-flicker 0.6s ease-in-out infinite alternate;
  transform-origin: bottom center;
  box-shadow: 0 0 16px var(--flame-color), 0 0 32px rgba(244, 201, 93, 0.4);
}
@keyframes flame-flicker {
  0% { transform: scaleY(1) rotate(-2deg); opacity: 0.95; }
  100% { transform: scaleY(1.15) rotate(2deg); opacity: 1; }
}
.candle:nth-child(odd) .flame { animation-duration: 0.8s; }
.candle:nth-child(3n) .flame { animation-delay: 0.2s; }

.reveal-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 140px;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.reveal-pre {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  opacity: 0;
  animation: fade-in 0.6s ease-out 0.2s forwards;
}
.pre-name {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  font-size: 32px;
  color: var(--hab);
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
  display: inline-block;
  margin-right: 6px;
}

.house-name {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: clamp(60px, 11vw, 140px);
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
  color: #fff;
  text-shadow:
    0 0 30px var(--hab),
    0 0 60px var(--hab),
    0 4px 12px rgba(0,0,0,0.6);
  opacity: 0;
  transform: scale(0.7);
  animation: name-reveal 1.2s cubic-bezier(.2,.7,.2,1) 0.6s forwards;
  line-height: 1;
}
@keyframes name-reveal {
  0% { opacity: 0; transform: scale(0.5); letter-spacing: 0.5em; }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); letter-spacing: 0.04em; }
}

.reveal-crest {
  margin: 16px 0 12px;
  filter: drop-shadow(0 0 24px var(--hab)) drop-shadow(0 12px 30px rgba(0,0,0,0.5));
  opacity: 0;
  animation: fade-in 0.8s ease-out 1.5s forwards;
}

.house-motto {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--hab);
  letter-spacing: 0.05em;
  margin: 8px 0 24px;
  opacity: 0;
  animation: fade-in 0.8s ease-out 1.8s forwards;
  text-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.reveal-details {
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(.2,.7,.2,1) 0.1s forwards;
  width: 100%;
  max-width: 760px;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { to { opacity: 1; } }

.house-desc {
  font-family: 'EB Garamond', serif;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 28px;
  max-width: 620px;
  text-wrap: pretty;
}

.house-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 720px) {
  .house-meta { grid-template-columns: 1fr; gap: 16px; }
}

.meta-block {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 14px;
  backdrop-filter: blur(6px);
}
.meta-h {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hab);
  margin-bottom: 10px;
}
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.meta-row .dot { color: rgba(255,255,255,0.4); }

.trait-pill, .famous-pill {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.famous-pill { font-style: italic; }

.reveal-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.btn-restart {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.95);
}
.btn-restart:hover:not(:disabled) {
  background: rgba(0,0,0,0.6);
  border-color: var(--hab);
  color: var(--hab);
}

/* Specifieke afdelingsachtergronden — extra textuur per huis */

.reveal-G { background: radial-gradient(ellipse at 50% 50%, #7a0e1a 0%, #3a0810 50%, #1a0408 100%); }
.reveal-R { background: radial-gradient(ellipse at 50% 50%, #0e3a6b 0%, #061f3d 50%, #02101f 100%); }
.reveal-H { background: radial-gradient(ellipse at 50% 50%, #c69417 0%, #6a4f0a 50%, #2a1f04 100%); }
.reveal-Z { background: radial-gradient(ellipse at 50% 50%, #0e4a2a 0%, #062417 50%, #021008 100%); }
