:root {
  --shadow-color: #00d0ff;
  --shadow-color-light: white;
  
  /* Typography grid - font-size / line-height pairs */
  --font-xxs: 0.75rem;      /* 12px */
  --line-xxs: 1rem;         /* 16px */
  --font-xs: 0.875rem;      /* 14px */
  --line-xs: 1.125rem;      /* 18px */
  --font-sm: 1rem;          /* 16px */
  --line-sm: 1.25rem;       /* 20px */
  --font-base: 1.125rem;    /* 18px */
  --line-base: 1.375rem;    /* 22px */
  --font-md: 1.375rem;      /* 22px */
  --line-md: 1.75rem;       /* 28px */
  --font-lg: 1.625rem;      /* 26px */
  --line-lg: 2rem;          /* 32px */
  --font-xl: 2rem;          /* 32px */
  --line-xl: 2.5rem;        /* 40px */
  --font-2xl: 2.5rem;       /* 40px */
  --line-2xl: 3.125rem;     /* 50px */
  --font-3xl: 3.125rem;     /* 50px */
  --line-3xl: 3.90625rem;   /* 62.5px */
  --font-4xl: 3.5rem;       /* 56px - rounded to grid */
  --line-4xl: 4.375rem;     /* 70px - 1.25 ratio */
  --font-5xl: 5.5rem;       /* 88px - rounded to grid */
  --line-5xl: 6.875rem;     /* 110px - 1.25 ratio */
  --font-6xl: 14rem;        /* 224px - large display */
  --line-6xl: 17.5rem;      /* 280px - 1.25 ratio */
}

html {
  font-size: 100%;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #000d1a 0%, #000000 30%, #000000 100%);
  color: #00d0ff;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  min-height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}

body img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  grid-column: 1;
  grid-row: 1;
  opacity: .7;
  z-index: 0;
}

canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  display: block !important;
  pointer-events: none !important;
  will-change: transform !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  isolation: isolate !important;
  opacity: 0.001;
  transition: opacity 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.revealed canvas {
  opacity: 1;
}

audio {
  display: none;
}

#button {
  font-size: var(--font-lg);
  line-height: var(--line-lg);
  position: fixed;
  bottom: 1.25rem; /* 20px - tighter spacing */
  left: 1.25rem; /* 20px - tighter spacing */
  padding: 0.5rem; /* 8px - 4px grid */
  border: 2px solid #ff00ff;
  border-radius: 50%;
  outline: none;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  width: 40px; /* 40px - 4px grid */
  height: 40px; /* 40px - 4px grid */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d0ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

#button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: -1;
}

#button:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
  transform: scale(1.05);
}

#button:hover::before {
  background: rgba(255, 0, 255, 0.2);
}

button {
  cursor: pointer;
}

