:root {
    --bg: #0a0a0a;
    --fg: #e8e8e8;
    --muted: #666;
    --accent: #ef212b;
    --muted_accent: #bd1a23;
    --card: #111;
    --border: #222;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(239, 33, 43, 0.06) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}
.container {
    position: relative;
    max-width: 940px;
    width: 100%;
}
.status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow:
        0 0 12px var(--accent),
        0 0 30px rgba(239, 33, 43, 0.3);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
.status-text {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}
h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
h1 span {
    color: var(--accent);
}
.subtitle {
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.card p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.card p a {
    color: var(--muted_accent);
}
.card p a:hover {
    color: var(--accent);
}
.card p a:visited {
    color: var(--muted_accent);
}
.cmd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.65rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: border-color 0.2s;
}
.cmd:hover {
    border-color: var(--accent);
}
.cmd:last-child {
    margin-bottom: 0;
}
.cmd code {
    font-family: inherit;
}
.cmd .label {
    color: var(--muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    margin-left: 1rem;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.info-cell {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.65rem 1rem;
}
.info-cell .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.info-cell .value {
    font-size: 1.25rem;
}
.footer {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}
pre {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    transition: border-color 0.2s;
}
pre:hover {
    border-color: var(--accent);
}
pre code {
    font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
    font-size: 1.5rem;
    line-height: 1.6;
}
.hljs {
    background: transparent !important;
    padding: 0 !important;
}
@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
