:root {
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --bg-dark: #020617;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #f8fafc;
    overflow-x: hidden;
    min-height: 100vh;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.scanline {
    width: 100%;
    height: 2px;
    z-index: 10;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.2), transparent);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { bottom: 100%; }
    100% { bottom: 0%; }
}

.terminal-text {
    font-family: 'JetBrains Mono', monospace;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealAnim 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealAnim {
    to { opacity: 1; transform: translateY(0); }
}

.countdown-item {
    position: relative;
}
.countdown-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.countdown-item:hover::after {
    width: 100%;
}