*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0b;
  --fg: #f2f0ea;
  --accent: #ff2d55;
  --accent-dim: #c41e3a;
  --tape: #f5e000;
  --border: #1f1f22;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 0 var(--tape);
}

.tag {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tape);
}

.hero-photo {
  margin: 0.75rem auto 1.1rem;
  max-width: 13.5rem;
  border: 3px solid var(--fg);
  box-shadow: 6px 6px 0 var(--accent), 0 0 0 2px var(--tape);
  transform: rotate(-2deg);
  overflow: hidden;
  background: #141416;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.name {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.5rem, 18vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: var(--fg);
  text-shadow: 4px 4px 0 var(--accent);
}

.name-o {
  color: var(--tape);
  text-shadow: 4px 4px 0 var(--accent);
}

.blurb {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: #9a9690;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 0 2rem;
  border: 3px solid var(--fg);
  box-shadow: 6px 6px 0 var(--accent), 0 0 0 2px var(--tape);
  transform: rotate(1deg);
  overflow: hidden;
  background: #141416;
}

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

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.link-section {
  margin: 1rem 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--tape);
  text-transform: uppercase;
}

.link {
  display: block;
  padding: 0.95rem 1.1rem;
  text-align: center;
  text-decoration: none;
  color: var(--bg);
  background: var(--fg);
  border: 3px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.link:hover {
  background: var(--tape);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}

.link:focus-visible {
  outline: 2px solid var(--tape);
  outline-offset: 3px;
}

.link:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--accent-dim);
}

.foot {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: #5c5a56;
}

.foot p {
  margin: 0;
}
