/* Partie déjà dans ton style.css (à garder) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #18191a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    min-height: 100vh;
}

h1 {
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

/* Mise en page des cartes de support */
.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 800px;
}

.game-card {
    background-color: #2e2d2d;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.details h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
}

.price {
    font-weight: bold;
    font-size: 1.5em;
    color: #00d166;
}
