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

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 700px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.status {
    font-size: 2rem;
    font-weight: bold;
    color: #f87171;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.separator {
    width: 100px;
    height: 2px;
    background: #475569;
    margin: 30px auto;
}

.footer {
    color: #94a3b8;
    font-size: 0.9rem;
}