/* Previous styles remain the same, add these new ones: */

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* For 2048 game */
.tile {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    border-radius: 5px;
    background: #eee4da;
    color: #776e65;
}

/* For Pong game */
.pong-container {
    text-align: center;
}

#pongCanvas {
    background: #000;
    border-radius: 5px;
}

/* For RPS game */
.rps-choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.rps-btn {
    font-size: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.rps-btn:hover {
    transform: scale(1.2);
}

#rpsResult {
    font-size: 24px;
    margin: 20px;
    min-height: 30px;
}

#rpsScore {
    font-size: 20px;
    margin: 10px;
}