:root {
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.25rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-2xl: 2.5rem;
    --font-size-3xl: 3rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Colors - Modern dark theme */
    --color-bg: #0f1117;
    --color-bg-secondary: #1a1d2e;
    --color-bg-card: #1e2235;
    --color-bg-card-hover: #252a40;
    --color-bg-input: #1a1d2e;
    --color-text: #e8eaed;
    --color-text-secondary: #9aa0b4;
    --color-text-muted: #6b7280;
    --color-primary: #4f8fff;
    --color-primary-light: #6ba3ff;
    --color-primary-dark: #3a7ae8;
    --color-accent: #10b981;
    --color-border: #2a2f45;
    --color-overlay: rgba(0, 0, 0, 0.6);
    --color-room-badge: #4f8fff;
    --color-floor-badge: #10b981;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);

    /* Animation */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-map: 600ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --header-height: 120px;
    --search-height: 80px;
    --row-height: 90px;
    --row-gap: 8px;
    --content-padding: 2rem;
    --map-panel-height: 85vh;

    /* Map */
    --map-route-color: #4f8fff;
    --map-route-width: 4;
    --map-start-color: #10b981;
    --map-end-color: #ef4444;
    --map-marker-size: 12;
}
