* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0b0914;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Atmospheric Ambient Backdrop Glow */
.background-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.2) 0%, rgba(255, 42, 109, 0.05) 50%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    animation: floatGlow 4s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: scale(0.9) translateY(-10px); opacity: 0.8; }
    100% { transform: scale(1.1) translateY(10px); opacity: 1; }
}

/* Minimalist Center Splash Container */
.splash-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* Sleek Heart Pulse Wrapper */
.heart-pulse-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.heart-badge {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff4081, #ff2a6d);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(255, 42, 109, 0.45);
    animation: heartBeat 1.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.heart-badge svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.pulse-ring {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 64, 129, 0.6);
    animation: expandPulse 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.06); }
    70% { transform: scale(1); }
}

@keyframes expandPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Loading Text & Animated Dots */
.loading-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.dots::after {
    content: '';
    animation: dots 1.5s infinite steps(4, jump-end);
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

/* Thin Sleek Progress Bar */
.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff4081, #ff2a6d, #ff758c);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 42, 109, 0.8);
    animation: fillProgress 1.4s ease-out forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    45% { width: 68%; }
    100% { width: 100%; }
}
