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

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    font-size: 14px;
}

/* Animated background - red glow */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8B0000 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: pulse1 10s ease-in-out infinite;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #4a0000 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: pulse2 12s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.3; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.4); opacity: 0.25; }
}

.screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 25px 20px;
}

/* Age Gate */
.warning-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #8B0000;
    text-shadow: 0 0 50px rgba(139, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

#age-gate h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #8B0000;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.warning {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #cc0000;
    font-weight: 600;
    line-height: 1.5;
}

.secret-hint {
    color: #666;
    font-size: 0.85rem;
    margin-top: 20px;
    margin-bottom: 15px;
    font-style: normal;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.btn {
    padding: 18px 40px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 100%;
}

.btn-enter {
    background: #8B0000;
    color: white;
    border: 2px solid #8B0000;
}

.btn-enter:active {
    background: #660000;
    transform: scale(0.98);
}

.btn-leave {
    background: transparent;
    color: #333;
    border: 1px solid #222;
}

/* Gender Selection */
#gender-select h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gender-question {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gender-tease {
    color: #8B0000;
    font-size: 0.8rem;
    margin-bottom: 35px;
}

.gender-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.gender-btn {
    width: 140px;
    height: 160px;
    border: 2px solid #222;
    background: #0a0a0a;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gender-icon {
    font-size: 3rem;
    transition: all 0.2s ease;
}

.gender-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gender-btn.female {
    color: #8B0000;
}

.gender-btn.female:active {
    border-color: #8B0000;
    background: rgba(139, 0, 0, 0.1);
}

.gender-btn.male {
    color: #444;
}

.gender-btn.male:active {
    border-color: #444;
    background: rgba(68, 68, 68, 0.1);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 3px;
    background: #111;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #8B0000;
    width: 0%;
    transition: width 0.3s ease;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: #8B0000;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.counter {
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
}

/* Questions */
.question {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
    padding: 0 5px;
    color: #fff;
}

.tease-hint {
    color: #8B0000;
    font-size: 0.75rem;
    margin-bottom: 30px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.back-btn {
    margin-top: 30px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #222;
    color: #444;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.back-btn:active {
    border-color: #8B0000;
    color: #8B0000;
}

.option-btn {
    padding: 16px 20px;
    font-size: 0.9rem;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-left: 3px solid #8B0000;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-weight: 500;
}

.option-btn:active {
    background: rgba(139, 0, 0, 0.1);
    border-color: #8B0000;
    color: #fff;
    transform: scale(0.98);
}

/* Results */
#result h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.freak-meter {
    width: 100%;
    height: 6px;
    background: #111;
    margin: 20px 0 35px;
    overflow: hidden;
}

.freak-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a0000, #8B0000, #cc0000);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #8B0000;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.title {
    font-size: 1rem;
    color: #cc0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.freak-comment {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 0 10px;
}

.btn-restart {
    background: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.btn-restart:active {
    background: #8B0000;
    color: #fff;
    transform: scale(0.98);
}

.btn-share {
    background: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
    margin-top: 15px;
}

.btn-share:active {
    background: #660000;
    transform: scale(0.98);
}

/* Tablet & Desktop */
@media (min-width: 480px) {
    body { font-size: 15px; }
    .container { max-width: 520px; }
    .warning-icon { font-size: 5rem; }
    #age-gate h1 { font-size: 3rem; letter-spacing: 8px; }
    .age-buttons { flex-direction: row; justify-content: center; gap: 20px; }
    .btn { width: auto; padding: 18px 50px; }
    .gender-btn { width: 160px; height: 180px; }
    .gender-icon { font-size: 3.5rem; }
    .question { font-size: 1.3rem; }
    .option-btn { padding: 18px 25px; font-size: 0.95rem; }
    .score { font-size: 5rem; }
}

@media (min-width: 768px) {
    body { font-size: 16px; }
    .container { max-width: 580px; }
    #age-gate h1 { font-size: 3.5rem; }

    .btn:hover { opacity: 0.9; }
    .btn-enter:hover { background: #aa0000; border-color: #aa0000; }

    .gender-btn:hover { border-color: #333; }
    .gender-btn.female:hover { border-color: #8B0000; background: rgba(139, 0, 0, 0.05); }
    .gender-btn.male:hover { border-color: #444; background: rgba(68, 68, 68, 0.05); }

    .option-btn:hover {
        background: rgba(139, 0, 0, 0.08);
        border-color: #8B0000;
        color: #fff;
        transform: translateX(5px);
    }

    .question { font-size: 1.4rem; }
    .score { font-size: 5.5rem; }
    .btn-restart:hover { background: #8B0000; color: #fff; }
}
