@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Teko:ital,wght@0,400;1,700&display=swap');

:root {
    /* Global Colors */
    --bg-root: #020204;
    --text-white: #ffffff;
    
    /* Team Colors */
    --red-500: #ef4444;
    --blue-500: #3b82f6;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-mono: monospace;
    --font-display: 'Teko', sans-serif;
    --font-card-ui: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', 'Source Han Sans SC', 'Inter', sans-serif;
}

body { margin: 0; padding: 0; background: transparent; font-family: var(--font-sans); color: white; overflow: hidden; height: 100vh; width: 100vw; }
body.green-mode { background: #00ff00 !important; }

/* Utility */
.hidden { display: none !important; }
