/* ============================================
   FERAL PRESENTS — Dystopian Event Website
   Color Palette: #000, #fff, #ff0033
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #ff0033;
  --red-dark: #cc0029;
  --red-glow: rgba(255, 0, 51, 0.4);
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --gray-text: #888888;
  --font-mono: 'Space Mono', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
  --container-max: 1200px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-red {
  color: var(--red);
}


/* --- Scanlines Overlay --- */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* --- Noise Overlay --- */
.noise {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  animation: noiseMove 0.5s steps(10) infinite;
}

@keyframes noiseMove {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}


/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-base), background var(--transition-base);
}

.header--hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity var(--transition-base);
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.8;
}


.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::before {
  content: '>';
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--red);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  transform: translateX(-4px);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 30px var(--red-glow);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}


/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero background image */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Animated glitch overlay for hero background */
.hero__bg-glitch {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent calc(50% - 2px),
      rgba(255, 0, 51, 0.6) 50%,
      transparent calc(50% + 2px),
      transparent 100%
    );
  background-size: 100% 300%;
  animation: heroScan 4s linear infinite;
  mix-blend-mode: screen;
}

.hero__bg-glitch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 51, 0.2) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255, 0, 51, 0.15) 100%
  );
  animation: heroColorPulse 4s ease-in-out infinite;
  mix-blend-mode: color;
}

.hero__bg-glitch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 51, 0.2) 0%,
    transparent 15%,
    transparent 85%,
    rgba(0, 180, 255, 0.15) 100%
  );
  animation: heroChromaShift 6s ease-in-out infinite;
}

/* Dark vignette + CRT scanlines for readability */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    ),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes heroScan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

@keyframes heroColorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes heroChromaShift {
  0%, 82%, 100% {
    opacity: 0;
    transform: translateX(0);
    clip-path: none;
  }
  84% {
    opacity: 0.9;
    transform: translateX(-3px);
    clip-path: inset(15% 0 60% 0);
  }
  86% {
    opacity: 0.7;
    transform: translateX(3px);
    clip-path: inset(50% 0 20% 0);
  }
  88% {
    opacity: 0.8;
    transform: translateX(-2px);
    clip-path: inset(30% 0 40% 0);
  }
  90% {
    opacity: 0;
    transform: translateX(0);
    clip-path: none;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tagline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 30px rgba(255, 0, 51, 0.3),
    0 0 60px rgba(255, 0, 51, 0.1);
}

.hero__cursor {
  font-family: var(--font-mono);
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--red);
  animation: cursorBlink 0.8s steps(1) infinite;
  text-shadow: 0 0 15px rgba(255, 0, 51, 0.5);
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* --- Scroll Indicator --- */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  opacity: 0;
}

.hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  position: relative;
}

.hero__scroll-wheel {
  width: 2px;
  height: 6px;
  background: var(--red);
  border-radius: 1px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  50% { opacity: 0.2; top: 16px; }
  100% { opacity: 1; top: 6px; }
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  padding-left: 3px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.hero__scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.hero__scroll-arrow {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 0, 51, 0.6);
  border-bottom: 1px solid rgba(255, 0, 51, 0.6);
  transform: rotate(45deg);
  opacity: 0;
  animation: scrollArrows 2s ease-in-out infinite;
}

.hero__scroll-arrow:nth-child(1) { animation-delay: 0s; }
.hero__scroll-arrow:nth-child(2) { animation-delay: 0.15s; }

@keyframes scrollArrows {
  0% { opacity: 0; transform: rotate(45deg) translateY(-3px); }
  30% { opacity: 0.8; }
  60% { opacity: 0; transform: rotate(45deg) translateY(3px); }
  100% { opacity: 0; }
}

.hero__mouse-tracker {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}


