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

html, body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Georgia', serif;
    min-height: 100vh;
}

#container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

#header {
    text-align: center;
    margin-bottom: 40px;
}

#header h1 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #888;
}

/* Intro */
#intro {
    text-align: center;
    padding: 60px 20px;
}

#intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 40px;
}

#intro-text p {
    margin-bottom: 1em;
}

#begin-btn {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 12px 40px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#begin-btn:hover {
    border-color: #666;
    color: #ccc;
}

/* Choice area */
#choice-area {
    display: none;
    padding: 40px 20px;
    text-align: center;
}

#scenario {
    font-size: 1.15rem;
    color: #bbb;
    margin-bottom: 50px;
    line-height: 1.7;
    min-height: 60px;
}

#choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Choice buttons */
.choice {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    position: relative;
}

.choice:hover {
    border-color: #555;
    color: #ccc;
}

/* Default choice styling - the pull */
.choice.default {
    transform: scale(1.08);
    border-color: #664444;
    color: #ccc;
    background: #151515;
    box-shadow: 0 0 20px rgba(102, 68, 68, 0.15);
}

.choice.default::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 4px;
    background: linear-gradient(45deg, transparent, rgba(102, 68, 68, 0.1), transparent);
    pointer-events: none;
}

.choice.default:hover {
    border-color: #885555;
    background: #1a1a1a;
    box-shadow: 0 0 25px rgba(102, 68, 68, 0.25);
}

/* Non-default choices - resistance feels harder */
.choice.non-default {
    transform: scale(0.92);
    opacity: 0.65;
    border-color: #282828;
    color: #666;
}

.choice.non-default:hover {
    opacity: 0.8;
    border-color: #333;
    color: #888;
}

/* Progressive intensity levels */
.choice.intensity-1.default { transform: scale(1.05); }
.choice.intensity-2.default { transform: scale(1.08); }
.choice.intensity-3.default { transform: scale(1.12); border-color: #774444; }
.choice.intensity-4.default { transform: scale(1.18); border-color: #885555; box-shadow: 0 0 30px rgba(136, 85, 85, 0.25); }

.choice.intensity-3.non-default { transform: scale(0.88); opacity: 0.55; }
.choice.intensity-4.non-default { transform: scale(0.82); opacity: 0.45; font-size: 0.9rem; }

/* Click feedback */
.choice.clicked-default {
    animation: satisfying-click 0.3s ease;
}

@keyframes satisfying-click {
    0% { transform: scale(1.08); }
    50% { transform: scale(1.02); background: #1d1515; }
    100% { transform: scale(1.08); }
}

.choice.clicked-non-default {
    animation: reluctant-click 0.4s ease;
}

@keyframes reluctant-click {
    0% { transform: scale(0.92); }
    30% { transform: scale(0.90); }
    60% { transform: scale(0.88); opacity: 0.5; }
    100% { transform: scale(0.92); }
}

/* Reveal */
#reveal {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

#reveal-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #888;
    max-width: 550px;
    margin: 0 auto 30px;
}

#reveal-text p {
    margin-bottom: 1.2em;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#choice-history {
    margin: 40px auto;
    max-width: 500px;
}

.history-item {
    padding: 12px 20px;
    margin-bottom: 8px;
    background: #111;
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-item .question {
    font-size: 0.85rem;
    color: #666;
    flex: 1;
}

.history-item .answer {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 2px;
}

.history-item .answer.default {
    background: rgba(102, 68, 68, 0.2);
    color: #aa8888;
}

.history-item .answer.non-default {
    background: rgba(68, 102, 102, 0.2);
    color: #88aaaa;
}

#reflection {
    font-size: 1rem;
    line-height: 2;
    color: #999;
    max-width: 550px;
    margin: 40px auto;
}

#reflection p {
    margin-bottom: 1.5em;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

#restart-btn {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    padding: 10px 30px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 4s;
}

#restart-btn:hover {
    border-color: #555;
    color: #999;
}

/* Mobile */
@media (max-width: 600px) {
    #container {
        padding: 20px 15px;
    }

    #header h1 {
        font-size: 1.5rem;
    }

    .choice {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    #scenario {
        font-size: 1.05rem;
    }
}
