    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: #0f172a;
      color: #e5e7eb;
      min-height: 100vh;
    }

    main {
      max-width: 820px;
      padding: 2.75rem;
      margin: 0 auto;
    }

    h1,
    h2 {
      font-family: "DM Serif Display", Georgia, serif;
      letter-spacing: -0.01em;
    }

    h1 {
      font-size: 2.4rem;
      margin-bottom: 0.75rem;
    }

    h2 {
      margin-top: 2.5rem;
      margin-bottom: 0.75rem;
    }

    p {
      color: #cbd5f5;
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    .tagline {
      color: #94a3b8;
      font-size: 1.05rem;
    }

    .site-logo {
      display: block;
      max-width: 320px;
      width: 100%;
      height: auto;
      margin-bottom: 1.5rem;
    }

    .box {
      background: #1e293b;
      padding: 1rem;
      border-radius: 0.5rem;
    }

    .news-item {
      padding: 0.6rem 0;
    }

    .news-item a {
      color: #a78bfa;
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
    }

    .news-item a:hover {
      text-decoration: underline;
    }

    .muted {
      color: #64748b;
    }

    .error {
      color: #fca5a5;
      font-size: 0.9rem;
      white-space: pre-wrap;
    }

    .back-link {
      display: inline-block;
      margin-bottom: 1.5rem;
      color: #a78bfa;
      text-decoration: none;
      font-weight: 600;
    }

    .back-link:hover {
      text-decoration: underline;
    }

    article {
      max-width: 720px;
    }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: #111827;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card h4 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.5rem;
}

.card-meta {
  font-size: 0.8rem;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.card-links a {
  color: #a78bfa;
  text-decoration: none;
}

.card-links a:hover {
  text-decoration: underline;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-inline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.field span {
  font-weight: 600;
  color: #cbd5e1;
}

input,
textarea {
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #a78bfa;
  outline-offset: 1px;
}

textarea {
  min-height: 140px;
}

.btn {
  background: linear-gradient(120deg, #a78bfa, #6366f1);
  border: none;
  color: white;
  padding: 0.7rem 1.1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:active {
  filter: brightness(0.95);
}

.btn-secondary {
  background: #1f2937;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.btn-danger {
  background: #ef4444;
}

.actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.small {
  font-size: 0.9rem;
}
.site-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.site-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.4rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.site-nav,
.main-nav {
  display: flex;
  gap: 1.75rem;
  margin: 1.5rem 0 2.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  flex-wrap: wrap;
}

.site-nav a,
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c7d2fe;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.main-nav a:hover {
  color: #a78bfa;
  text-decoration: underline;
}

.site-nav a.active,
.main-nav a.active {
  color: #a78bfa;
  text-decoration: underline;
}
