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

body {
    font-family: sans-serif;
    background-color: #0f1115;
    background-image: radial-gradient(circle at center, #1a1d23 0%, #0f1115 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.logo span {
    color: #007aff;
}

.status-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: #007aff;
    margin: 0 auto 20px;
}

.sub-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #333;
}

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