:root {
    --brand-green: #36b864;
    --bg-light: #fcfdfe;
}

 #splash-screen {
    display: none;
}

 .show-splash #splash-screen {
    position: fixed;
    inset: 0;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    perspective: 2500px;
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.splash-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(40px);
    padding: 4.5rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 92%;
    max-width: 550px;
    transform-style: preserve-3d;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
}

.logo-box img {
    width: 100%;
    max-width: 340px;
    margin-bottom: 2.5rem;
}

.loader-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2.5rem;
}

.circular-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--brand-green) 0deg, rgba(0,0,0,0.05) 0deg);
}

.circular-progress::after {
    content: "";
    position: absolute;
    inset: 8%;
    background: var(--bg-light);
    border-radius: 50%;
}

#digital-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    line-height: 1;
}

.exit-active {
    transform: translateZ(3000px) scale(15) !important;
    opacity: 0 !important;
    filter: blur(100px) brightness(3);
}

#splash-screen.hidden {
    visibility: hidden;
    pointer-events: none;
}