* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #ff6f61;
}

.game-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 95%;
    margin-left: 2.5%;
}

.game-card {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.game-card:hover {
    background-color: #333333;
    transform: scale(1.05);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #aaaaaa;
}

@media (min-width: 600px) {
    .game-list {
        grid-template-columns: 1fr 1fr;
    }
}
