/* Mystery Theme - Gatsby / Noir Style */

body {
    background-color: #0a0a0a !important; /* Obsidian */
}

/* Typography */
h1, h2, h3, h4, .section-title {
    font-family: 'Playfair Display', serif;
    color: #fbf5d5; /* Gold 100 */
}

/* Overlays for atmosphere */
.vignette-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 40;
    background: radial-gradient(circle at center, transparent 0%, #000000 120%);
    opacity: 0.8;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Sections */
.section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(234, 179, 8, 0.3); /* Gold line */
    padding-bottom: 0.5rem;
}

.prose {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.prose p {
    margin-bottom: 1rem;
}

/* Choice Buttons */
.choices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .choices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(23, 23, 23, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(234, 179, 8, 0.15); /* Low gold */
    border-radius: 2px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #eab308; /* Gold 400 */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choice-btn:hover {
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(30, 30, 30, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.choice-btn:hover::before {
    opacity: 1;
}

.choice-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fbf5d5;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.choice-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #a3a3a3;
}

/* HUD Panel */
.mystery-hud {
    position: fixed;
    top: 6rem;
    right: 2rem;
    width: 20rem;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hud-panel {
    background-color: rgba(23, 23, 23, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(234, 179, 8, 0.2);
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.hud-title {
    color: #eab308;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.hud-list li {
    font-size: 0.85rem;
    color: #d4d4d8;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.hud-list li::before {
    content: '•';
    color: #eab308;
    position: absolute;
    left: 0;
}

.hud-list li.struck {
    text-decoration: line-through;
    color: #52525b;
}

.hud-list li strong {
    color: #fcd34d;
}