/* src/css/default.css */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  background: #000;
  font-family:
    "Courier New",
    Courier,
    monospace;
  color: white;
  overflow-x: hidden;
}
a {
  color: white;
}
a:hover {
  color: #dddddd;
}
a:visited {
  opacity: 0.8;
}
.bg-shader-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.corner-video-link {
  position: fixed;
  top: 12px;
  left: 12px;
  width: 98px;
  height: 98px;
  z-index: 5;
  display: block;
  cursor: pointer;
  mix-blend-mode: screen;
}
.corner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
nav.site-nav {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 1.25em;
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4em 0.9em;
  border-radius: 6px;
}
nav.site-nav a {
  text-decoration: none;
  opacity: 0.8;
}
nav.site-nav a:hover,
nav.site-nav a.active {
  opacity: 1;
}
.view-fade {
  animation: view-fade-in 220ms ease both;
}
@keyframes view-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.view-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash {
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  max-width: 90vw;
}
.splash-name {
  margin: 0 0 0.4em;
  font-size: 1.6em;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}
.splash-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 1.5em;
  font-weight: bold;
}
.splash-links a {
  opacity: 0.85;
}
.splash-links a:hover {
  opacity: 1;
}
.splash-upcoming {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0.8;
  font-size: 0.9em;
}
.splash-upcoming li {
  margin: 0.3em 0;
}
.splash-upcoming a {
  text-decoration: none;
}
.splash-upcoming a:hover {
  text-decoration: underline;
}
.view-about,
.view-events {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 8vh 24px 10vh;
  background: rgba(0, 0, 0, 0.55);
  min-height: 100vh;
}
.view-about h2,
.view-events h2 {
  text-transform: lowercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3em;
}
.view-about section {
  max-width: 640px;
  margin-bottom: 3em;
}
.view-about .placeholder {
  opacity: 0.5;
  font-style: italic;
}
.event-card,
.archive-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.5em;
  margin-bottom: 2.5em;
  padding-bottom: 2em;
  border-bottom: 1px solid #222;
}
.event-card-media,
.archive-card-media {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.media-fade {
  opacity: 0;
  transition: opacity 350ms ease;
}
.media-fade-in {
  opacity: 1;
}
.archive-card-media-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.event-card-meta,
.archive-card-meta {
  opacity: 0.7;
  margin: 0.2em 0;
}
.event-card-description,
.archive-card-description {
  white-space: pre-line;
  line-height: 1.5;
}
.event-card-tickets {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.4em 1em;
  border: 1px solid white;
  border-radius: 3px;
  text-decoration: none;
}
@media (max-width: 640px) {
  .event-card,
  .archive-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  html,
  body {
    font-size: 18px;
  }
  nav.site-nav {
    top: 8px;
    right: 8px;
    gap: 1em;
    font-size: 1em;
    padding: 0.5em 0.8em;
  }
  .corner-video-link {
    width: 76px;
    height: 76px;
  }
  .splash-name {
    font-size: 1.4em;
  }
  .splash-links {
    gap: 1.1em;
    font-size: 1.05em;
  }
  .splash-upcoming {
    font-size: 1em;
  }
  .view-about,
  .view-events {
    padding: 14vh 18px 10vh;
  }
  .event-card,
  .archive-card {
    gap: 1em;
  }
}
