@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    --primary: #020617;
    --accent: #ef4444; /* Vivid Red */
    --accent-glow: rgba(239, 68, 68, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --iridescent: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.2) 100%);
    --text-primary: #f8fafc;
    --text-secondary: #00CCFF; /* CMYK(100, 20, 0, 0) approx */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-primary);
    margin: 0;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.futuristic-label {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--accent);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-image: var(--iridescent) 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-5px);
}

.premium-gradient {
    background: radial-gradient(circle at top right, rgba(30, 41, 59, 0.5), transparent),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.8), var(--primary));
}

.btn-elite {
    @apply px-10 py-5 rounded-sm font-black transition-all duration-700 relative overflow-hidden;
    background: #000;
    border: 1px solid var(--accent);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-elite::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-elite:hover::before {
    left: 100%;
}

.btn-elite:hover {
    background: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.text-shimmer {
    background: linear-gradient(90deg, #fff, #64748b, #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s infinite linear;
}
