* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden !important;
    font-family: Inter, Arial, sans-serif;
    background: #ffffff !important;
}

/* SPLASH SCREEN MAIN CONTAINER */
.splash {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: #ffffff !important;
    z-index: 9999 !important;
}

/* AMBIENT SHADOW EFFECTS */
.shadow-left,
.shadow-right {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.shadow-left {
    left: 0;
}

.shadow-right {
    right: 0;
}

.light-sweep {
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 25%, transparent 50%, rgba(212, 175, 55, 0.1) 75%, transparent 100%);
    animation: sweep 3s ease-in-out infinite;
    pointer-events: none;
}

/* DUST PARTICLES */
.dust {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    bottom: -100px;
    animation: rise linear infinite;
    pointer-events: none;
}

/* LOGO WRAPPER AND FRAME */
.logo-wrap {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: logoEntrance 2s ease;
}

.frame {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid #D4AF37;
    box-shadow: 
        inset 0 0 20px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.3);
    animation: frameRotate 15s linear infinite;
}

/* OUTER FRAME - LARGER DECORATIVE BORDER */
.frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    animation: frameRotateOuter 25s linear infinite reverse;
}

/* INNER FRAME - SMALLER DECORATIVE BORDER */
.frame::after {
    content: '';
    position: absolute;
    inset: 12px;
    width: 356px;
    height: 356px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.15),
        inset 0 0 15px rgba(212, 175, 55, 0.15);
    animation: frameRotateInner 10s linear infinite;
}

.logo {
    width: 320px;
    height: 320px;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.2));
    animation: logoPulse 2s ease-in-out infinite;
}


.splash-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: radial-gradient(circle at center, #161616 0%, #090909 40%, #020202 100%) !important;
    z-index: 9999 !important;
}

.bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
    animation: rotateGlow 18s linear infinite, pulseGlow 6s ease-in-out infinite;
    filter: blur(10px);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.logo-container {
    position: relative;
    width: 260px;
    z-index: 10;
    animation: logoEntrance 2s ease;
}

.logo-ring {
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: rotateRing 12s linear infinite;
}

.logo-ring::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
}

.logo-svg {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.12));
}

.brand {
    margin-top: 45px;
    color: white;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    opacity: 0;
    animation: brandFade 2s ease forwards;
    animation-delay: 2.2s;
}

.tagline {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0;
    animation: brandFade 2s ease forwards;
    animation-delay: 2.8s;
}

.loading-wrapper {
    margin-top: 60px;
    width: 280px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0%;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: loadingProgress 5s ease forwards;
}

.loading-text {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulseText 2s infinite;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle linear infinite;
}

.main-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    color: white;
    font-size: 48px;
    letter-spacing: 8px;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes frameRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes frameRotateOuter {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes frameRotateInner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(100vh);
    }
    20% {
        opacity: 0.3;
    }
    80% {
        opacity: 0.1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh);
    }
}

@keyframes sweep {
    0%, 100% {
        left: -50%;
        opacity: 0;
    }
    50% {
        left: 50%;
        opacity: 1;
    }
}

@keyframes brandFade {
    to {
        opacity: 1;
        letter-spacing: 6px;
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes loadingProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes pulseText {
    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes floatParticle {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.2;
    }

    to {
        transform: translateY(-100px) translateX(80px);
        opacity: 0;
    }
}