/* --- Section Headers --- */
.section-header {
  margin-bottom: 60px;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header__line {
  width: 60px;
  height: 2px;
  background: var(--red);
}


/* --- Events Section --- */
.events {
  padding: 80px 0 120px;
  position: relative;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Event Card */
.event-card {
  display: block;
  position: relative;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--transition-slow), border-color var(--transition-base);
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 51, 0.3);
}

.event-card__date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
}

.event-card__day {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.event-card__month {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
}

.event-card__image-wrapper {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.event-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-card__image--1 {
  background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 40%, #1a0005 100%);
  background-size: cover;
}

.event-card__image--1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 0, 51, 0.03) 2px,
      rgba(255, 0, 51, 0.03) 4px
    );
}


.event-card__image--2 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0000 60%, #0d0d0d 100%);
  background-size: cover;
}

.event-card__image--2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 0, 51, 0.02) 3px,
      rgba(255, 0, 51, 0.02) 6px
    );
}

.event-card:hover .event-card__image {
  transform: scale(1.05);
}

.event-card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--gray), transparent);
  z-index: 3;
}

.event-card__image-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Animated scan line for event cards */
.event-card__scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.5), transparent);
  z-index: 5;
  opacity: 0;
  animation: cardScanMove 3s ease-in-out infinite;
  pointer-events: none;
}

.event-card:nth-child(2) .event-card__scanline {
  animation-delay: 1.5s;
}

@keyframes cardScanMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.event-card__content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.event-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.event-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
}

.event-card__id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-text);
}

.event-card__title {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color var(--transition-base);
}

.event-card:hover .event-card__title {
  color: var(--red);
}

.event-card__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.event-card__detail {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray-text);
}

.event-card__detail-label {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

.event-card__action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-card__action-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  transition: color var(--transition-base);
}

.event-card:hover .event-card__action-text {
  color: var(--red);
}

.event-card__action-arrow {
  font-size: 14px;
  transition: transform var(--transition-base), color var(--transition-base);
}

.event-card:hover .event-card__action-arrow {
  transform: translateX(4px);
  color: var(--red);
}

.event-card__border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
  box-shadow: inset 0 0 30px rgba(255, 0, 51, 0.1);
}

.event-card:hover .event-card__border-glow {
  opacity: 1;
}


/* --- About Section --- */
.about {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__title {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 24px;
}

.about__description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 16px;
  max-width: 480px;
}

.about__ascii-art {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.3;
  color: var(--red);
  white-space: pre;
  opacity: 0.6;
  overflow: hidden;
}


/* --- Contact Section --- */
.contact {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
}

.contact__text {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__form {
  margin-bottom: 40px;
}

.contact__input-wrapper {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--gray);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.contact__input-wrapper:focus-within {
  border-color: var(--red);
}

.contact__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 1px;
  outline: none;
}

.contact__input::placeholder {
  color: var(--gray-text);
}

.contact__submit {
  border-radius: 0;
  clip-path: none;
  white-space: nowrap;
  padding: 16px 28px;
}

.contact__status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 12px;
  min-height: 20px;
}

.contact__status--success {
  color: var(--red);
}

.contact__status--error {
  color: var(--gray-text);
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact__social-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gray-text);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.contact__social-link:hover {
  color: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.15);
}


/* --- Footer --- */
.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-text);
}

.footer__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-text);
}


/* --- Reveal Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   EVENT PAGE STYLES
   ============================================ */

.event-page {
  padding-top: var(--header-height);
}

.event-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.event-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  z-index: 0;
}

.event-hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* Subtle red tint overlay */
.event-hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.03) 0%, transparent 50%);
  z-index: 1;
}

/* Fade to dark at bottom for seamless transition */
.event-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--gray) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Animated scan line effect */
.event-hero__scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.6), transparent);
  z-index: 3;
  opacity: 0;
  animation: scanMove 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.event-hero__content {
  position: relative;
  z-index: 3;
}

.event-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: color var(--transition-base);
}

.event-hero__back:hover {
  color: var(--red);
}

