        @font-face {
            font-family: 'HoaxVandal';
            src: url('../assets/hoax-vandal.ttf') format('truetype'); 
            font-weight: normal;
            font-style: normal;
        }

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

        html, body {
            width: 100%;
            height: 100%;
            background-color: #fff;
            cursor: pointer;
        }

        .scroll-space {
            height: 300vh;
            width: 100%;
            position: relative;
        }

        .bg-fixed-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
        }

        .bg-image-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(20px); 
            transform: scale(1); 
            will-change: transform, filter;
            transition: transform 0.05s ease-out, filter 0.05s ease-out;
        }

        
        .info-text {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000;
            font-family: 'HoaxVandal', sans-serif; 
            font-size: clamp(1.5rem, 6vw, 3rem); 
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 2;
            pointer-events: none; 
            text-shadow: 0 0 10px rgba(255,255,255,0.8);
            opacity: 1;
            transition: opacity 0.2s ease;
            text-align: center;
            width: 90%;
        }

        @media (max-width: 767px) {
            .bg-image-element {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }