body {
    background: #202028;
    color: #fff;
    font-family: sans-serif;
    font-size: 1.2em;
    text-align: center;
}

h1 {
    margin: 10px;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

#tetris {
    border: 3px solid #fff;
    background: #111;

    /* --- เพิ่ม 3 บรรทัดนี้ --- */
    /* ขนาดเดิมคือ 240x400, เราจะขยายเป็น 2 เท่า (480x800) 
    width: 480px;
    height: 800px; */
    width: 360px;
    height: 600px;
    /* (สำคัญมาก!) ป้องกันภาพเบลอ ทำให้เกมดูคมชัดแบบ Retro */
    image-rendering: pixelated;
}

#sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 120px;
}

#info {
    border: 2px solid #555;
    padding: 10px;
    background: #111;
    border-radius: 5px;
}

#info div {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFE138;
    margin-bottom: 10px;
}

#next-canvas {
    background: #111;
    border: 2px solid #555;
    border-radius: 5px;
}

/* -------------------------------- */
/* --- โค้ดใหม่: สไตล์ปุ่ม Skin --- */
/* -------------------------------- */
#skin-switcher {
    border: 2px solid #555;
    padding: 10px;
    background: #111;
    border-radius: 5px;
}

#skin-switcher strong {
    display: block;
    /* ให้คำว่า "SKINS" ขึ้นบรรทัดใหม่ */
    margin-bottom: 10px;
}

.skin-btn {
    width: 100%;
    /* ปุ่มเต็มความกว้าง */
    padding: 8px;
    font-size: 0.8em;
    background: #3877FF;
    /* สีน้ำเงิน */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    /* ระยะห่างระหว่างปุ่ม */
}

.skin-btn:hover {
    background: #0DC2FF;
    /* สีฟ้าอ่อนตอนชี้ */
}

/* --------------------------------- */
/* --- โค้ดใหม่: สไตล์ตารางประวัติ --- */
/* --------------------------------- */
#history-container {
    margin-top: 30px;
    width: 450px;
    /* อาจจะต้องปรับตามความกว้างเกมของคุณ */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#history-log table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    margin-top: 10px;
}

#history-log th,
#history-log td {
    border: 1px solid #555;
    padding: 8px;
    text-align: left;
}

#history-log th {
    background: #3877FF;
    /* สีน้ำเงิน */
}

#history-log td:nth-child(2) {
    color: #FFE138;
    /* สีเหลือง (คะแนน) */
    font-weight: bold;
    text-align: right;
}