button:active:not(.fade-out),
button.pressed:not(.fade-out) {
  transform: scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

.vaporwave-button:active,
.vaporwave-button.pressed {
  transform: translateZ(0) translateY(0) scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

body.revealed .vaporwave-button:active,
body.revealed .vaporwave-button.pressed {
  transform: translateZ(0) translateY(0) scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

/* Vaporwave Content Styling (in front of mountains) */
.vaporwave-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6vh;
  padding-bottom: 3rem;
  z-index: 10;
  pointer-events: none;
  transform: translateZ(0) scale(0.02);
  opacity: 0.001;
  overflow-y: hidden;
  overflow-x: visible; /* Allow title to overflow horizontally */
  transition: transform 17s cubic-bezier(0.4, 0.15, 0.6, 1.05) 1.2s,
              padding-top 17s cubic-bezier(0.3, 0.09, 0.6, 1.1) 1.2s;
}

body.revealed .vaporwave-content {
  animation: fadeInTitle 17s cubic-bezier(0.4, 0.15, 0.6, 1.05) 1.2s forwards;
  transform: translateZ(0) scale(1);
  pointer-events: auto;
}

@keyframes fadeInTitle {
  0% {
    opacity: 0.001;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.hero-section {
  text-align: center;
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 100%;
  transform: translateZ(0);
  padding-left: 4rem; /* 64px - 4px grid */
  padding-right: 4rem; /* 64px - 4px grid */
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.vaporwave-title {
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-6xl);
  font-weight: 700;
  margin: 0;
  padding: 0;
  padding-bottom: 1rem; /* 16px - 8pt grid, tighter spacing */
  color: white;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: neon 3s infinite;
  line-height: var(--line-6xl);
  width: 100%;
  text-align: center;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  display: block;
  height: auto;
  transform: translateZ(0);
}

/* Glitch effect styles */
.vaporwave-title.glitch:before,
.vaporwave-title.glitch:after {
  display: block;
  content: attr(data-glitch);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-6xl);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: var(--line-6xl);
  text-align: center;
}

.vaporwave-title.glitch:after {
  color: #ff00ff;
  z-index: -2;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.vaporwave-title.glitch:before {
  color: #00d0ff;
  z-index: -1;
  text-shadow: 0 0 20px rgba(0, 208, 255, 0.5);
}

.vaporwave-title.glitch.glitching:before {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
}

.vaporwave-title.glitch.glitching:after {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both 5;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
  }
  40% {
    transform: translate(-5px, -5px);
  }
  60% {
    transform: translate(5px, 5px);
  }
  80% {
    transform: translate(5px, -5px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitchCrazy {
  0% { transform: translate(0); }
  2% { transform: translate(-5px, 5px); }
  4% { transform: translate(-5px, -5px); }
  6% { transform: translate(5px, 5px); }
  8% { transform: translate(5px, -5px); }
  10% { transform: translate(0); }
  12% { transform: translate(-5px, 5px); }
  14% { transform: translate(-5px, -5px); }
  16% { transform: translate(5px, 5px); }
  18% { transform: translate(5px, -5px); }
  20% { transform: translate(0); }
  22% { transform: translate(-5px, 5px); }
  24% { transform: translate(-5px, -5px); }
  26% { transform: translate(5px, 5px); }
  28% { transform: translate(5px, -5px); }
  30% { transform: translate(0); }
  32% { transform: translate(-5px, 5px); }
  34% { transform: translate(-5px, -5px); }
  36% { transform: translate(5px, 5px); }
  38% { transform: translate(5px, -5px); }
  40% { transform: translate(0); }
  42% { transform: translate(-5px, 5px); }
  44% { transform: translate(-5px, -5px); }
  46% { transform: translate(5px, 5px); }
  48% { transform: translate(5px, -5px); }
  50% { transform: translate(0); }
  52% { transform: translate(-5px, 5px); }
  54% { transform: translate(-5px, -5px); }
  56% { transform: translate(5px, 5px); }
  58% { transform: translate(5px, -5px); }
  60% { transform: translate(0); }
  62% { transform: translate(-5px, 5px); }
  64% { transform: translate(-5px, -5px); }
  66% { transform: translate(5px, 5px); }
  68% { transform: translate(5px, -5px); }
  70% { transform: translate(0); }
  72% { transform: translate(-5px, 5px); }
  74% { transform: translate(-5px, -5px); }
  76% { transform: translate(5px, 5px); }
  78% { transform: translate(5px, -5px); }
  80% { transform: translate(0); }
  82% { transform: translate(-5px, 5px); }
  84% { transform: translate(-5px, -5px); }
  86% { transform: translate(5px, 5px); }
  88% { transform: translate(5px, -5px); }
  90% { transform: translate(0); }
  92% { transform: translate(-5px, 5px); }
  94% { transform: translate(-5px, -5px); }
  96% { transform: translate(5px, 5px); }
  98% { transform: translate(5px, -5px); }
  100% { transform: translate(0); }
}

@keyframes neon {
  0% {
    text-shadow: 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
    0 0 30px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color);
  }
  50% {
    text-shadow: 0 0 15px var(--shadow-color-light), 0 0 25px var(--shadow-color-light),
    0 0 40px var(--shadow-color), 0 0 60px var(--shadow-color), 0 0 80px var(--shadow-color);
  }
  100% {
    text-shadow: 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
    0 0 30px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color);
  }
}

/* Test style: Outline with transparent letters */
.vaporwave-title-test {
  font-family: 'Space Mono', monospace;
  font-size: clamp(var(--font-4xl), 12vw, var(--font-6xl));
  line-height: 1.05;
  font-weight: bold;
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  margin-bottom: 0.5rem; /* 8px - spacing between related elements (title and date) */
  color: transparent;
  -webkit-text-stroke: 2px #00d0ff;
  text-stroke: 2px #00d0ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulseGlow 4s ease-in-out infinite;
  width: fit-content;
  max-width: none;
  text-align: center;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  white-space: nowrap;
  display: block;
  height: auto;
  transform: translateZ(0);
  box-sizing: border-box;
  min-width: 0;
  overflow: visible;
}

@media (min-width: 1024px) {
  .vaporwave-title-test {
    font-size: clamp(var(--font-5xl), 14vw, 12.5rem); /* Larger on desktop - max 200px */
  }
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 0px #00d0ff);
  }
  50% {
    filter: drop-shadow(0 0 6px #00d0ff) drop-shadow(0 0 10px #00d0ff) drop-shadow(0 0 14px rgba(0, 208, 255, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 0px #00d0ff);
  }
}

/* Advanced glitch effect layers */
.layers {
  position: relative;
}

.layers::before,
.layers::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible; /* Allow layers to extend beyond button bounds */
}

/* Button layers */
.access-button.layers::before,
.access-button.layers::after,
.vaporwave-button.layers::before,
.vaporwave-button.layers::after {
  font-family: 'Geist Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  padding: inherit;
  color: transparent;
  -webkit-text-stroke: 2px;
  text-stroke: 2px;
  pointer-events: none;
  overflow: visible; /* Don't constrain button size */
  white-space: nowrap; /* Match button text wrapping */
}

.access-button.layers::before {
  top: 2px;
  left: 3px;
  -webkit-text-stroke-color: #e0287d;
  text-stroke-color: #e0287d;
  filter: drop-shadow(0 0 3px rgba(224, 40, 125, 0.8));
}

.access-button.layers::after {
  top: 1px;
  left: -2px;
  -webkit-text-stroke-color: #1bc7fb;
  text-stroke-color: #1bc7fb;
  filter: drop-shadow(0 0 3px rgba(27, 199, 251, 0.8));
}

.vaporwave-button.layers::before {
  top: 2px;
  left: 3px;
  -webkit-text-stroke-color: #e0287d;
  text-stroke-color: #e0287d;
  filter: drop-shadow(0 0 3px rgba(224, 40, 125, 0.8));
}

.vaporwave-button.layers::after {
  top: 1px;
  left: -2px;
  -webkit-text-stroke-color: #1bc7fb;
  text-stroke-color: #1bc7fb;
  filter: drop-shadow(0 0 3px rgba(27, 199, 251, 0.8));
}

.single-path {
  clip-path: polygon(
    0% 12%,
    53% 12%,
    53% 26%,
    25% 26%,
    25% 86%,
    31% 86%,
    31% 0%,
    53% 0%,
    53% 84%,
    92% 84%,
    92% 82%,
    70% 82%,
    70% 29%,
    78% 29%,
    78% 65%,
    69% 65%,
    69% 66%,
    77% 66%,
    77% 45%,
    85% 45%,
    85% 26%,
    97% 26%,
    97% 28%,
    84% 28%,
    84% 34%,
    54% 34%,
    54% 89%,
    30% 89%,
    30% 58%,
    83% 58%,
    83% 5%,
    68% 5%,
    68% 36%,
    62% 36%,
    62% 1%,
    12% 1%,
    12% 34%,
    60% 34%,
    60% 57%,
    98% 57%,
    98% 83%,
    1% 83%,
    1% 53%,
    91% 53%,
    91% 84%,
    8% 84%,
    8% 83%,
    4% 83%
  );
}

.paths {
  animation: paths 5s step-end infinite;
}

@keyframes paths {
  0% {
    clip-path: none;
  }

  25% {
    clip-path: polygon(
      0% 43%,
      83% 43%,
      83% 22%,
      23% 22%,
      23% 24%,
      91% 24%,
      91% 26%,
      18% 26%,
      18% 83%,
      29% 83%,
      29% 17%,
      41% 17%,
      41% 39%,
      18% 39%,
      18% 82%,
      54% 82%,
      54% 88%,
      19% 88%,
      19% 4%,
      39% 4%,
      39% 14%,
      76% 14%,
      76% 52%,
      23% 52%,
      23% 35%,
      19% 35%,
      19% 8%,
      36% 8%,
      36% 31%,
      73% 31%,
      73% 16%,
      1% 16%,
      1% 56%,
      50% 56%,
      50% 8%
    );
  }

  26% {
    clip-path: none;
  }

  55% {
    clip-path: polygon(
      0% 53%,
      93% 53%,
      93% 62%,
      68% 62%,
      68% 37%,
      97% 37%,
      97% 89%,
      13% 89%,
      13% 45%,
      51% 45%,
      51% 88%,
      17% 88%,
      17% 54%,
      81% 54%,
      81% 75%,
      79% 75%,
      79% 76%,
      38% 76%,
      38% 28%,
      61% 28%,
      61% 12%,
      55% 12%,
      55% 62%,
      68% 62%,
      68% 51%,
      0% 51%,
      0% 92%,
      63% 92%,
      63% 4%,
      65% 4%
    );
  }

  56% {
    clip-path: none;
  }

  85% {
    clip-path: polygon(
      0% 26%,
      15% 26%,
      15% 73%,
      72% 73%,
      72% 70%,
      77% 70%,
      77% 75%,
      8% 75%,
      8% 42%,
      4% 42%,
      4% 61%,
      17% 61%,
      17% 12%,
      26% 12%,
      26% 63%,
      73% 63%,
      73% 43%,
      90% 43%,
      90% 67%,
      50% 67%,
      50% 41%,
      42% 41%,
      42% 46%,
      50% 46%,
      50% 84%,
      96% 84%,
      96% 78%,
      49% 78%,
      49% 25%,
      63% 25%,
      63% 14%
    );
  }

  86% {
    clip-path: none;
  }
}

.movement {
  position: relative;
  animation: movement 8s step-end infinite;
}

@keyframes movement {
  0% {
    top: 0px;
    left: 0px;
  }

  30% {
    top: 10px;
    left: 10px;
  }

  31% {
    top: 0px;
    left: 0px;
  }

  65% {
    top: -5px;
    left: 20px;
  }

  66% {
    top: 0px;
    left: 0px;
  }
}

.opacity {
  animation: opacity 5s step-end infinite;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0.7;
  }

  26% {
    opacity: 0;
  }

  55% {
    opacity: 0.6;
  }

  56% {
    opacity: 0;
  }

  85% {
    opacity: 0.8;
  }

  86% {
    opacity: 0;
  }
}

.font {
  animation: font 7s step-end infinite;
}

@keyframes font {
  0% {
    font-weight: 500;
    -webkit-text-stroke-color: #fff;
    text-stroke-color: #fff;
    filter: blur(0);
  }

  35% {
    font-weight: 100;
    -webkit-text-stroke-color: #e0287d;
    text-stroke-color: #e0287d;
    filter: blur(3px);
  }

  36% {
    font-weight: 500;
    -webkit-text-stroke-color: #fff;
    text-stroke-color: #fff;
    filter: blur(0);
  }

  70% {
    font-weight: 700;
    -webkit-text-stroke-color: #1bc7fb;
    text-stroke-color: #1bc7fb;
    filter: blur(2px);
  }

  71% {
    font-weight: 500;
    -webkit-text-stroke-color: #fff;
    text-stroke-color: #fff;
    filter: blur(0);
  }
}

/* Button glitch effect */
.access-button.glitch span,
.vaporwave-button.glitch span {
  position: relative;
  display: inline-block;
  z-index: 2;
  white-space: nowrap;
  animation: paths 5s step-end infinite;
}

.access-button.glitch.layers::before,
.vaporwave-button.glitch.layers::before {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 8s step-end infinite, movement 10s step-end infinite;
}

.access-button.glitch.layers::after,
.vaporwave-button.glitch.layers::after {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 7s step-end infinite, movement 8s step-end infinite;
}

/* Border glitch animation - flickering like an underpowered light bulb */
@keyframes borderGlitch {
  0% {
    border-color: rgba(0, 208, 255, 0.9);
  }
  
  8% {
    border-color: rgba(0, 208, 255, 0.75);
  }
  
  9% {
    border-color: rgba(0, 208, 255, 0);
  }
  
  10% {
    border-color: rgba(0, 208, 255, 0.85);
  }
  
  35% {
    border-color: rgba(0, 208, 255, 0.65);
  }
  
  36% {
    border-color: rgba(0, 208, 255, 0);
  }
  
  37% {
    border-color: rgba(0, 208, 255, 0.92);
  }
  
  62% {
    border-color: rgba(0, 208, 255, 0.78);
  }
  
  63% {
    border-color: rgba(0, 208, 255, 0);
  }
  
  64% {
    border-color: rgba(0, 208, 255, 0.88);
  }
  
  88% {
    border-color: rgba(0, 208, 255, 0.72);
  }
  
  89% {
    border-color: rgba(0, 208, 255, 0);
  }
  
  90% {
    border-color: rgba(0, 208, 255, 0.95);
  }
  
  100% {
    border-color: rgba(0, 208, 255, 0.85);
  }
}

@keyframes borderGlitchMagenta {
  0% {
    border-color: rgba(255, 0, 255, 0.9);
  }
  
  8% {
    border-color: rgba(255, 0, 255, 0.75);
  }
  
  9% {
    border-color: rgba(255, 0, 255, 0);
  }
  
  10% {
    border-color: rgba(255, 0, 255, 0.85);
  }
  
  35% {
    border-color: rgba(255, 0, 255, 0.65);
  }
  
  36% {
    border-color: rgba(255, 0, 255, 0);
  }
  
  37% {
    border-color: rgba(255, 0, 255, 0.92);
  }
  
  62% {
    border-color: rgba(255, 0, 255, 0.78);
  }
  
  63% {
    border-color: rgba(255, 0, 255, 0);
  }
  
  64% {
    border-color: rgba(255, 0, 255, 0.88);
  }
  
  88% {
    border-color: rgba(255, 0, 255, 0.72);
  }
  
  89% {
    border-color: rgba(255, 0, 255, 0);
  }
  
  90% {
    border-color: rgba(255, 0, 255, 0.95);
  }
  
  100% {
    border-color: rgba(255, 0, 255, 0.85);
  }
}

.access-button.glitch.layers {
  animation: borderGlitch 4s step-end infinite;
}

.vaporwave-button.glitch.layers {
  animation: borderGlitchMagenta 4s step-end infinite;
}

/* Access button */
.access-button {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 3px solid #00d0ff;
  color: #00d0ff;
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-xl);
  line-height: var(--line-xl);
  font-weight: 700;
  padding: 2rem 4rem; /* 32px vertical, 64px horizontal - 4px grid */
  letter-spacing: 0.3em;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  box-shadow: 0 0 30px rgba(0, 208, 255, 0.5),
              inset 0 0 20px rgba(0, 208, 255, 0.1);
  z-index: 100;
  transition: opacity 2.5s cubic-bezier(0.55, 0.055, 0.675, 0.19),
              background 0.3s ease,
              box-shadow 0.3s ease,
              color 0.3s ease,
              transform 0.3s ease;
}

.access-button:active:not(.fade-out),
.access-button.pressed:not(.fade-out) {
  transform: translate(-50%, -50%) scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

.access-button:hover:not(.fade-out) {
  background: rgba(0, 208, 255, 0.2);
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 208, 255, 0.8),
              0 0 80px rgba(0, 208, 255, 0.4),
              inset 0 0 20px rgba(0, 208, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.05);
}

.access-button.activated {
  background: rgba(0, 208, 255, 0.2) !important;
  color: #fff !important;
  box-shadow: 0 0 40px rgba(0, 208, 255, 0.8),
              0 0 80px rgba(0, 208, 255, 0.4),
              inset 0 0 20px rgba(0, 208, 255, 0.3) !important;
}

.access-button.fade-out {
  animation: easeBackAccelerateOut 2s cubic-bezier(0.25, 0.46, 0.95, 1) forwards !important;
  pointer-events: none;
}

.access-button.fade-out.activated {
  background: rgba(0, 208, 255, 0.2) !important;
  color: #fff !important;
  box-shadow: 0 0 40px rgba(0, 208, 255, 0.8),
              0 0 80px rgba(0, 208, 255, 0.4),
              inset 0 0 20px rgba(0, 208, 255, 0.3) !important;
}

@keyframes easeBackAccelerateOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  75% {
    /* 1.5s out of 2s total - linear growth over 1.5 seconds */
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  80% {
    /* Accelerate very quickly into distance and shrink rapidly in just 0.4 seconds */
    transform: translate(-50%, -50%) scale(0.02);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.02);
    opacity: 0;
  }
}

