
/* ==================================================
   GTA.MOTORCYCLES — MASTER BRAND BACKGROUND
   ================================================== */

html,
body {
    background-color: #050608 !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -20;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 4, 7, .78) 0%,
            rgba(2, 4, 7, .45) 38%,
            rgba(2, 4, 7, .20) 68%,
            rgba(2, 4, 7, .36) 100%
        ),
        url("/assets/branding/gta-motorcycles-brand.png?v=20260808");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}

@media (max-width: 768px) {
    body::before {
        background-image:
            linear-gradient(
                180deg,
                rgba(2, 4, 7, .48) 0%,
                rgba(2, 4, 7, .60) 55%,
                rgba(2, 4, 7, .92) 100%
            ),
            url("/assets/branding/gta-motorcycles-brand.png?v=20260808");

        background-position: center top;
        background-size: cover;
    }
}

