:root {
    /* Background colors */
    --bg-primary: #08080f;
    --bg-surface-1: #0e1230;
    --bg-surface-2: #141838;
    --bg-surface-3: #1a1d45;
    --bg-surface-4: #1f2350;

    /* Accent colors */
    --accent-gold: #ffd700;
    --accent-gold-dim: rgba(255, 215, 0, 0.1);
    --accent-gold-border: rgba(255, 215, 0, 0.25);
    --accent-violet: #7b68ee;

    /* Text colors */
    --text-primary: #e0e0ec;
    --text-secondary: #9090aa;
    --text-white: #ffffff;
    --text-link: #1abc9c;

    /* Typography */
    --font-primary: 'RetroGaming', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
    --section-padding: 80px 24px;
    --section-padding-mobile: 48px 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Borders & Shadows */
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
}
