html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    min-height: 100vh;
    position: relative;
    background-image:
        radial-gradient(circle at 18% 16%, rgba(251, 146, 60, .14), transparent 17rem),
        radial-gradient(circle at 84% 14%, rgba(134, 239, 172, .12), transparent 18rem),
        radial-gradient(circle at 72% 76%, rgba(56, 189, 248, .09), transparent 24rem),
        radial-gradient(circle at 48% 46%, rgba(137, 170, 188, .06), transparent 22rem),
        linear-gradient(125deg, #030405 0%, #080808 33%, #121820 58%, #050608 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 68% 10%, rgba(251, 146, 60, .26) 0 7px, transparent 8px),
        radial-gradient(circle at 90% 18%, rgba(143, 164, 178, .10) 0 16px, transparent 17px),
        radial-gradient(circle at 60% 34%, rgba(251, 146, 60, .18) 0 14px, transparent 15px),
        radial-gradient(circle at 82% 32%, rgba(251, 146, 60, .12) 0 8px, transparent 9px),
        radial-gradient(circle at 74% 58%, rgba(251, 146, 60, .20) 0 11px, transparent 12px),
        linear-gradient(145deg, transparent 0 54%, rgba(34, 52, 66, .30) 54.2% 67%, transparent 67.2%);
    opacity: .62;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .35), transparent 38%, rgba(0, 0, 0, .24)),
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .045), transparent 16rem);
}

.main-logo {
    position: absolute;
    left: 50%;
    top: 25%;
    z-index: 1;
    transform: translateX(-50%);
}

.main-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .58));
}

.loading-container {
    position: absolute;
    width: 100%;
    bottom: 15%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: softShow .6s ease forwards;
    animation-delay: .5s;
}

.loading-bar {
    width: 170px;
    height: 2px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 1px;
    background-color: rgba(255, 255, 255, .10);
}

.loading-progress {
    width: 0%;
    height: 100%;
    border-radius: 1px;
    background-image: linear-gradient(to right, #86efac, #fb923c);
    box-shadow: 0 0 10px rgba(134, 239, 172, .35);
    transition: width .1s linear;
}

.status-message {
    min-height: 20px;
    margin-top: 10px;
    color: rgba(245, 247, 251, .72);
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-align: center;
}

.copyright {
    position: absolute;
    bottom: 30px;
    z-index: 1;
    width: 100%;
    color: rgba(245, 247, 251, .50);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .5px;
    text-align: center;
}

@keyframes softShow {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