.event-hero__back-arrow {
  transition: transform var(--transition-base);
}

.event-hero__back:hover .event-hero__back-arrow {
  transform: translateX(-4px);
}

.event-hero__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.event-hero__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  border: 1px solid var(--red);
}

.event-hero__id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray-text);
}

.event-hero__title {
  font-family: var(--font-mono);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 32px;
}

.event-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.event-hero__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-hero__detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.event-hero__detail-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* Event Content Area */
.event-content {
  padding: 80px 0;
}

.event-content__grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 60px;
}

.event-info__section {
  margin-bottom: 48px;
}

.event-info__heading {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.event-info__heading::before {
  content: '// ';
  color: var(--red);
}

.event-info__az {
  font-size: 10px;
  font-weight: 400;
  color: var(--red);
  margin-left: 8px;
  opacity: 0.8;
}

.event-info__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-text);
}

.event-info__lineup {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-info__artist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding-left var(--transition-base);
}

.event-info__artist:hover {
  padding-left: 12px;
}

.event-info__artist-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.event-info__artist:hover .event-info__artist-name {
  color: var(--red);
}

.event-info__artist-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
}

/* Ticket Widget */
.event-tickets {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.event-tickets__box {
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.event-tickets__heading {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-tickets__subtext {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.event-tickets__embed {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  min-height: 200px;
  overflow: hidden;
}

.event-tickets__embed #shop-frame,
.event-tickets__embed > div {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.event-tickets__embed iframe {
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  border: none !important;
  display: block;
}

.event-tickets__cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* --- Countdown Timer --- */
.countdown {
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.countdown__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown__number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  position: relative;
  text-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
  animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 0, 51, 0.5), 0 0 60px rgba(255, 0, 51, 0.2);
  }
}

.countdown__text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-top: 8px;
}

.countdown__separator {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  animation: separatorBlink 1s steps(1) infinite;
  margin-bottom: 18px;
}

@keyframes separatorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.countdown__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.countdown__pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: countdownScan 2s linear infinite;
}

@keyframes countdownScan {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
}

/* Countdown expired state */
.countdown--expired .countdown__label {
  color: var(--red);
  animation: expiredBlink 0.5s ease-in-out infinite;
}

@keyframes expiredBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.countdown--expired .countdown__number {
  color: var(--red);
  animation: none;
  text-shadow: 0 0 30px rgba(255, 0, 51, 0.6);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .countdown__unit {
    min-width: 50px;
  }

  .countdown__number {
    font-size: 28px;
  }

  .countdown__separator {
    font-size: 22px;
  }
}


/* --- Ticket Scarcity Component --- */
.ticket-scarcity {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Desktop version - shown on left side */
.ticket-scarcity--desktop {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  margin: 32px 0 40px 0;
}

.ticket-scarcity__box {
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
}

.ticket-scarcity--desktop .ticket-scarcity__tier {
  background: rgba(255, 255, 255, 0.03);
}

.ticket-scarcity--desktop .ticket-scarcity__tier--active {
  background: rgba(255, 0, 51, 0.08);
}

.ticket-scarcity__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ticket-scarcity__live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--red);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.ticket-scarcity__live-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}

/* Inline Book Now button for mobile */
.ticket-scarcity__cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all var(--transition-base);
  animation: cta-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.7), 0 0 40px rgba(255, 0, 51, 0.3);
  }
}

.ticket-scarcity__cta:hover,
.ticket-scarcity__cta:active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 30px var(--red-glow);
  animation: none;
}

/* Mobile version - shown in ticket widget */
.ticket-scarcity--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .ticket-scarcity--desktop {
    display: none;
  }

  .ticket-scarcity--mobile {
    display: block;
  }
}

.ticket-scarcity__tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ticket-scarcity__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-base);
}

.ticket-scarcity__tier--sold {
  opacity: 0.4;
}

