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

    html,
    body {
        height: 100%;
        background: radial-gradient(circle at center, #000000, #0a0a0a);
        font-family: 'Orbitron', sans-serif;
        color: cyan;
        overflow: hidden;
        transition: opacity 1s ease;
    }

    body.fade-out {
        opacity: 0;
    }

    .scene {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        perspective: 1500px;
        position: relative;
    }

    .logo-container {
        width: 200px;
        height: 200px;
        margin-bottom: 200px;
        transform-style: preserve-3d;
        animation: rotate 15s infinite linear;
        position: relative;
    }

    .logo-container::before,
    .logo-container::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url('/files/white-logo.webp') no-repeat center;
        background-size: contain;
        filter: drop-shadow(0 0 15px white);
        animation: pulse 2s infinite ease-in-out;
    }

    .logo-container::before {
        transform: rotateY(0deg) translateZ(20px);
    }

    .logo-container::after {
        transform: rotateY(180deg) translateZ(20px);
    }

    .glow {
        position: absolute;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        pointer-events: none;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
        animation: subtleGlow 5s infinite ease-in-out;
    }

    .loading-bar {
        display: flex;
        gap: 6px;
        margin-top: 30px;
    }

    .bar {
        width: 20px;
        height: 20px;
        background-color: rgba(0, 255, 255, 0.1);
        border-radius: 3px;
        animation: loadingBar 2s infinite;
    }

    .bar:nth-child(1) {
        animation-delay: 0s;
    }

    .bar:nth-child(2) {
        animation-delay: 0.2s;
    }

    .bar:nth-child(3) {
        animation-delay: 0.4s;
    }

    .bar:nth-child(4) {
        animation-delay: 0.6s;
    }

    .bar:nth-child(5) {
        animation-delay: 0.8s;
    }

    .bar:nth-child(6) {
        animation-delay: 1s;
    }

    .bar:nth-child(7) {
        animation-delay: 1.2s;
    }

    .bar:nth-child(8) {
        animation-delay: 1.4s;
    }

    .bar:nth-child(9) {
        animation-delay: 1.6s;
    }

    .bar:nth-child(10) {
        animation-delay: 1.8s;
    }

    .loading-text {
        display: flex;
        gap: 5px;
        margin-top: 30px;
        font-size: 20px;
    }

    .loading-text span {
        opacity: 0.1;
        animation: bounce 2s infinite;
        display: inline-block;
    }

    .loading-text span:nth-child(1) {
        animation-delay: 0s;
    }

    .loading-text span:nth-child(2) {
        animation-delay: 0.1s;
    }

    .loading-text span:nth-child(3) {
        animation-delay: 0.2s;
    }

    .loading-text span:nth-child(4) {
        animation-delay: 0.3s;
    }

    .loading-text span:nth-child(5) {
        animation-delay: 0.4s;
    }

    .loading-text span:nth-child(6) {
        animation-delay: 0.5s;
    }

    .loading-text span:nth-child(7) {
        animation-delay: 0.6s;
    }

    .loading-text span:nth-child(8) {
        animation-delay: 0.7s;
    }

    .loading-text span:nth-child(9) {
        animation-delay: 0.8s;
    }

    .loading-text span:nth-child(10) {
        animation-delay: 0.9s;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
            opacity: 0.1;
        }

        50% {
            transform: translateY(-8px);
            opacity: 1;
        }
    }

    @keyframes loadingBar {
        0% {
            background-color: rgba(0, 255, 255, 0.1);
        }

        30% {
            background-color: rgba(0, 255, 255, 1);
        }

        60% {
            background-color: rgba(0, 255, 255, 0.3);
        }

        100% {
            background-color: rgba(0, 255, 255, 0.1);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotateY(0deg) rotateX(0deg);
        }

        100% {
            transform: rotateY(360deg) rotateX(360deg);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            filter: drop-shadow(0 0 15px white);
        }

        50% {
            filter: drop-shadow(0 0 25px #00f0ff);
        }
    }

    @keyframes subtleGlow {

        0%,
        100% {
            background-position: center;
        }

        50% {
            background-position: 60% 40%;
        }
    }

    @media (max-width: 1800px) and (min-width: 1601px) {
        .section-resolution {
            transform: scale(0.90);
            transform-origin: center center;
        }
    }

    @media (max-width: 1600px) and (min-width: 1441px) {
        .section-resolution {
            transform: scale(0.85);
            transform-origin: center center;
        }
    }

    @media (max-width: 1440px) and (min-width: 1281px) {
        .section-resolution {
            transform: scale(0.80);
            transform-origin: center center;
        }
    }

    @media (max-width: 1280px) and (min-width: 1001px) {
        .section-resolution {
            transform: scale(0.75);
            transform-origin: center center;
        }
    }

    @media (max-width: 1080px) and (min-width: 801px) {
        .section-resolution {
            transform: scale(0.70);
            transform-origin: center center;
        }
    }