:root {
    --bg: #0a0a0a;
    --text: #d4d4d4;
    --accent-red: #8b0000;
    --muted: #333;
    --gold: #af9500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4vmax 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(2rem, 8vw, 5rem);
    letter-spacing: -2px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero {
    margin: 2rem 0;
}

.face {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    box-shadow: 0 0 100px rgba(0,0,0,1);
}

.quote-section {
    max-width: 600px;
    margin: 2rem auto;
}

.quote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text);
}

.attribution {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.choice-separator {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #444;
    user-select: none;
}

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    display: inline-block;
}

.btn-remain {
    color: #555;
    font-size: 0.9rem;
    border: 1px solid #222;
}

.btn-remain:hover {
    color: #666;
    border-color: #333;
}

.btn-dare {
    color: var(--accent-red);
    font-size: 1.1rem;
    border: 1px solid var(--accent-red);
}

.btn-dare:hover {
    background: var(--accent-red);
    color: white;
}

footer {
    padding: 2rem 0;
}

.latin {
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.fade-in {
    animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .choices {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .choice-separator {
        padding: 0.5rem 0;
    }
}
