:root {
    color-scheme: light;
    --bg: #07111f;
    --panel: rgba(8, 19, 36, 0.92);
    --text: #f3f7ff;
    --muted: #a5b4d2;
    --accent: #64d2ff;
    --accent-strong: #2f7dff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--bg), #14263f 60%, #1d3557);
}

.page-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.notice-card {
    width: min(100%, 760px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}

.status-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.status-item {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.value {
    font-size: 0.95rem;
    color: var(--text);
}

.support-copy {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.action-link,
.secondary-link {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.action-link {
    color: #03111f;
    background: linear-gradient(90deg, var(--accent), #9eeeff);
}

.secondary-link {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.action-link:hover,
.action-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
    filter: brightness(1.05);
}

@media (max-width: 680px) {
    .notice-card {
        padding: 24px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
}