:root {
--bg: #1f1f1f;
--text: #ffffff;
--muted: #888888;
--link: #bbbbbb;
--link-hover: #ffffff;
--border: #3d3d3d;
--surface: #262626;
--surface-soft: #232323;
}

* {
  box-sizing: border-box;
  }

html,
body {
margin: 0;
min-height: 100%;
}

body {
background-color: var(--bg);
color: var(--text);
font-family: "Roboto Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.6;
}

a {
color: var(--link);
text-decoration: none;
transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
color: var(--link-hover);
}

a:focus-visible {
outline: 1px solid var(--muted);
outline-offset: 4px;
}

.site-header {
position: absolute;
top: 20px;
left: 20px;
right: 20px;
display: flex;
align-items: flex-start;
justify-content: space-between;
z-index: 10;
}

.logo-link {
display: inline-flex;
align-items: center;
}

.logo {
width: 150px;
height: auto;
max-width: 100%;
}

.top-nav {
display: flex;
gap: 18px;
font-size: 0.85rem;
}

.top-nav a::before {
content: "// ";
color: #666666;
}

.home-page {
height: 100vh;
overflow: hidden;
}

.ops-main {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 120px 20px 40px;
}

.ops-panel {
width: min(520px, 100%);
text-align: left;
}

.eyebrow {
margin: 0 0 12px;
color: var(--muted);
font-size: 0.78rem;
letter-spacing: 0.18em;
text-transform: uppercase;
}

.ops-panel h1,
.content-page h1 {
margin: 0;
color: var(--text);
font-size: 2rem;
font-weight: 700;
letter-spacing: 0.02em;
}

.tagline {
margin: 6px 0 28px;
color: var(--muted);
font-size: 1rem;
}

.status-block {
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--surface), var(--surface-soft));
padding: 18px 20px;
}

.status-row {
display: flex;
justify-content: space-between;
gap: 24px;
padding: 9px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
font-size: 0.92rem;
}

.status-row:last-child {
border-bottom: 0;
}

.status-row span {
color: var(--muted);
}

.status-row strong {
color: var(--text);
font-weight: 400;
text-align: right;
}

.content-page {
max-width: 760px;
width: 100%;
margin: 0 auto;
padding: 130px 20px 50px;
}

.content-page h1 {
border-bottom: 1px solid var(--border);
padding-bottom: 10px;
}

.content-page h2 {
margin: 0 0 8px;
color: var(--text);
font-size: 1.1rem;
}

.content-page p {
color: #aaaaaa;
font-size: 0.98rem;
}

.info-box {
margin: 26px 0;
padding: 18px;
background-color: var(--surface);
border-left: 3px solid #555555;
}

.back-link {
display: inline-block;
margin-top: 34px;
font-size: 0.9rem;
color: var(--muted);
}

@media (max-width: 700px) {
.site-header {
position: static;
padding: 18px;
flex-direction: column;
align-items: center;
gap: 20px;
}

.logo {
    width: 120px;
}

.top-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.home-page {
    height: auto;
    min-height: 100vh;
    overflow: auto;
}

.ops-main {
    min-height: 60vh;
    height: auto;
    padding: 40px 18px;
}

.ops-panel {
    text-align: left;
}

.status-row {
    flex-direction: column;
    gap: 2px;
}

.status-row strong {
    text-align: left;
}

.content-page {
    padding: 40px 20px;
}

}
