        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        

        body {
            background-color: #0F0D0D;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        #particles-js {
            position: fixed;
            width: 100vw;
            height: 100vh;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .text-custom-white {
            color: #FFFFFF;
        }

        .background-image-div {
            width: 100%;
            height: 700px;
            background-image:
                linear-gradient(to bottom,
                    rgba(15, 13, 13, 1) 0%,
                    rgba(15, 13, 13, 0) 20%,
                    rgba(15, 13, 13, 0) 80%,
                    rgba(15, 13, 13, 1) 100%),
                url('/assets/images/main/backgroundHd.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            display: block;
            padding-top: 40px;
            padding-bottom: 40px;
            transform: scale(1.01);
            transform-origin: top center;
        }



        .overlay-logo {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            object-fit: contain;
            z-index: 2;
            user-select: none;
            pointer-events: none;
        }