:root {
  --bg: #0b0c10;
  --bg-alt: #11131a;
  --fg: #f5f5f5;
  --muted: #b0b3c0;
  --accent: #ffcc33;
  --accent-soft: rgba(255, 204, 51, 0.12);
  --border: #2a2d3a;
  --mono: "Fira Code", monospace;
  --sans: system-ui, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #05060a;
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.9rem;
  background: var(--accent);
  color: #000;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.brand-text h1 span {
  color: var(--accent);
}

.tagline {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 204, 51, 0.35);
  font-size: 0.98rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
}

h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--accent);
}

.card {
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}

.card-accent {
  border-color: rgba(255, 204, 51, 0.5);
  background: radial-gradient(circle at top left, rgba(255, 204, 51, 0.18), var(--bg-alt));
}

ul {
  padding-left: 1.1rem;
}

li {
  margin: 0.2rem 0;
}

.muted {
  color: var(--muted);
}

.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.glow-button {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  background: var(--accent);
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 204, 51, 0.8);
  box-shadow: 0 0 12px rgba(255, 204, 51, 0.45);
  transition: all 0.25s ease;
}

.glow-button:hover {
  background: #ffe27a;
  box-shadow: 0 0 22px rgba(255, 204, 51, 0.75),
              0 0 40px rgba(255, 204, 51, 0.45);
  transform: translateY(-2px);
}

.glow-button:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.4);
}
.wb-button-safe {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  background: #1a1c22;
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}

.wb-button-safe:hover {
  background: #2a2d35;
  border-color: #ffd75a;
}
.wb-button-min {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}
.status-card p a.glow-link {
  color: #f0c040 !important;
  text-decoration: none;
  font-weight: 600;
}

.status-card p a.glow-link:hover {
  color: #ffdd66 !important;
}


