:root {
    --bg: #05050a;
    --text: #ffffff;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Readex Pro', -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    position: relative;
}

/* Festive Background Animated Lights */
.bg-lights {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    animation: festivePulse 6s ease-in-out infinite alternate;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    top: -100px;
    left: 20%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pink), transparent);
    bottom: -120px;
    right: 15%;
    animation-delay: -2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    top: 30%;
    right: 35%;
    animation-delay: -4s;
}

@keyframes festivePulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    50% { transform: scale(1.25) translate(30px, -20px); opacity: 0.7; }
    100% { transform: scale(0.9) translate(-20px, 40px); opacity: 0.5; }
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.typewriter-box {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
    min-height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 80px rgba(6, 182, 212, 0.3);
}

.cursor {
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
    color: var(--accent-purple);
    font-weight: 400;
    text-shadow: 0 0 20px var(--accent-purple);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .typewriter-box {
        font-size: 2.1rem;
    }
}
