    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        min-height: 100vh;
        font-family: 'Roboto', sans-serif;
        color: #fff;
        background: #000;

    }


    .bg-image {
        position: fixed;
        inset: 0;
        background: url('../img/bg_evermax.png') center/cover no-repeat;
        z-index: 0;
        pointer-events: none;

    }


    #bg-video {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* filter: blur(1px) brightness(0.95); */
        mix-blend-mode: multiply;
        opacity: 0.38;
        z-index: 1;
        pointer-events: none;
    }


    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);

        z-index: 2;
        pointer-events: none;
    }


    .container {
        position: relative;
        z-index: 3;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px 4.5rem;

    }

    #logo {
        width: 280px;
        max-width: 80%;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
        transition: transform .3s ease, filter .3s ease;
        margin-bottom: 1.5rem;
        display: block;
    }

    #logo:hover {
        transform: scale(1.02);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    }

    @media (min-width:768px) {
        #logo {
            width: 520px;
        }
    }

    h1 {
        font-size: 2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    }

    .social {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }

    .social a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
    }

    .social a:hover {
        transform: scale(1.15);
        background: rgba(255, 255, 255, .2);
        border-color: rgba(255, 255, 255, .3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
    }

    .social svg {
        width: 24px;
        height: 24px;
        fill: #fff;
        transition: fill .3s;
    }

    .social a[aria-label="Facebook"]:hover svg {
        fill: #3b5998;
    }

    .social a[aria-label="LinkedIn"]:hover svg {
        fill: #0077b5;
    }

    .social a[aria-label="Instagram"]:hover svg {
        fill: #e4405f;
    }

    .social a[aria-label="WhatsApp"]:hover svg {
        fill: #25d366;
    }


    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        font-size: .875rem;
        opacity: .9;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.35);

        z-index: 4;

        backdrop-filter: blur(2px);
    }


    @media (prefers-reduced-motion: reduce) {
        #bg-video {
            display: none;
        }
    }