/* =========================================================
   VALYRIA — GLOBAL DESIGN VARIABLES
========================================================= */

:root {

    /* BACKGROUNDS */

    --bg-main: #070809;
    --bg-dark: #050607;
    --bg-surface: #0c0f12;
    --bg-card: #101419;
    --bg-card-hover: #14191e;


    /* GOLD */

    --gold: #d4af37;
    --gold-light: #f0d477;
    --gold-bright: #ffe39a;
    --gold-dark: #9d7b20;


    /* TEXT */

    --text-primary: #f2eee4;
    --text-secondary: #c3bcae;
    --text-muted: #918b80;


    /* BORDERS */

    --border: rgba(212, 175, 55, 0.20);
    --border-bright: rgba(212, 175, 55, 0.42);


    /* GLOW */

    --gold-glow-soft:
        0 0 25px rgba(212, 175, 55, 0.08);

    --gold-glow:
        0 0 30px rgba(212, 175, 55, 0.14);

    --gold-glow-strong:
        0 0 40px rgba(212, 175, 55, 0.20);


    /* SHADOW */

    --shadow-dark:
        0 20px 50px rgba(0, 0, 0, 0.45);

}