/* Общие настройки */
body {
    font-family: 'Arial', sans-serif;
    background: #fff6e5;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 10px;
}

/* Заголовок */
h2 {
    color: #d46a6a;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Статус игрока */
.status-wrapper {
    margin-bottom: 10px;
}

#status {
    font-size: 16px;
    padding: 10px;
    background-color: #fff1e0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#status img {
    width: 50px;   /* увеличиваем аватар текущего игрока */
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Игровое поле */
.board {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    grid-gap: 6px;
    justify-content: center;
    margin: 10px auto;
}

.cell {
    width: 80px;
    height: 80px;
    font-size: 36px;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe8d0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.cell:hover {
    background: #ffd8a8;
}

/* Кнопка новая игра */
.controls button {
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background-color: #f7a78f;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: 10px;
}

.controls button:hover {
    background-color: #f48c70;
}

/* Лидерборд */
#leaderboard {
    border-collapse: collapse;
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
    background: #fff1e0;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#leaderboard th, #leaderboard td {
    padding: 6px;
    text-align: left;
    border-bottom: 1px solid #ffd8a8;
    font-size: 14px;
}

#leaderboard img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Адаптивность */
@media (max-width: 480px) {
    h2 { font-size: 22px; }
    .board { grid-template-columns: repeat(3, 60px); grid-gap: 4px; }
    .cell { width: 60px; height: 60px; font-size: 28px; }
    #status img { width: 40px; height: 40px; margin-right: 6px; }
    #leaderboard { max-width: 100%; }
}
