body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    text-align: center;
}

header {
    padding: 2rem;
    background-color: #2c3e50;
    border-bottom: 5px solid #ffc107;
}

header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px #000;
}

main {
    padding: 2rem;
}

#game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.game-card {
    background-color: #2c3e50;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #000;
    border-bottom: 5px solid #ffc107;
}

.game-info {
    padding: 1.5rem;
}

.game-info h2 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #ffc107;
}

.game-info p {
    font-size: 1rem;
    line-height: 1.5;
}

footer {
    padding: 1rem;
    margin-top: 2rem;
    background-color: #2c3e50;
    border-top: 5px solid #ffc107;
}