:root {
    --bg-color: #1a1a2e;
    --text-color: #4dcce6;
    --accent-color: #8b5a2b;
    --card-bg: #16213e;
    --font-main: 'Press Start 2P', cursive;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--text-color);
    text-transform: uppercase;
}

.scene {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.content { max-width: 800px; }

.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border: 4px solid var(--text-color);
    border-radius: 15px;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
    text-align: left;
    text-align: center;
}

.highlight-danger { border-color: #e94560; color: #e94560; }
.highlight-danger h3 { color: #e94560; }

.highlight-bro { border-color: #f6e58d; }
.highlight-bro h3 { color: #f6e58d; }

.highlight-funny { border-color: #badc58; }
.highlight-funny h3 { color: #badc58; }

.hidden-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.hidden-scale {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.steam-box {
    margin-top: 40px;
    padding: 30px;
    border: 4px dashed #badc58;
    background-color: #222;
    border-radius: 10px;
}

.blurred {
    filter: blur(8px);
    transition: filter 0.5s ease;
    display: block;
    font-size: 1.5rem;
    color: #badc58;
    margin-bottom: 20px;
}

.unblurred { filter: blur(0); }

button, .bonus-btn {
    font-family: var(--font-main);
    background-color: var(--text-color);
    color: #1a1a2e;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
}

button:hover, .bonus-btn:hover {
    transform: scale(1.1);
    background-color: #fff;
}

.bonus-btn {
    background-color: #e94560;
    color: #fff;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: #333;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    border: 2px dashed #666;
    font-size: 0.8rem;
}

.memory-img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #fff;
}