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

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

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

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

.glow-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #7b00ff 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: pulse2 10s ease-in-out infinite;
}

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

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

/* Decorative silhouettes */
.silhouette {
    position: fixed;
    font-size: 4rem;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(100%);
}

.silhouette-1 {
    bottom: 10%;
    right: 5%;
    animation: sway1 6s ease-in-out infinite;
}

.silhouette-2 {
    top: 20%;
    left: 3%;
    font-size: 3rem;
    animation: sway2 8s ease-in-out infinite;
}

.silhouette-3 {
    bottom: 30%;
    left: 5%;
    font-size: 3.5rem;
    animation: sway1 7s ease-in-out infinite reverse;
}

@keyframes sway1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes sway2 {
    0%, 100% { transform: translateX(0) rotate(5deg); }
    50% { transform: translateX(10px) rotate(-5deg); }
}

.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: 500px;
    width: 100%;
    text-align: center;
}

/* Age Gate - Mobile First */
.warning-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #ff0055;
    text-shadow: 0 0 40px rgba(255, 0, 85, 0.8);
    margin-bottom: 15px;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 40px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 60px rgba(255, 0, 85, 1); }
}

#age-gate h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 15px;
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #7b00ff;
    letter-spacing: 4px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.warning {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #ff0055;
    font-weight: 600;
    line-height: 1.4;
}

.subtext {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 0 10px;
}

.subtext.small {
    font-size: 0.75rem;
    margin-top: 15px;
}

.secret-hint {
    color: #ff0055;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.btn {
    padding: 16px 35px;
    font-size: 0.9rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.btn-enter {
    background: linear-gradient(135deg, #ff0055 0%, #ff006a 50%, #d4004a 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.4);
}

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

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

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

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

.gender-tease {
    color: #ff0055;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.gender-btn {
    width: 130px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gender-icon {
    font-size: 2.8rem;
    transition: all 0.3s ease;
}

.gender-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gender-btn.female {
    color: #ff0055;
}

.gender-btn.female:active {
    border-color: #ff0055;
    background: rgba(255, 0, 85, 0.15);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.3);
}

.gender-btn.male {
    color: #00a8ff;
}

.gender-btn.male:active {
    border-color: #00a8ff;
    background: rgba(0, 168, 255, 0.15);
    box-shadow: 0 0 40px rgba(0, 168, 255, 0.3);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 5px;
    background: #1a1a1a;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff0055, #ff006a, #7b00ff);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #ff0055;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.counter {
    color: #555;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Questions - Mobile First */
.question {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
    padding: 0 5px;
}

.tease-hint {
    color: #ff0055;
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.9;
    min-height: 1.2em;
}

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

.back-btn {
    margin-top: 25px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #333;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

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

.option-btn {
    padding: 18px 20px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.08) 0%, rgba(123, 0, 255, 0.08) 100%);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-weight: 500;
}

.option-btn:active {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.25) 0%, rgba(123, 0, 255, 0.2) 100%);
    border-color: rgba(255, 0, 85, 0.5);
    transform: scale(0.98);
}

/* Results - Mobile First */
#result h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.freak-meter {
    width: 100%;
    height: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    margin: 15px 0 30px;
    overflow: hidden;
    border: 1px solid #222;
}

.freak-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #ffcc00, #ff6600, #ff0055, #7b00ff);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff0055, #7b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.title {
    font-size: 1.2rem;
    color: #ff0055;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(255, 0, 85, 0.5);
}

.freak-comment {
    font-size: 0.95rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 10px;
}

.btn-restart {
    background: linear-gradient(135deg, #7b00ff 0%, #5c00b8 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(123, 0, 255, 0.3);
}

.btn-restart:active {
    transform: scale(0.98);
}

/* ================================
   TABLET & DESKTOP (min-width)
   ================================ */

@media (max-width: 479px) {
    .silhouette {
        display: none;
    }
}

@media (min-width: 480px) {
    body {
        font-size: 15px;
    }

    .silhouette {
        font-size: 5rem;
        opacity: 0.12;
    }

    .container {
        max-width: 550px;
    }

    .warning-icon {
        font-size: 4.5rem;
    }

    #age-gate h1 {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .warning {
        font-size: 1.2rem;
    }

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

    .btn {
        width: auto;
        padding: 18px 45px;
    }

    .gender-btn {
        width: 160px;
        height: 180px;
    }

    .gender-icon {
        font-size: 3.5rem;
    }

    .question {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    .option-btn {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .score {
        font-size: 4.5rem;
    }

    .title {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .silhouette {
        font-size: 6rem;
        opacity: 0.15;
    }

    .silhouette-1 {
        right: 8%;
    }

    .silhouette-2 {
        font-size: 5rem;
    }

    .silhouette-3 {
        font-size: 5.5rem;
        left: 8%;
    }

    .container {
        max-width: 600px;
    }

    .glow-1 {
        width: 500px;
        height: 500px;
        opacity: 0.4;
    }

    .glow-2 {
        width: 400px;
        height: 400px;
        opacity: 0.35;
    }

    .warning-icon {
        font-size: 5rem;
    }

    #age-gate h1 {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }

    .btn:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .btn-enter:hover {
        box-shadow: 0 15px 50px rgba(255, 0, 85, 0.6);
    }

    .gender-btn:hover {
        transform: scale(1.05);
    }

    .gender-btn.female:hover {
        border-color: #ff0055;
        background: rgba(255, 0, 85, 0.15);
        box-shadow: 0 0 50px rgba(255, 0, 85, 0.3);
    }

    .gender-btn.female:hover .gender-icon {
        text-shadow: 0 0 30px rgba(255, 0, 85, 0.8);
    }

    .gender-btn.male:hover {
        border-color: #00a8ff;
        background: rgba(0, 168, 255, 0.15);
        box-shadow: 0 0 50px rgba(0, 168, 255, 0.3);
    }

    .gender-btn.male:hover .gender-icon {
        text-shadow: 0 0 30px rgba(0, 168, 255, 0.8);
    }

    .option-btn:hover {
        background: linear-gradient(135deg, rgba(255, 0, 85, 0.25) 0%, rgba(123, 0, 255, 0.2) 100%);
        border-color: rgba(255, 0, 85, 0.5);
        transform: translateX(10px);
        box-shadow: 0 5px 30px rgba(255, 0, 85, 0.2);
    }

    .question {
        font-size: 1.5rem;
    }

    .score {
        font-size: 5rem;
    }

    .btn-restart:hover {
        box-shadow: 0 15px 50px rgba(123, 0, 255, 0.5);
    }
}
