:root {
    color-scheme: dark;
    --background: #070a12;
    --card: rgba(15, 21, 36, 0.82);
    --border: rgba(124, 92, 255, 0.25);
    --text: #f5f7ff;
    --muted: #9ba6bd;
    --accent: #7c5cff;
    --accent-light: #a995ff;
    --success: #43e6a3;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: hidden;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.22), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(67, 230, 163, 0.12), transparent 32%),
        var(--background);
}

body::before {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(124, 92, 255, 0.12);
    filter: blur(90px);
    animation: float 7s ease-in-out infinite;
}

.status-card {
    position: relative;
    width: min(100%, 560px);
    padding: 48px 42px 36px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--card);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.status-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--accent), #5637d9);
    box-shadow: 0 16px 42px rgba(124, 92, 255, 0.38);
    transform: rotate(-4deg);
}

.status-icon span {
    width: 38px;
    height: 20px;
    border-left: 5px solid white;
    border-bottom: 5px solid white;
    transform: translateY(-4px) rotate(-45deg);
}

.status-label {
    margin: 0 0 10px;
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

h1 {
    margin: 0;
    font-size: clamp(38px, 8vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.description {
    max-width: 430px;
    margin: 22px auto 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.status-row {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border: 1px solid rgba(67, 230, 163, 0.2);
    border-radius: 999px;
    color: #bdf8df;
    background: rgba(67, 230, 163, 0.08);
    font-size: 14px;
    font-weight: 600;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 16px var(--success);
    animation: pulse 1.8s ease-in-out infinite;
}

.server-time {
    margin: 22px 0 0;
    color: #747f96;
    font-size: 13px;
}

footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #737d92;
    font-size: 14px;
}

footer strong {
    color: var(--text);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(-150px, -80px);
    }

    50% {
        transform: translate(150px, 80px);
    }
}

@media (max-width: 560px) {
    .status-card {
        padding: 38px 24px 30px;
        border-radius: 22px;
    }

    .status-icon {
        width: 74px;
        height: 74px;
        border-radius: 20px;
    }
}
