/*
 * Base Styles
 * Variables, Reset, Typography, Layout
 */

:root {
    --primary-bg: #050409;
    --secondary-bg: #0d0a17;
    --accent-bg: #15101f;
    --accent-cyan: #ffbf1f;
    --accent-violet: #c98900;
    --accent-cream: #fff1c7;
    --accent-bronze: #8e6324;
    --accent-bronze-soft: #6b4a19;
    --text-primary: #fff8df;
    --text-secondary: #eadfba;
    --text-muted: #b8ac86;
    --border-color: #453112;
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition-fast: 0.2s ease;
    --transition-slow: 0.3s ease;
    --shadow-glow: 0 0 20px rgba(255, 191, 31, 0.28);
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: #ffe08a;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

input,
textarea,
select,
button {
    font-family: 'Inter', sans-serif;
}

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

ul, ol {
    list-style: none;
}
