/* Simple Hudl-inspired dark theme */
:root {
  --bg: #0f1115;
  --bg-2: #161922;
  --text: #eef2f7;
  --muted: #a8b3c7;
  --accent: #00b3ff;
  --card: #1b1f2a;
  --border: #2a3142;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

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

.site-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.logo { width: 48px; height: 48px; }
.brand-text h1 { margin: 0; font-size: 1.25rem; font-weight: 700; letter-spacing: .2px; }
.sub { margin: .1rem 0 0; color: var(--muted); font-size: .9rem; }

.nav a {
  color: var(--text); text-decoration: none; font-weight: 700; margin-left: 1rem;
  padding: .4rem .6rem; border-radius: .5rem;
}
.nav a:hover { background: var(--bg-2); }

.section { padding: 2.5rem 0; }
.section-contrast { background: var(--bg-2); }

h2 { font-size: 1.5rem; margin: 0 0 1rem; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.video-wrap, .calendar-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.video-wrap iframe,
.calendar-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 10px;
}
.calendar-wrap iframe { height: 720px; }

.ext-link a { color: var(--accent); font-weight: 700; text-decoration: none; }
.ext-link a:hover { text-decoration: underline; }

.roster {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.roster li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .9rem 1rem;
  font-weight: 700;
}

.site-footer {
  background: #000; border-top: 1px solid var(--border);
  padding: 1.25rem 0; text-align: center; color: var(--muted);
}

/* Responsive */
@media (max-width: 720px) {
  .nav { display: none; }
  .brand-text h1 { font-size: 1.05rem; }
  .video-wrap iframe { height: 280px; }
  .calendar-wrap iframe { height: 620px; }
}


/* Schedule list */
.schedule-list-wrap { padding: 0; }
.schedule-list { list-style: none; margin: 0; padding: 0; }
.schedule-list .event {
  border-bottom: 1px solid var(--border);
  padding: .9rem 1rem;
}
.schedule-list .event-title { font-weight: 800; margin-bottom: .15rem; }
.schedule-list .event-meta { color: var(--muted); font-size: .95rem; }
.schedule-list .separator {
  background: #00000033; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); padding: .5rem 1rem; margin-top: .5rem;
}
.error { color: #ff6b6b; padding: .75rem 1rem; }


.calendar-fallback { margin-top: 1rem; }
