body {
    background-color: #050505;
    background-image: url('/hinh/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
    min-height: 100vh;
    margin: 0;
    position: relative;
    display: block;
    overflow-x: hidden;
    color: #e2e8f0;
}

/* Thanh cuộn dùng chung trong output.css (đồng nhất mọi trang) */

@media (max-width: 1023px) {
    html, body {
        height: auto !important;
        overflow: visible !important;
    }
    body {
        background-image: none !important;
        background-color: transparent !important;
    }
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url('/hinh/bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        pointer-events: none;
    }
    #section-home {
        background-image: url('/hinh/bg-mobile.webp') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
