:root{
    --bg:#0f1720;
    --card:#0b1220;
    --accent:#d9534f;
    --muted:#9aa6b2;
    --glass: rgba(255,255,255,0.03);
    --maxw:980px;
    --mono: "SFMono-Regular", Menlo, Monaco, "Roboto Mono", monospace;
}
/* Make sure the page takes the full viewport height */
html, body {
  height: 100%;
  margin: 0;
}
html{
    background: linear-gradient(170deg,#585353 0%, #242527 100%);
    /* optional but often helps keep it consistent -- otherwise the gradient might crack on long pages */
    background-attachment: fixed;
}
/* Use Flexbox on the body to control layout flow */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full viewport height */

  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#e6eef6;
  line-height: 1.5;
  background: transparent;
}

/* Let the main section grow to fill space between header and footer */
/* in this new style the main wraps the content except the footer in order to
center and limit it properly without affecting the footer
*/
main {
  flex: 1;
  padding: 1rem 2rem 1rem 2rem;
  box-sizing: border-box;
  max-width:var(--maxw);
  align-items: center;
  width: 100%;
  margin: auto;
}
/* Optional styling for header/footer to visualize */
header {
  color: white;
  padding: 2rem 0rem 1rem 0rem;
  display:flex;
  align-items:center;
  gap:18px;
  max-width:var(--maxw);
}
nav{
    margin:0;
    padding: 1rem 0 1rem 0rem;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    max-width:var(--maxw);
}

footer {
  background: #222;
  color: #ccc;
  padding: 1rem;
  text-align: center;
}

h2{ margin:6px 0 12px; font-size:18px }
h1{ font-size:20px; margin:0; letter-spacing:-0.2px }
p.lead{ margin:6px 0 0; color:var(--muted); font-size:13px }

.logo{
    width:72px;
    height:72px;
    border-radius:12px;
    background:linear-gradient(135deg,#222 0%, #111 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    border:1px solid rgba(255,255,255,0.02);
    font-weight:700;
    color:var(--accent);
    font-family:var(--mono);
}
.card{
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius:12px;
    padding:20px;
    border:1px solid rgba(255,255,255,0.03);
    box-shadow: 0 10px 30px rgba(2,6,23,0.6);
    overflow:hidden;
}
a.btn{
    text-decoration:none;
    color:#0b1220;
    background:var(--accent);
    padding:8px 12px;
    border-radius:8px;
    font-weight:600;
    font-size:13px;
    box-shadow:0 6px 14px rgba(217,83,79,0.12);
}
.kicker{
    color:var(--accent);
    font-weight:700;
    font-size:12px;
    letter-spacing:0.6px;
}