.ticket-scarcity__tier--sold .ticket-scarcity__tier-name {
  text-decoration: line-through;
  color: var(--gray-text);
}

.ticket-scarcity__tier-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
}

.ticket-scarcity__tier--active {
  background: rgba(255, 0, 51, 0.08);
  border-color: rgba(255, 0, 51, 0.3);
  position: relative;
}

.ticket-scarcity__tier--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}

.ticket-scarcity__tier--active .ticket-scarcity__tier-name {
  color: var(--white);
}

.ticket-scarcity__tier--active .ticket-scarcity__tier-price {
  color: var(--red);
  font-weight: 700;
}

.ticket-scarcity__tier--next {
  opacity: 0.5;
  border-style: dashed;
}

.ticket-scarcity__tier--next .ticket-scarcity__tier-name {
  color: var(--gray-text);
}

.ticket-scarcity__tier--next .ticket-scarcity__tier-price {
  color: var(--gray-text);
}

.ticket-scarcity__tier-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticket-scarcity__tier-price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
}

.ticket-scarcity__progress {
  position: relative;
}

.ticket-scarcity__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.ticket-scarcity__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, #ff3355 100%);
  transition: width 1s ease-out;
}

.ticket-scarcity__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
  animation: scarcityGlow 2s ease-in-out infinite;
}

@keyframes scarcityGlow {
  0%, 100% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
}

.ticket-scarcity__fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red), 0 0 20px var(--red);
}

.ticket-scarcity__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-scarcity__remaining {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray-text);
}

.ticket-scarcity__count {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.ticket-scarcity__warning {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}


/* --- Mobile Sticky CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-top: 1px solid rgba(255, 0, 51, 0.3);
}

.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
}

.mobile-cta__btn:active {
  transform: scale(0.98);
  background: var(--red-dark);
}

.mobile-cta__text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-cta__price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}


/* --- Mobile Sticky Book Now Button --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.mobile-sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-cta__btn {
  display: block;
  width: 100%;
  padding: 16px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
  transition: all var(--transition-base);
}

.mobile-sticky-cta__btn:active {
  transform: scale(0.98);
  background: var(--white);
  color: var(--black);
}

@media (max-width: 1024px) {
  .mobile-sticky-cta {
    display: block;
  }
}


/* --- Social Proof Toast --- */
.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--red);
  padding: 12px 18px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.social-proof__text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray-text);
  white-space: nowrap;
}

.social-proof--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.social-proof__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-proof__dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.social-proof__time {
  color: var(--white);
}

@media (max-width: 480px) {
  .social-proof {
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: var(--black);
    border: 1px solid rgba(255, 0, 51, 0.5);
    padding: 18px 20px;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.15);
  }

  .social-proof__text {
    white-space: normal;
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .events__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-content__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-tickets {
    position: static;
    order: -1;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .event-tickets__box {
    padding: 24px 16px;
    border-left: none;
    border-right: none;
  }

  .event-tickets__embed {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  /* When embed is moved into event-info on mobile */
  .event-info .event-tickets__embed {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav {
    justify-content: center;
    position: relative;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__toggle {
    display: flex;
    position: absolute;
    right: 24px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .nav__menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav__link {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .hero__bg-image {
    object-position: 85% center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    display: none;
  }

  .events {
    padding: 60px 0 80px;
  }

  .about {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .event-hero {
    padding: 60px 0 80px;
  }

  .event-hero__details {
    flex-direction: column;
    gap: 20px;
  }

  .event-content {
    padding: 0 0 60px 0;
  }

  .contact__input-wrapper {
    flex-direction: column;
  }

  .contact__submit {
    width: 100%;
  }

}

@media (max-width: 480px) {
  .section-header__title {
    letter-spacing: 2px;
  }

  .event-card__content {
    padding: 16px;
  }

  .hero__tagline {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .hero__cursor {
    font-size: 16px;
  }
}
