.splash-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.splash-hidden {
    opacity: 0;
    pointer-events: none;
}

.particle-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.splash-content {
    text-align: center;
    z-index: 2;
    animation: contentAppear 1.5s ease-out;
}

.splash-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--electric-violet) 0%, var(--neon-cyan) 100%);
    background-clip: text; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
}

.splash-tagline {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.indian-flag {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    animation: flagWave 3s ease-in-out infinite;
}

.ripple-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--electric-violet) 0%, var(--neon-cyan) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ripple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}