:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --warn-color: #f97316;
}

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

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#screen-container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.warning-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--warn-color);
    letter-spacing: -3px;
    line-height: 1;
}

.warning-text {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0.8;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-btn {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    font-weight: 900;
    font-size: 1.2rem;
    border: 4px solid #fff;
    transition: all 0.2s;
}

.safety-btn:hover {
    background: transparent;
    color: #fff;
}

.continue-link {
    background: transparent;
    border: none;
    color: var(--text-color);
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.continue-link:hover {
    opacity: 1;
}

.final-text {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.5;
    animation: slowFade 5s forwards;
}

.hidden { display: none !important; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slowFade {
    0% { opacity: 0; }
    100% { opacity: 0.5; }
}

.glitch {
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}
