/* Minimal, clean styling for GAMI */
<!-- :root {
  --bg: #0b1020;
  --panel: #0f172a;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --accent: limegreen;
  --accent-2: #22d3ee;
  --border: #1f2a44;
  --radius: 1.25rem;
} -->
:root {
  --bg: #0b1020;
  --panel: #0f172a;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --accent: #32CD32;   /* LimeGreen */
  --accent-2: #A3E635; /* Lime 500-ish */
  --border: #1f2a44;
  --radius: 1.25rem;

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, #0b1b3a 0%, var(--bg) 60%);
}

.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 92%, black);
}
.site-header .container { display:flex; align-items:center; justify-content:space-between; padding: 0.75rem 0; }
.brand { display:flex; align-items:center; gap:.6rem; text-decoration:none; color:var(--text); font-weight:700; letter-spacing:.2px; }
.brand .logo { font-size:1.35rem; }
.brand .brand-text { font-size:1.05rem; }

.nav { display:flex; gap:.5rem; list-style:none; margin:0; padding:0; }
.nav a {
  display:inline-block; padding:.5rem .9rem; border-radius: .75rem;
  color: var(--text); text-decoration:none;
  transition: all .18s ease;
}
.nav a:hover { background: #0f243e; }
.nav a.active { background: #0b3560; color: white; }

.hero { padding: 4rem 0 2rem; text-align:center; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); line-height:1.15; margin:.5rem 0 1rem; }
.lead { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.15rem); max-width: 70ch; margin-inline:auto; }

.grad { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.cta { margin-top:1.25rem; display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }
.button {
  padding:.7rem 1rem; border-radius: .9rem; border:1px solid var(--border);
  color: var(--text); text-decoration:none; display:inline-block;
}
.button.primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color:#001225; font-weight:700; border:none; }

.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:1rem; padding:2rem 0 3rem; }
.card {
  background: var(--panel); border:1px solid var(--border); border-radius: var(--radius);
  padding:1.1rem 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.card h2 { margin-top:0; }
.text-link { color: var(--accent); text-decoration:none; font-weight:600; }
.text-link:hover { text-decoration: underline; }

.grid.two { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.unstyled { list-style:none; padding:0; margin:.25rem 0 0; }

.list article { margin: 1rem 0; padding:1rem; border:1px dashed var(--border); border-radius: var(--radius); background: #0f152b; }
.list article h2 { margin-top:0; }

.events { display:grid; gap:.75rem; margin: 1rem 0 2rem; }
.event { display:flex; gap:.9rem; align-items:center; background: #0f152b; border:1px solid var(--border); border-radius: var(--radius); padding:.8rem; }
.event-date {
  width:64px; height:64px; border-radius:1rem; background:#0b3560; color:white; display:grid; place-items:center;
  line-height:1; border:1px solid var(--border);
}
.event-date .d { font-size:1.35rem; font-weight:800; }
.event-date .m { font-size:.9rem; opacity:.9; text-transform:uppercase; letter-spacing:.08em; }
.event-body h2 { margin:.1rem 0 .2rem; font-size:1.1rem; }

.site-footer { border-top:1px solid var(--border); margin-top: 3rem; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; padding:1rem 0; color:var(--muted); }
.footer-inner a { color: var(--muted); }
@media (max-width: 560px) {
  .footer-inner { flex-direction:column; gap:.5rem; }
}
