body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #f5d37a;
}

/* NAVIGATIE */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #111;
    border-bottom: 2px solid #f5d37a33;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav img {
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #f5d37a;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: white;
    text-shadow: 0 0 10px #f5d37a;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #f5d37a;
    text-shadow: 0 0 20px #f5d37a55;
}

.hero p {
    font-size: 1.2rem;
    color: #d8c28a;
}

/* GAMES GRID */
.games-section {
    padding: 60px 40px;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #f5d37a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background: #141414;
    border: 2px solid #f5d37a33;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #f5d37a44;
    border-color: #f5d37a;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    margin: 0;
    color: #f5d37a;
}

footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid #f5d37a33;
    color: #d8c28a;
}
