#loading-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #e8f5d8, #cfe6b8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity .6s ease;
    z-index: 999;
}

.loading-logo {
    width: 180px;
    animation: float 1.6s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.loading-title {
    margin-top: 20px;
    font-size: 22px;
    color: #355f3b;
}

.progress-wrapper {
    width: 280px;
    height: 14px;
    background: #bcd8a8;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4caf50, #1b5e20);
    transition: width .15s linear;
}

.loading-sub {
    margin-top: 12px;
    font-size: 14px;
    opacity: .7;
}
