/* Mini-Games Styling */
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#morpion-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    margin: 20px auto;
    width: 320px;
    background: #eee;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.m-cell {
    width: 100px;
    height: 100px;
    background: #fff;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.m-cell:hover {
    background: #f9f9f9;
}

#p4-board {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    grid-gap: 5px;
    margin: 0 auto;
    width: 380px;
    background: #0044cc;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.p4-cell {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.p4-cell:hover {
    background: #eee;
}

.p4-cell.p1 { background: #f44336 !important; } /* Red */
.p4-cell.p2 { background: #ffeb3b !important; } /* Yellow */

/* XP Bar Stying */
.xp-stat {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.xp-icon::before {
    content: "\f005"; /* star */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4CAF50;
}

.xp-value {
    font-weight: bold;
    color: #4CAF50;
}
