
body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Montserrat', sans-serif; 
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif; 
}

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

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700; 
}

p {
    font-size: 1.2rem;
    font-weight: 300; 
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
    border: 5px solid white;
    transition: all ease-in-out 0.2s;
}

.game-card:hover {
    background-color: #2a2a2a;
}

.game-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600; 
}

.game-card p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

button {
    background-color: white;
    color: #1b1b1b;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif; 
    transition: all ease-in-out 0.2s;
}

button:hover {
    background-color: #b4b4b4;
}

.popular {
    background-color: #ff4500;
    padding: 2px 8px;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

a {
    color: rgb(88, 213, 255);
    transition: all ease-in-out 0.2s;
}

a:hover {
    color: rgb(0, 123, 168);
    cursor: pointer;
}

a:visited {
    color: rgb(88, 213, 255);
}