/* BASE STYLE KONOHA */
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* NAVBAR CLASSIQUE */
.navbar {
    background-color: #111;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #ff9900;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar a:hover, .nav-link.active {
    color: #ff9900;
}

/* TITRE DE L'ARCADE */
.arcade-header {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.arcade-header h1 {
    font-family: 'Bangers', cursive;
    color: #ff9900;
    font-size: 4rem;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
}

.arcade-header p {
    color: #aaaaaa;
    font-size: 1.2rem;
}

/* LA GRILLE MAGIQUE DES JEUX */
.gaming-grid {
    display: grid;
    /* Crée autant de colonnes de 280px minimum que possible selon l'écran */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LA CARTE DU JEU (Le Bouton) */
.game-card {
    background-color: #111;
    border: 2px solid #ff9900;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.4);
    border-color: #fff;
}

/* L'IMAGE DU JEU */
.game-image {
    width: 100%;
    height: 150px;
    background-color: #222;
    object-fit: cover;
    border-bottom: 2px solid #ff9900;
}

/* LE TITRE EN DESSOUS */
.game-title {
    padding: 15px;
    text-align: center;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff9900;
    letter-spacing: 1.5px;
    margin: 0;
}

.game-card:hover .game-title {
    color: #fff;
}