body {
    background:
        radial-gradient(circle at top right, rgba(239,68,68,.25), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111827 55%, #050505 100%);

    color: var(--color-text-light);
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.hero {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 34px;
    align-items: center;
}

.card {
    background: rgba(17,24,39,.86);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.label {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 86px);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.subtitle {
    margin: 22px 0 0;
    color: var(--color-muted-light);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    max-width: 650px;
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;

    letter-spacing: .4px;
    text-transform: uppercase;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.live {
    background: var(--color-primary);
    box-shadow: 0 0 28px rgba(239,68,68,.45);
}

.button.live:hover {
    box-shadow: 0 0 36px rgba(239,68,68,.62);
}

.button.admin {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

.button.admin:hover {
    background: rgba(255,255,255,.12);
}

.side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.status-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 26px;
    backdrop-filter: blur(12px);
}

.live-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--color-live);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 20px var(--color-live);
}

.status-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.status-text {
    color: var(--color-muted-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.logo-ficr {
    max-width: 160px;
    height: auto;
    display: block;
    margin-top: 18px;
}

footer {
    position: fixed;
    left: 28px;
    bottom: 20px;
    color: var(--color-soft);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 850px) {

    .page {
        align-items: flex-start;
        padding: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px;
        border-radius: 24px;
    }

    h1 {
        font-size: clamp(44px, 15vw, 72px);
    }

    .subtitle {
        font-size: 18px;
    }

    .actions {
        gap: 12px;
    }

    .button {
        width: 100%;
    }

    footer {
        position: static;
        padding: 0 20px 20px;
    }
}