/* Old glitch styles - only apply when layers class is NOT present */
.access-button.glitch:not(.layers):before,
.access-button.glitch:not(.layers):after {
  content: attr(data-glitch);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-xl);
  line-height: var(--line-xl);
  font-weight: 700;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  box-sizing: border-box;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.access-button.glitch.fade-out:not(.layers):before,
.access-button.glitch.fade-out:not(.layers):after {
  opacity: 0;
}

.access-button.glitch:not(.layers):after {
  color: #ff00ff;
  z-index: -2;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.access-button.glitch:not(.layers):before {
  color: #00d0ff;
  z-index: -1;
  text-shadow: 0 0 20px rgba(0, 208, 255, 0.5);
}

.access-button.glitch.glitching:before {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
}

.access-button.glitch.glitching:after {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both 5;
}

.access-button.glitch.continuous-glitch:before {
  animation: glitchCrazy 0.05s steps(1, end) both;
  animation-iteration-count: 100;
}

.access-button.glitch.continuous-glitch:after {
  animation: glitchCrazy 0.05s steps(1, end) reverse both;
  animation-iteration-count: 100;
}

/* Music button animation states */
#button {
  opacity: 0.001;
  transform: scale(0.95);
  transition: opacity 15s linear 1.7s,
              transform 15s linear 1.7s;
  pointer-events: none;
}

