body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    /* Nền xám nhẹ cho PC */
    color: #111827;
    /* Chống cuộn trang trên mobile khi kéo thả */
    overscroll-behavior: none;
}

/* Ẩn scrollbar nhưng vẫn cho cuộn nội dung nếu cần */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Cấu hình để Canvas không bị giật khi chạm trên mobile */
canvas {
    touch-action: none;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hiệu ứng focus */
input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
}