:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #eaeaea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.site-header {
  border-bottom: 1px solid #222;
}

.site-header-inner {
  padding: 1.5rem 2rem;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #eaeaea;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.75rem;
}

.brand .logo {
  width: 56px;
  height: 56px;
  filter: invert(1);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.links a {
  color: #eaeaea;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.links a:hover {
  color: #fff;
  border-color: #eaeaea;
}

.wrap {
  padding: 2.5rem 2rem 4rem;
}

.tagline {
  margin: 1.25rem 0 0;
  color: #999;
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgb(0, 255, 0);
}

.blurb {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.embeds {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.embed-card {
  border: 1px solid #222;
  background: #000;
  overflow: hidden;
}

.embed-card iframe {
  display: block;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.flyer-card img {
  display: block;
  width: 100%;
  height: auto;
}

.event-links {
  margin: 0;
  font-size: 0.9rem;
}

.event-links a {
  color: #eaeaea;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 1px;
}

.event-links a:hover {
  color: #fff;
  border-color: #eaeaea;
}
