/* assets/css/variables.css */
:root {
    /* Brand Colors */
    --brand-primary: #121212;
    /* Deep Black */
    --brand-secondary: #1a1e26;
    /* Dark Blue-Grey */
    --accent-green: #00D664;
    /* Premium Sports Green (No Yellow/Neon) */
    --accent-blue: #00f2ff;
    /* Cyan Electric */
    --accent-red: #ff3366;
    /* Radical Red */

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* UI Elements */
    --card-bg: #1e222b;
    --card-hover: #252a35;
    --border-color: #2d3342;
    --glass-bg: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    /* Bold, Impactful */
    --font-body: 'Inter', sans-serif;
    /* Clean, Readable */

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--brand-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}