/**
 * xCasaTV Design Tokens — shared across all stylesheets
 */
:root {
    /* Surfaces */
    --bg-dark: #060809;
    --bg-elevated: #0c0f12;
    --bg-card: #111418;
    --bg-card-hover: #1a1f24;
    --bg-input: rgba(8, 10, 12, 0.65);

    /* Brand */
    --primary: #2dd4bf;
    --primary-dark: #14b8a6;
    --primary-light: #5eead4;
    --primary-glow: rgba(45, 212, 191, 0.35);
    --primary-subtle: rgba(45, 212, 191, 0.08);

    /* Text */
    --text-main: #f0f4f8;
    --text-muted: #8b949e;
    --text-dim: #6b7280;

    /* Borders & glass */
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);
    --glass: rgba(8, 10, 12, 0.72);
    --glass-border: rgba(255, 255, 255, 0.06);

    /* Radius */
    --radius-sm: 0.625rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.32);
    --shadow-glow: 0 0 32px var(--primary-glow);

    /* Motion */
    --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 280ms;
    --duration-slow: 500ms;

    /* Semantic */
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #f87171;
    --info: #60a5fa;

    /* Legacy aliases */
    --secondary: #21262d;
    --accent: var(--primary-light);
    --text-muted-legacy: #8b949e;
}
