:root {
  color-scheme: dark;
  --brand-accent: #2e8bff;
  --bg-main: #02040a;
  --bg-header: #050814;
  --bg-footer: #050814;
  --text-main: #e5e9ff;
  --text-muted: #8a90b0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  background: radial-gradient(circle at top left, #141a33, #050814 45%, #02040a 100%);
  border-bottom: 1px solid #101428;
}

.site-navbar {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: #ffffff;
}

.brand-main span.highlight {
  color: var(--brand-accent);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.site-navbar .nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-inline: .6rem;
}

.site-navbar .nav-link:hover {
  color: #ffffff;
}

.site-navbar .nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.site-navbar .navbar-toggler {
  border-color: #343956;
}

.site-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Online now in header right */
.nav-online-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-online-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4cd964;
  min-width: 1.5rem;
  text-align: right;
  display: inline-block;
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid #101428;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
