:root {

    --bg: #ffffff;
    --surface: #f7f8fa;
    --surface-2: #ffffff;

    --text: #111111;
    --text-muted: #666666;

    --accent: #d4af37;

    --border: #e5e7eb;

    --shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    --transition: .3s ease;
}

[data-theme="dark"] {

    --bg: #0d1b2a;

    --surface: #1b263b;

    --surface-2: #243447;

    --text: #ffffff;

    --text-muted: #b8c1cc;

    --accent: #c9a227;

    --border: rgba(255, 255, 255, .1);

    --shadow:
        0 10px 30px rgba(0, 0, 0, .35);
}