@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #061428;
  --text: #f4f7fb;
  --muted: #8fafc8;
  --blue: #7bafd4;
  --line: rgba(75, 156, 211, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--blue); }

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

nav a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

nav a[aria-current="page"] {
  background: rgba(75, 156, 211, 0.2);
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 64px;
  flex: 1;
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0 0 8px;
}

h1 {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: 1px;
  margin: 0 0 16px;
}

h2 {
  color: var(--blue);
  font-size: 20px;
  margin: 28px 0 10px;
}

.intro, p { color: var(--text); }
.intro { font-size: 17px; }

.updated, footer {
  color: var(--muted);
  font-size: 14px;
}

footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(19, 41, 75, 0.55);
  text-decoration: none;
  color: inherit;
}

.card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.card span { color: var(--muted); }

.home h1 { font-size: clamp(48px, 12vw, 84px); }
