:root {
    --primary: #C20000;
    --primary-dark: #900000;
    --primary-light: #E60000;
    --secondary: #1a1a1a;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f4f4f4;
    --font-main: 'Montserrat', sans-serif;
    --font-pixel: 'Press Start 2P', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}