/* Theme foundation: tokens, reset, and global defaults */
:root {
    --wp-content-max-width: 1320px;

    --color-bg-base: #07090d;
    --color-bg-alt: #0c1017;
    --color-panel-top: #2f343b;
    --color-panel-mid: #1e2228;
    --color-panel-bot: #14181d;
    --color-border: rgba(228, 214, 180, 0.15);
    --color-text: #ece6d7;
    --color-muted: #8a8275;
    --color-accent: #ff4500;
    --color-accent-hi: #ff6d38;
    --color-accent-glow: rgba(255, 69, 0, 0.28);

    --radius-lg: 18px;
    --radius-md: 10px;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-8: 48px;
    --space-10: 64px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--color-text);
    font-family: var(--font-body);
    background-color: var(--color-bg-base);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
}

p,
li {
    font-size: 0.95rem;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none !important;
}

