/* === Design Tokens === */
:root {
    --bg:          #0A0A0A;
    --bg-elev:     #111111;
    --card:        #141414;
    --line:        rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.18);

    --pink:        #FF2D95;
    --pink-soft:   #F7A8D7;
    --pink-deep:   #C9156C;

    --text:        #F5F5F5;
    --text-mute:   #BDBDBD;
    --text-dim:    #8A8A8A;

    --success:     #2DE0A6;
    --warn:        #FFB020;

    --grad-main:   linear-gradient(135deg, #FF2D95 0%, #F7A8D7 100%);
    --grad-dark:   linear-gradient(180deg, rgba(10,10,10,0) 0%, #0A0A0A 100%);
    --glow:        0 0 25px rgba(255, 45, 149, 0.35);
    --glow-soft:   0 0 16px rgba(255, 45, 149, 0.20);

    --font-head:   'Cinzel', 'Times New Roman', serif;
    --font-body:   'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --container:   1200px;
    --gap:         24px;

    --radius:      20px;
    --radius-sm:   12px;
    --radius-pill: 999px;

    --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.35);

    --t-fast:      150ms ease;
    --t:           250ms ease;
    --t-slow:      450ms ease;
}
