/*
 * Page-specific overrides. Loaded after the SCUTOONS brand sheets
 * (fonts.css / styles.css / animations.css), so this wins where they clash.
 * Brand gives us: IBM Plex Mono, the --primary-color / acid-* palette,
 * sharp (radius-0) edges, and the responsive 14/16/24px root font-size.
 */

@font-face {
  font-family: 'Seoul Rave';
  src: url('./assets/SeoulRave-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  padding: 0;
  background: #000; /* brand body is white — we stay black */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Whole video surface is a link to the Bandcamp page. */
#scene-link {
  position: fixed;
  inset: 0;
  display: block;
  cursor: pointer;
}

#scene {
  display: block;
  width: 100%;
  height: 100%;
}

/* Logo docked bottom-centre; links to scutoons.com. */
.logo-link {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  line-height: 0;
}

#logo {
  display: block;
  height: 2.5rem; /* half size */
  width: auto;
  animation: wiggle-full 4s ease-in-out infinite; /* brand wiggle */
}

/* Tour dates, centred over the video. */
#gigs {
  position: fixed;
  inset: 0;
  z-index: 20;
  margin: 0;
  padding: 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  pointer-events: none;
  font-family: 'Seoul Rave', 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}

#gigs li {
  pointer-events: auto;
}

#gigs a {
  color: inherit;
  text-decoration: none;
}

#gigs li:hover {
  font-style: italic;
}
