.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(15px);
    z-index: 0;
    animation: floatShape 6s ease-in-out infinite alternate;
}
.shape-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
}
.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}
.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.splash-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    background-color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--accent-sky-dark);
    font-size: 2.5rem;
    transform: scale(0);
    animation: elasticPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s
        forwards;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.saleum-logo {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease-out 0.4s forwards;
    display: flex;
    align-items: center;
}
.saleum-logo .fw-bold {
    font-weight: 800;
}
.saleum-logo .fw-light {
    font-weight: 300;
    opacity: 0.9;
}
.saleum-logo img {
    width: auto;
    height: 70px;
}
.text-logo {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(15px);
    animation: slideUpFade 0.8s ease-out 0.9s forwards;
    max-width: 240px;
}
.splash-footer {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    z-index: 2;
}
.progress-track {
    width: 160px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.progress-fill {
    height: 100%;
    background-color: #ffffff;
    width: 0%;
    border-radius: 10px;
    /* Animasi loading yang berjalan 7 detik */
    animation: loadProgress 7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.text-footer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
}
@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(20px, -20px) scale(1.1);
    }
}
@keyframes elasticPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes loadProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}
