/* mysterious.day */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #2d1018; color: #e8dcc8; font-family: 'Lora', serif; font-weight: 400; line-height: 1.8; }
.hero { padding: 5rem 2rem 3rem; display: flex; justify-content: center; }
.ornate-frame { border: 2px solid #c9a84c; outline: 1px solid #c9a84c; outline-offset: 4px; padding: 3rem; text-align: center; max-width: 500px; position: relative; }
.corner { position: absolute; width: 15px; height: 15px; }
.corner.tl { top: -2px; left: -2px; border-left: 2px solid #c9a84c; border-top: 2px solid #c9a84c; }
.corner.tr { top: -2px; right: -2px; border-right: 2px solid #c9a84c; border-top: 2px solid #c9a84c; }
.corner.bl { bottom: -2px; left: -2px; border-left: 2px solid #c9a84c; border-bottom: 2px solid #c9a84c; }
.corner.br { bottom: -2px; right: -2px; border-right: 2px solid #c9a84c; border-bottom: 2px solid #c9a84c; }
.mystery-num { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #c9a84c; display: block; margin-bottom: 1rem; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); }
.subtitle { font-size: 0.85rem; color: #8a7a60; margin-top: 0.3rem; }
.ornament-divider { text-align: center; padding: 2rem 0; }
.diamond { color: #c9a84c; font-size: 0.7rem; }
.mystery-card { max-width: 520px; margin: 0 auto; padding: 0 2rem; }
.card-frame { background: #3a1a22; border: 2px solid #c9a84c; outline: 1px solid #c9a84c; outline-offset: 4px; padding: 2.5rem; position: relative; }
.card-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 0.75rem; }
.card-text { font-size: 0.85rem; color: #d0c4b0; }
.clues { max-width: 520px; margin: 0 auto; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.clue-card { background: #351520; border: 1px solid #c9a84c; padding: 1.5rem; position: relative; }
.clue-header { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem; color: #c9a84c; margin-bottom: 0.5rem; }
.clue-text { font-size: 0.8rem; color: #b0a490; }
.archive { max-width: 520px; margin: 0 auto; padding: 1rem 2rem 3rem; text-align: center; }
.archive-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.archive-list { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 2rem; }
.archive-entry { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #8a7a60; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.65rem; color: #3a1a22; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
