/* YallaTonight Global Stylesheet */
:root {
    --bg: #050505;
    --surface: #121212;
    --primary: #00f2fe;
    --secondary: #4facfe;
    --text: #ffffff;
    --text-muted: #a1a1aa;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Utilities */
a { transition: color 0.3s; }
img { max-width: 100%; }
* { box-sizing: border-box; }
