/* assets/css/splash.css — Splash Screen Styles */
.splash-body {
    background: radial-gradient(ellipse at 20% 50%, #1a3a5c 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, #2a5298 0%, transparent 45%),
        linear-gradient(135deg, #0d1b2a 0%, #1E3A5F 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated background particles */
.splash-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.splash-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: containerFadeIn 0.6s ease-out;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-logo-wrap {
    animation: logoScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes logoScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(252, 207, 3, 0.35));
}

.animated-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    min-height: 1.3em;
    background: linear-gradient(135deg, #ffffff 30%, #FCCF03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.splash-progress {
    width: min(400px, 80vw);
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out 0.5s both;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #f39c12);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.splash-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeIn 1s ease-out 1s both;
}

.splash-credit strong {
    color: var(--gold);
}

/* Floating particle dots */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(252, 207, 3, 0.15);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}