:root {
    --primary: #1e3a3a; /* Deep Evergreen */
    --accent: #a8dadc;  /* Ice Blue */
    --text: #f1faee;
}

body, html {
    margin: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Alpine Night Gradient */
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo { font-size: 3rem; margin-bottom: 1rem; }

h1 { margin: 0; font-weight: 600; letter-spacing: -1px; color: var(--text); }

.subtitle { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; margin-top: 0.5rem; }

hr { border: 0; height: 1px; background: rgba(255,255,255,0.1); margin: 2rem 0; }

.status { line-height: 1.6; color: #cbd5e1; font-weight: 300; margin-bottom: 2rem; }

.cta-button {
    text-decoration: none;
    background: var(--accent);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(168, 218, 220, 0.4); }