:root {
    --ivory: #121212;
    --anthracite: #e0e0e0;
    --gold: #F0DFCC;
    --light-gray: #1e1e1e;
    --medium-gray: #888;
    --card-bg: #252525;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--ivory);
    color: var(--anthracite);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

section {
    padding: 6rem 2rem;
}

.about {
    background: var(--ivory);
}

.games {
    background: var(--ivory);
}

.services {
    background: var(--light-gray);
}

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