
#game2048-wrapper {
    font-family: 'Arial', sans-serif;
    background-color: #faf8ef;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.game2048-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.game2048-score-box {
    background-color: #bbada0;
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
}
#game2048_resetBtn {
    background-color: #8f7a66;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}
.game2048-board {
    width: 320px;
    height: 320px;
    background-color: #bbada0;
    margin: 0 auto;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}
.game2048-cell {
    background-color: rgba(238, 228, 218, 0.35);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #776e65;
}
/* Χρώματα για κάθε αριθμό ξεχωριστά */
.game2048-tile-2 { background-color: #eee4da; color: #776e65; }
.game2048-tile-4 { background-color: #ede0c8; color: #776e65; }
.game2048-tile-8 { background-color: #f2b179; color: #f9f6f2; }
.game2048-tile-16 { background-color: #f59563; color: #f9f6f2; }
.game2048-tile-32 { background-color: #f67c5f; color: #f9f6f2; }
.game2048-tile-64 { background-color: #f65e3b; color: #f9f6f2; }
.game2048-tile-128 { background-color: #edcf72; color: #f9f6f2; font-size: 20px; }
.game2048-tile-256 { background-color: #edcc61; color: #f9f6f2; font-size: 20px; }
.game2048-tile-512 { background-color: #edc850; color: #f9f6f2; font-size: 20px; }
.game2048-tile-1024 { background-color: #edc53f; color: #f9f6f2; font-size: 16px; }
.game2048-tile-2048 { background-color: #edc22e; color: #f9f6f2; font-size: 16px; }
.game2048-instructions {
    font-size: 12px;
    color: #776e65;
    margin-top: 15px;
}
.game2048-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background-color: #eee4da;
    padding: 8px;
    border-radius: 5px;
}
.game2048-controls select {
    padding: 5px;
    font-weight: bold;
    border-radius: 3px;
    border: 1px solid #bbada0;
    color: #776e65;
    background-color: #fff;
}
.game2048-message {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 27px; /* Κρατάει σταθερό το ύψος για να μην κουνιέται ο πίνακας */
}
.game2048-win { color: #2ecc71; }
.game2048-lose { color: #e74c3c; }