body.revealed #button {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: pulse 2s ease-in-out infinite;
}

#record-button {
  font-size: var(--font-lg);
  line-height: var(--line-lg);
  position: fixed;
  bottom: 1.25rem; /* 20px - tighter spacing */
  right: 1.25rem; /* 20px - tighter spacing */
  padding: 0.5rem; /* 8px - 4px grid */
  border: 2px solid #ff00ff;
  border-radius: 50%;
  outline: none;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  cursor: pointer;
  z-index: 100;
  width: 40px; /* 40px - 4px grid */
  height: 40px; /* 40px - 4px grid */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d0ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
  opacity: 0.001;
  transform: scale(0.95);
  transition: opacity 15s linear 1s,
              transform 15s linear 1s,
              box-shadow 0.3s ease,
              filter 0.3s ease;
  pointer-events: none;
}

#record-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: -1;
}

#record-button:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
  transform: scale(1.05);
}

#record-button:hover::before {
  background: rgba(255, 0, 255, 0.2);
}

body.revealed #record-button {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: pulse 2s ease-in-out infinite;
}

body.revealed #record-button.playing {
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.9));
  }
}

.vaporwave-dates {
  font-size: var(--font-md);
  line-height: var(--line-md);
  font-weight: 600;
  color: #ff00ff;
  margin: 0 0 1.5rem 0; /* 24px bottom - spacing before artist block */
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
  text-align: center;
  padding-right: 0.5em;
  display: inline-block;
  transform: translateZ(0);
  opacity: 0.001;
  transition: opacity 0.1s ease 8.7s;
  will-change: opacity, transform;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
}

