body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    min-height: 100vh;
    position: relative;
}
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 60, 114, 0.5);
    z-index: -1;
}
header {
    text-align: center;
    padding: 2rem 0 1rem 0;
}
header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e0e0e0;
}
.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    background: #fff;
    object-fit: cover;
}
.headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px #1e3c72;
}
.subtext {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}
.status {
    background: #ffcc00;
    color: #1e3c72;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.status-text {
    font-size: 1.1rem;
}
footer {
    text-align: center;
    padding: 1.5rem 0 0.5rem 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}
@media (max-width: 600px) {
    .headline {
        font-size: 1.3rem;
    }
    .logo img {
        width: 80px;
        height: 80px;
    }
}
