:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --bg-card: rgba(255, 255, 255, 0.055);

    --text: #f5f5f5;
    --muted: rgba(245, 245, 245, 0.68);
    --muted-strong: rgba(245, 245, 245, 0.82);

    --accent: #e74c3c;
    --accent-dark: #b83226;
    --gold: #ffcc48;

    --border: rgba(255, 255, 255, 0.12);
    --border-soft: rgba(255, 255, 255, 0.08);

    --max: 1240px;

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 34px;

    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: var(--accent);
    color: #fff;
}