:root {
    --color-bg-deep: #080112;
    --color-gold: #C5A059;
    --color-gold-light: #E8C96A;
    --color-gold-pale: #F5E6B8;
    --color-white: #FFFFFF;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;
    --transition-base: all 0.25s ease;
    --shadow-gold-sm: 0 0 15px rgba(197, 160, 89, 0.3);
}

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

html,
body {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background: var(--color-bg-deep);
    color: var(--color-white);
    font-family: var(--font-body);
}

a {
    color: inherit;
}

.galaxy-wrap,
.galaxy-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.galaxy-wrap {
    z-index: -2;
}

.galaxy-overlay {
    z-index: -1;
}
