/* Base Reset & Variables */
:root {
    --color-bg: #111219;
    --color-primary: #c8344d;
    --color-text: #ffffff;
    --color-text-dim: #b3b3b3;
    --color-overlay: rgba(0, 0, 0, 0.5);

    --font-main: 'Lexend', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container-width: 1400px;
    --spacing-section: 60px;
    /* Standard Mobile Spacing */
    --spacing-card-gap: 16px;

    --radius-md: 8px;
    --radius-full: 9999px;
}

@media (min-width: 1024px) {
    :root {
        --spacing-section: 100px;
        /* Standard Desktop Spacing */
        --spacing-card-gap: 24px;
    }
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-400-1.RvljkFvg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    /* Improved readability */
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    /* Modern tight spacing */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}