/* =========================================================================
   GK Digital Universe - Global Design System (Fixed Version)
   ========================================================================= */

:root {
    --bg-slate-950: #020617;
    --card-bg: #121826;
    --neon-cyan: #00f3ff;
    --neon-purple: #b026ff;
    --text-primary: #ffffff;
    --text-muted: #94a3b8;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-slate-950);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* एनीमेशन इंजन */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

.skeleton {
    background: linear-gradient(90deg, #121826 25%, #1a2333 50%, #121826 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

/* निऑन यूटिलिटी */
.neon-text-purple { color: var(--neon-purple); text-shadow: 0 0 10px rgba(176, 38, 255, 0.6); }
.neon-text-cyan { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0, 243, 255, 0.6); }

/* स्क्रॉलबार */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-slate-950); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 10px; }
