@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-color: lightblue;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.game-container {
   width: 320px;
   height: 320px;
   border: 1px solid #ccc;
   overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.cell {
    width: 77px;
    height: 77px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #000;
}

.score-container {
    width: 320px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cell[data-value="2"] {
    background-color: #ffc0cb;
}

.cell[data-value="4"] {
    background-color: #add8e6;
}

.cell[data-value="8"] {
    background-color: #98fb98;
}

.cell[data-value="16"] {
    background-color: #ffd700;
}

.cell[data-value="32"] {
    background-color: #ffa07a;
}

.cell[data-value="64"] {
    background-color: #87ceeb;
}

.cell[data-value="128"] {
    background-color: #ffff00;
}

.cell[data-value="256"] {
    background-color: #40e0d0;
}

.cell[data-value="512"] {
    background-color: #ff69b4;
}

.cell[data-value="1024"] {
    background-color: #7b68ee;
}

.cell[data-value="2048"] {
    background-color: #ff6347;
}

.cell[data-value="4096"] {
    background-color: #a9a9a9;
}

#restart-btn {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #f4f4f4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid-cell[data-value] {
    transition: transform 0.2s, background-color 0.2s;
}

.new-tile {
    animation: appear 0.3s;
}

button {
    background: lightyellow;
    border-radius: 10px;
    border: 2px solid blue;
    outline: none;
    padding: 6px;
    font-weight: bold;
    color: black;
}

button:focus {
    background: silver;
}

#menu-principale {
    position: relative;
    top: 20px;
}

#reset-high-score {
    position: relative;
    top: 425px;
}

#regole3 {
    position: relative;
    margin-top: 80px;
}

@keyframes appear {
    from{
        opacity: 0;
        transform: scale(0.5);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}