* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: #0f172a; /* Deep elegant dark blue/slate */
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Luxury subtle light effect in background */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.container {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.brand-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38bdf8; /* Soft premium blue */
    margin-bottom: 25px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: #38bdf8;
    margin: 15px auto;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #94a3b8;
    margin-bottom: 30px;
    text-transform: uppercase;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 300;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse {
    width: 7px;
    height: 7px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
    animation: blink 2s infinite;
}

.contact-section {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #64748b;
}

.contact-section span {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.email-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 0.9rem; letter-spacing: 5px; }
    p { font-size: 0.95rem; }
}