.date-separator {
  white-space: nowrap;
}

.date-end {
  white-space: normal;
}

body.revealed .vaporwave-dates {
  opacity: 1;
  animation: glitchIn 0.6s steps(10, end) 8.7s forwards;
}

@keyframes glitchIn {
  0% {
    opacity: 0;
    transform: translateZ(0) translate(0);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(0 0 100% 0);
  }
  5% {
    opacity: 0.3;
    transform: translateZ(0) translate(-3px, 2px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 3px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(10% 0 80% 0);
  }
  10% {
    opacity: 0.6;
    transform: translateZ(0) translate(3px, -2px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -3px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(30% 0 50% 0);
  }
  15% {
    opacity: 0.4;
    transform: translateZ(0) translate(-2px, 3px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 2px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(50% 0 30% 0);
  }
  20% {
    opacity: 0.8;
    transform: translateZ(0) translate(2px, -3px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -2px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(70% 0 10% 0);
  }
  25% {
    opacity: 0.5;
    transform: translateZ(0) translate(-4px, 1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 4px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(20% 0 60% 0);
  }
  30% {
    opacity: 0.9;
    transform: translateZ(0) translate(1px, -4px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -1px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(60% 0 20% 0);
  }
  35% {
    opacity: 0.7;
    transform: translateZ(0) translate(-3px, 4px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 3px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(40% 0 40% 0);
  }
  40% {
    opacity: 0.95;
    transform: translateZ(0) translate(4px, -1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -4px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(80% 0 5% 0);
  }
  45% {
    opacity: 0.6;
    transform: translateZ(0) translate(-2px, 2px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 2px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(15% 0 70% 0);
  }
  50% {
    opacity: 1;
    transform: translateZ(0) translate(1px, -2px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -1px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(85% 0 0 0);
  }
  55% {
    opacity: 0.8;
    transform: translateZ(0) translate(-3px, 3px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 3px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(25% 0 50% 0);
  }
  60% {
    opacity: 1;
    transform: translateZ(0) translate(2px, -1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), -2px 0 0 rgba(224, 40, 125, 0.8);
    clip-path: inset(90% 0 0 0);
  }
  65% {
    opacity: 0.9;
    transform: translateZ(0) translate(-1px, 2px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 1px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(35% 0 40% 0);
  }
  70% {
    opacity: 1;
    transform: translateZ(0) translate(0, -1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(95% 0 0 0);
  }
  75% {
    opacity: 0.95;
    transform: translateZ(0) translate(-2px, 1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 2px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(45% 0 30% 0);
  }
  80% {
    opacity: 1;
    transform: translateZ(0) translate(1px, 0);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(98% 0 0 0);
  }
  85% {
    opacity: 0.98;
    transform: translateZ(0) translate(-1px, 1px);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 1px 0 0 rgba(27, 199, 251, 0.8);
    clip-path: inset(50% 0 20% 0);
  }
  90% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(99% 0 0 0);
  }
  95% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translate(0);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes glitchInMusic {
  0% {
    opacity: 0;
    transform: translateZ(0) translate(0, 20px) scale(0.95);
    filter: blur(4px);
  }
  5% {
    opacity: 0.3;
    transform: translateZ(0) translate(-3px, 15px) scale(0.96);
    filter: blur(3px);
  }
  10% {
    opacity: 0.6;
    transform: translateZ(0) translate(3px, 10px) scale(0.97);
    filter: blur(2px);
  }
  15% {
    opacity: 0.4;
    transform: translateZ(0) translate(-2px, 8px) scale(0.98);
    filter: blur(2.5px);
  }
  20% {
    opacity: 0.8;
    transform: translateZ(0) translate(2px, 5px) scale(0.99);
    filter: blur(1.5px);
  }
  25% {
    opacity: 0.5;
    transform: translateZ(0) translate(-4px, 4px) scale(0.985);
    filter: blur(2px);
  }
  30% {
    opacity: 0.9;
    transform: translateZ(0) translate(1px, 3px) scale(0.99);
    filter: blur(1px);
  }
  35% {
    opacity: 0.7;
    transform: translateZ(0) translate(-3px, 2px) scale(0.995);
    filter: blur(1.5px);
  }
  40% {
    opacity: 0.95;
    transform: translateZ(0) translate(4px, 1px) scale(0.998);
    filter: blur(0.5px);
  }
  45% {
    opacity: 0.6;
    transform: translateZ(0) translate(-2px, 1px) scale(0.997);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: translateZ(0) translate(1px, 0) scale(1);
    filter: blur(0);
  }
  55% {
    opacity: 0.8;
    transform: translateZ(0) translate(-3px, -1px) scale(1);
    filter: blur(0.5px);
  }
  60% {
    opacity: 1;
    transform: translateZ(0) translate(2px, 0) scale(1);
    filter: blur(0);
  }
  65% {
    opacity: 0.9;
    transform: translateZ(0) translate(-1px, 1px) scale(1);
    filter: blur(0.3px);
  }
  70% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0) scale(1);
    filter: blur(0);
  }
  75% {
    opacity: 0.95;
    transform: translateZ(0) translate(-2px, 0) scale(1);
    filter: blur(0.2px);
  }
  80% {
    opacity: 1;
    transform: translateZ(0) translate(1px, 0) scale(1);
    filter: blur(0);
  }
  85% {
    opacity: 0.98;
    transform: translateZ(0) translate(-1px, 0) scale(1);
    filter: blur(0.1px);
  }
  90% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0) scale(1);
    filter: blur(0);
  }
  95% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translate(0, 0) scale(1);
    filter: blur(0);
  }
}

.music-acts {
  margin: 0 0 1.5rem 0; /* 24px bottom - spacing below artist block */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* 8px - spacing between related elements */
  opacity: 0.001;
  transform: translateZ(0);
  transition: opacity 0.1s ease 10.3s;
  will-change: opacity, transform;
  position: relative;
  overflow: visible;
}


body.revealed .music-acts {
  opacity: 1;
  animation: glitchInMusic 0.6s steps(10, end) 10.3s forwards;
}

.music-featuring {
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-sm);
  line-height: var(--line-sm);
  font-weight: 400;
  color: #00d0ff;
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  text-shadow: 0 0 10px rgba(0, 208, 255, 0.8),
               0 0 20px rgba(0, 208, 255, 0.5);
}

.music-headliner {
  font-family: 'Space Mono', monospace;
  font-size: var(--font-4xl);
  line-height: var(--line-4xl);
  font-weight: 700;
  color: #00d0ff;
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: none;
  position: relative;
  display: inline-block;
  transform: translateZ(0);
  transform-origin: center center;
}

.music-headliner a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-shadow: none;
  animation: pulseGlow 4s ease-in-out infinite;
  will-change: filter;
  transform: translateZ(0);
  transform-origin: center center;
}

.music-headliner a:hover {
  color: #ff00ff;
  opacity: 1;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.9),
               0 0 40px rgba(255, 0, 255, 0.6),
               0 0 60px rgba(255, 0, 255, 0.3);
  filter: drop-shadow(0 0 6px #ff00ff) drop-shadow(0 0 10px #ff00ff) drop-shadow(0 0 14px rgba(255, 0, 255, 0.4));
  transform: translateZ(0) scale(1.05);
}

@keyframes linkShake {
  0%, 100% {
    transform: translateZ(0) translateX(0);
  }
  25% {
    transform: translateZ(0) translateX(-1px);
  }
  75% {
    transform: translateZ(0) translateX(1px);
  }
}

@keyframes linkShakeHover {
  0%, 100% {
    transform: translateZ(0) translateX(0) scale(1.05);
  }
  25% {
    transform: translateZ(0) translateX(-2px) scale(1.05);
  }
  75% {
    transform: translateZ(0) translateX(2px) scale(1.05);
  }
}

@keyframes headlinerPulse {
  0% {
    text-shadow: none;
    filter: drop-shadow(0 0 0px #00d0ff);
    transform: translateZ(0) scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 208, 255, 0.9),
                 0 0 40px rgba(0, 208, 255, 0.6),
                 0 0 60px rgba(0, 208, 255, 0.3);
    filter: drop-shadow(0 0 6px #00d0ff) drop-shadow(0 0 10px #00d0ff) drop-shadow(0 0 14px rgba(0, 208, 255, 0.4));
    transform: translateZ(0) scale(1);
  }
  100% {
    text-shadow: none;
    filter: drop-shadow(0 0 0px #00d0ff);
    transform: translateZ(0) scale(1);
  }
}

.music-act {
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-md);
  line-height: var(--line-md);
  font-weight: 700;
  color: #00d0ff;
  margin: 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

.vaporwave-description {
  font-size: var(--font-sm);
  line-height: var(--line-sm);
  font-weight: 400;
  color: #e5e5e5;
  margin: 0 auto;
  margin-top: 0; /* Button already has margin-bottom */
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
  text-align: center;
  display: block;
  width: 100%;
  max-width: 800px;
  padding: 0;
  opacity: 0.001;
  transition: opacity 0.8s cubic-bezier(0.75, 0, 0.25, 1) 12.4s;
  will-change: opacity;
  order: 102;
}

body.revealed .vaporwave-description {
  opacity: 1;
}


.vaporwave-button {
  position: relative;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3); /* Black translucent tint */
  border: 3px solid #ff00ff;
  color: #ff00ff;
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-lg);
  line-height: var(--line-lg);
  font-weight: 700;
  padding: 1.75rem 5rem; /* 28px vertical, 80px horizontal - 4px grid */
  letter-spacing: 0.3em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease, 
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 11.4s,
              opacity 0.8s cubic-bezier(0.75, 0, 0.25, 1) 11.4s;
  margin-top: auto;
  margin-bottom: 2.5rem; /* 40px - spacing below button */
  align-self: center;
  order: 101;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  box-sizing: border-box;
  flex-shrink: 0; /* Prevent button from shrinking */
  height: auto; /* Maintain natural height based on padding and line-height */
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5),
              inset 0 0 20px rgba(255, 0, 255, 0.1);
  transform: translateZ(0) translateY(20px) scale(0.001);
  opacity: 0.001;
  will-change: transform, opacity;
  transform-origin: center center;
}

body.revealed .vaporwave-button {
  opacity: 1;
  transform: translateZ(0) translateY(0) scale(1);
}

body a {
  font-family: 'Geist Mono', monospace;
  color: #00d0ff;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: center;
}

/* Old glitch styles - only apply when layers class is NOT present */
.vaporwave-button.glitch:not(.layers):before,
.vaporwave-button.glitch:not(.layers):after {
  content: attr(data-glitch);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  font-family: 'Geist Mono', monospace;
  font-size: var(--font-lg);
  line-height: var(--line-lg);
  font-weight: 700;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 5rem;
  box-sizing: border-box;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vaporwave-button.glitch:not(.layers):after {
  color: #ff00ff;
  z-index: -2;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.vaporwave-button.glitch:not(.layers):before {
  color: #00d0ff;
  z-index: -1;
  text-shadow: 0 0 20px rgba(0, 208, 255, 0.5);
}

.vaporwave-button.glitch.glitching:before {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
}

.vaporwave-button.glitch.glitching:after {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both 5;
}

.vaporwave-button:hover {
  background: rgba(255, 0, 255, 0.2); /* Pink fill on hover */
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.8),
              0 0 80px rgba(0, 208, 255, 0.4),
              inset 0 0 20px rgba(255, 0, 255, 0.3);
  transform: translateZ(0) translateY(0) scale(1.05);
}

@media (max-width: 768px) {
  .vaporwave-content {
    justify-content: flex-start !important;
    padding-top: calc(1.5rem + env(safe-area-inset-top)) !important; /* 24px + safe area */
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)) !important; /* 72px + safe area */
    align-items: center !important;
    height: 100dvh !important; /* Dynamic viewport - adjusts for Safari toolbar */
    min-height: 100dvh !important;
    overflow-x: visible !important; /* Allow title to overflow horizontally */
  }

  body.revealed .vaporwave-content {
    padding-top: calc(1.5rem + env(safe-area-inset-top)) !important; /* 24px + safe area */
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)) !important; /* 72px + safe area */
    justify-content: flex-start !important;
    align-items: center !important;
    transform: translateZ(0) scale(1) !important;
    height: 100dvh !important; /* Dynamic viewport - adjusts for Safari toolbar */
    min-height: 100dvh !important;
    overflow-x: visible !important; /* Allow title to overflow horizontally */
  }

  .hero-section {
    transform: translateZ(0);
    padding-left: 1.5rem; /* 24px - 4px grid */
    padding-right: 1.5rem; /* 24px - 4px grid */
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: visible !important;
    overflow-y: visible;
  }

  .access-button {
    font-size: var(--font-base) !important;
    line-height: var(--line-base) !important;
    padding: 1.25rem 2rem !important;
    max-width: 90vw;
    box-sizing: border-box;
  }

  .vaporwave-title {
    font-size: var(--font-5xl);
    line-height: var(--line-5xl);
  }

  .vaporwave-title-test {
    font-size: clamp(var(--font-4xl), 18vw, var(--font-5xl));
    line-height: 1.05;
  }

  .vaporwave-title.glitch:before,
  .vaporwave-title.glitch:after {
    font-size: var(--font-4xl);
    line-height: var(--line-4xl);
  }

  .vaporwave-dates {
    font-size: var(--font-sm);
    line-height: var(--line-sm);
    white-space: nowrap !important;
    margin-bottom: 1.5rem !important; /* 24px - spacing before artist block */
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .date-end {
    display: inline;
  }

  .music-acts {
    gap: 0.5rem; /* 8px - spacing between related elements */
    margin-bottom: 1.5rem !important; /* 24px - spacing below artist block */
  }

  .music-headliner {
    font-size: var(--font-xl);
    line-height: var(--line-xl);
  }

  .music-act {
    font-size: var(--font-sm);
    line-height: var(--line-sm);
  }

  .music-featuring {
    font-size: var(--font-xxs);
    line-height: var(--line-xxs);
  }

  .vaporwave-description {
    font-size: var(--font-xxs);
    line-height: var(--line-xxs);
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .vaporwave-button {
    font-size: var(--font-sm) !important;
    line-height: var(--line-sm) !important;
    padding: 1rem 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: calc(100vw - 3rem); /* Account for parent padding (1.5rem each side) */
    box-sizing: border-box;
    margin-top: auto !important;
    margin-bottom: 1.5rem !important; /* 24px - spacing below button */
  }

}
