/* mystery.boo */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1a1410; color: #e0d4c0; font-family: 'Lora', serif; font-weight: 400; line-height: 1.85; }
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; }
.candle-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle at center, rgba(212,160,64,0.1) 0%, transparent 60%); pointer-events: none; }
.candle-glow.small { width: 100px; height: 100px; }
.hero-content { text-align: center; position: relative; z-index: 1; }
.brand { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.5rem); }
.entry-label { font-family: 'Fira Code', monospace; font-size: 0.5rem; color: #8b6f47; display: block; margin-top: 0.5rem; }
.tagline { font-size: 1.2rem; color: #d4a040; margin-top: 0.5rem; }
.candle-divider { height: 80px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at center, rgba(212,160,64,0.06) 0%, transparent 50%); }
.tales { max-width: 520px; margin: 0 auto; padding: 0 2rem; }
.story-panel { background: #221a14; padding: 2.5rem; border-radius: 4px; }
.story-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 0.75rem; color: #d4a040; }
.story-text { font-size: 0.85rem; color: #b0a490; }
.darkness { min-height: 40vh; display: flex; align-items: center; justify-content: center; position: relative; }
.whisper { text-align: center; padding: 3rem 2rem; }
.whisper-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.45rem; color: #3a3028; letter-spacing: 0.2em; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
