body { 
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif; 
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2d3436; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
    margin: 0; 
    text-align: center; 
}
.container { 
    max-width: 500px; 
    padding: 3rem; 
    background: white; 
    border-radius: 20px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
h1 { 
    font-size: 2.5rem; 
    color: #0984e3; 
    margin-bottom: 1rem; 
    letter-spacing: -1px;
}
p { 
    font-size: 1.1rem; 
    line-height: 1.6;
    color: #636e72; 
    margin-bottom: 2rem;
}
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e1f5fe;
    color: #0288d1;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.contact-box {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1rem;
}
.email-link { 
    color: #0984e3; 
    text-decoration: none; 
    font-weight: 600;
    transition: color 0.2s;
}
.email-link:hover { 
    color: #000;
    text-decoration: underline; 
}