* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.splash-container {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInContainer 1.2s ease-out;
}

@keyframes fadeInContainer {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img-wrapper {
    width: 120px;
    height: 120px;
    z-index: 2;
    animation: logoFloat 3s infinite ease-in-out;
}

.splash-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(33, 150, 243, 0.3);
    animation: ripple 4s infinite cubic-bezier(0, 0, 0.2, 1);
}

.ring:nth-child(2) {
    animation-delay: 1s;
}

.ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.app-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

.loading-container {
    width: 240px;
    position: relative;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #00C853, #69f0ae);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
    border-radius: 10px;
    animation: loadProgress 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    margin-top: 15px;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}
