body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #020203;
    background-image: 
        radial-gradient(circle at 50% -10%, #0c1a2b 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, #050a10 0%, transparent 40%);
    background-attachment: fixed;
    margin: 0;
    color: white;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.glass-nav {
    background: rgba(2, 2, 3, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 40%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(6, 182, 212, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.loading-container {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #020203;
    z-index: 9999;
}

.onyx-spinner {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(6, 182, 212, 0.05);
    border-top: 2px solid #06b6d4;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.onyx-spinner-sm {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.loading-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: #06b6d4;
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020203;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1c;
    border-radius: 10px;
    border: 2px solid #020203;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a2a2c;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.animate-in {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}