* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0f0f14;
    color: white;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 70px 20px 50px;
}

header h1 {
    font-size: 70px;
    letter-spacing: 8px;
    font-weight: 900;
}

header p {
    margin-top: 15px;
    font-size: 22px;
    color: #aaa;
    letter-spacing: 2px;
}

.games-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.games-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.game-card {
    background: #191922;
    border: 1px solid #292936;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.3s ease;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #55556a;
}

.game-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.game-card p {
    color: #aaa;
    margin-bottom: 22px;
    font-size: 15px;
}

.game-card button {
    border: none;
    padding: 11px 28px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: 0.2s ease;
}

.game-card button {
    background: white;
    color: #111;
}

.game-card button:hover {
    background: #dddddd;
    transform: scale(1.05);
}

.game-card button:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 50px 20px 30px;
    color: #777;
}

@media (max-width: 800px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 40px;
    }
}