html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ---------- Sieghardt theme ---------- */
:root {
  --gold: #f5b042;
  --gold-2: #ffd97a;
}

.navbar-brand { letter-spacing: .04em; }

/* Hero */
.hero {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #2a2c36;
  background: #0a0b10 center / cover no-repeat;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,.8);
}
.hero::after { /* subtle top sheen */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.25rem 4rem;
  text-align: center;
}
.hero-title {
  font-weight: 800;
  letter-spacing: .12em;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  margin: .25rem 0 .35rem;
  color: #fff;
  text-shadow: 0 2px 30px rgba(245,176,66,.35), 0 1px 2px rgba(0,0,0,.6);
}
.hero-title .accent { color: var(--gold-2); }
.hero-sub { color: rgba(255,255,255,.72); }
.hero-tag { color: rgba(255,255,255,.55); letter-spacing:.02em; }
.crest { width: 64px; height: 64px; filter: drop-shadow(0 4px 14px rgba(245,176,66,.45)); }

/* Status pill */
.pill-live {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; padding: .35rem .9rem;
  font-size: .8rem; font-weight: 600;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
}
.pill-live .dot { width:.55rem; height:.55rem; border-radius:50%; }
.pill-live.on  .dot { background:#22c55e; box-shadow:0 0 10px #22c55e; }
.pill-live.off .dot { background:#ef4444; box-shadow:0 0 10px #ef4444; }

/* Buttons */
.btn-gold {
  --bs-btn-color:#1a1407;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: none; color:#1a1407; font-weight:700;
  box-shadow: 0 8px 22px -10px rgba(245,176,66,.8);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn-gold:hover { color:#1a1407; transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 12px 28px -10px rgba(245,176,66,.9); }
.btn-ghost {
  border:1px solid rgba(255,255,255,.35); color:#fff; font-weight:600;
  background: rgba(255,255,255,.04); transition: background .12s ease, border-color .12s ease;
}
.btn-ghost:hover { color:#fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

/* Feature / section icon chip */
.ico-chip {
  width:44px; height:44px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg, rgba(245,176,66,.18), rgba(245,176,66,.06));
  border:1px solid rgba(245,176,66,.30); color: var(--gold-2);
}
.ico-chip svg { width:22px; height:22px; }

/* Cards a touch more refined */
.card { border-color:#262833; }
.card:hover { border-color:#33363f; }

/* Crisp inline icons inline with text */
.i { width:1em; height:1em; vertical-align:-.125em; }