:root {
  color-scheme: light dark;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
}

body {
  margin: 0;
  padding: 0 2rem 2rem;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

header {
  padding: 2rem 0 1rem;
}

h1 {
  margin: 0;
  font-size: 2.4rem;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.panel {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.35);
  backdrop-filter: blur(12px);
}

.panel h2 {
  margin-top: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #38bdf8;
}

.tag {
  display: inline-block;
  margin: 0.2rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  font-size: 0.75rem;
}

.event {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
}

.event h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.event pre {
  margin: 0.3rem 0 0;
  background: rgba(15, 23, 42, 0.65);
  padding: 0.8rem;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.75rem;
}

.timestamp {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}
