:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100dvh;
  background: #0d0c08;
  color: #f8f7f5;
  font-family: -apple-system, system-ui, sans-serif;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: #16150f;
  border-bottom: 1px solid #26241f;
}
header .brand { font-weight: 700; color: #5a9c78; margin-right: 12px; font-size: 1.05rem; }
header a {
  color: #9c968a;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
}
header a.active { background: #1f6f45; color: white; }
main { max-width: 480px; margin: 0 auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
h1 { font-size: 1.2rem; margin: 4px 0 0; }
p.lede { color: #9c968a; font-size: 0.9rem; margin: 0 0 4px; }
.card {
  background: #16150f;
  border: 1px solid #26241f;
  border-radius: 12px;
  padding: 14px;
}
.event { border-left: 4px solid #1f6f45; display: flex; gap: 12px; }
.event.social { border-left-color: #f43f5e; }
.event .date { width: 48px; flex-shrink: 0; text-align: center; }
.event .date .dow { font-size: 0.65rem; text-transform: uppercase; color: #9c968a; }
.event .date .day { font-size: 1.4rem; font-weight: 600; }
.event .date .mon { font-size: 0.65rem; text-transform: uppercase; color: #9c968a; }
.event .body { flex: 1; min-width: 0; }
.event .title { font-weight: 600; margin: 0 0 2px; }
.event .meta { font-size: 0.8rem; color: #9c968a; margin: 0 0 8px; }
.event button {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #3d3a35;
  background: transparent;
  color: #f8f7f5;
}
.event button.sent { border-color: #5a9c78; color: #5a9c78; }
.status { font-size: 0.8rem; color: #5a9c78; min-height: 1.2em; }
.avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: #1f6f45; color: white; display: flex;
  align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem;
  flex-shrink: 0;
}
.group-member { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.big-btn {
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: #1f6f45;
  color: white;
  font-weight: 600;
  width: 100%;
}
.big-btn:disabled { opacity: 0.5; }
