@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #004799;
    --secondary-blue: #018eef;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--black);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.splash-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 20px;
}

.splash-content {
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 40px;
    border-radius: 80%;
    animation: fadeIn 0.6s ease-out;
    
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.app-name {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.tagline {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.loader-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    margin: 0 auto;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 1px;
    animation: loadProgress 2.5s ease-out forwards;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Responsive */
@media (max-width: 375px) {
    .app-name {
        font-size: 40px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
        
    }
    
    .loader-bar {
        width: 150px;
    }
}

@media (min-width: 768px) {
    .app-name {
        font-size: 56px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
}
