:root {
    --bg-deep: #0a0a14;
    --bg-surface: #12121f;
    --bg-card: #1a1a2e;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff006e;
    --accent-green: #00ff88;
    --accent-yellow: #ffd600;
    --accent-purple: #b44dff;
    --accent-red: #ff3355;
    --accent-gray: #666688;
    --text-primary: #e8e8f0;
    --text-secondary: #8888aa;
}

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

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Bricolage Grotesque', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(0,212,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(255,0,110,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#root {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px currentColor); }
    50% { opacity: 0.6; filter: drop-shadow(0 0 12px currentColor); }
}

@keyframes slide-in-right {
    from { transform: translateX(80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce-emoji {
    0% { transform: scale(0.3) rotate(-20deg); opacity: 0; }
    50% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.2); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,0.5); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.glass-bubble {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
}

.scan-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.08) 2px,
        rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.scan-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,212,255,0.07), transparent);
    animation: scan-line 4s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.vignette {
    box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
}

.mood-impressed { border-left: 3px solid var(--accent-green); }
.mood-amused { border-left: 3px solid var(--accent-yellow); }
.mood-horrified { border-left: 3px solid var(--accent-red); }
.mood-bored { border-left: 3px solid var(--accent-gray); }
.mood-confused { border-left: 3px solid var(--accent-purple); }

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}