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

body {
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f9;
    color: #1a1a1a;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
    max-height: 55px;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translateX(-6px);
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    max-width: 200px;
    height: 2px;
    background-color: #cbd5e0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: #0F2B48;
    animation: loading 2s ease-in-out infinite alternate;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    animation: fadeIn 1s ease-out 0.5s both;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .logo-wrapper {
        margin-bottom: 2.5rem;
    }
}
