body {
    background: linear-gradient(135deg, #0f172a 60%, #1e293b 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
}
.logo {
    width: 120px;
    margin-bottom: 2rem;
}
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Progress bar styles */
.progress-container {
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 1rem auto;
    background: #334155;
    border-radius: 8px;
    height: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%);
    border-radius: 8px;
    transition: width 0.3s ease;
}

/* Space for map marker gif */
.map-marker {
    display: block;
    margin: 2rem auto 0 auto;
    width: 48px;
    height: auto;
}
