/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red:          #d91f1f;
  --red-dark:     #8a0000;
  --red-dim:      rgba(217, 31, 31, 0.18);
  --red-border:   rgba(217, 31, 31, 0.55);
  --white:        #efefef;
  --white-dim:    rgba(220, 220, 220, 0.75);
  --black:        #080808;
  --surface:      #0d0d0d;
  --border:       rgba(255, 255, 255, 0.08);
  --border-mid:   rgba(255, 255, 255, 0.28);
  --muted:        rgba(200, 200, 200, 0.55);
  --dim:          rgba(200, 200, 200, 0.28);
  --font-display: 'Quantico', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: auto; }

body {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.055) 2px, rgba(0,0,0,0.055) 3px
  );
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }


/* ============================================================
   BOOT OVERLAY
   ============================================================ */
.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 8%;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.boot-overlay.boot-done {
  opacity: 0;
  pointer-events: none;
}

.boot-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.boot-line {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.boot-line.visible { opacity: 1; }
.boot-line.red     { color: var(--red); }
.boot-line.bright  { color: var(--white); }

.boot-cursor {
  display: inline-block;
  width: 9px;
  height: 13px;
  background: var(--red);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}


/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  padding: 14px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header.visible { opacity: 1; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo span { color: var(--red); }

.nav-sys {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:not(.btn-contact):hover,
.nav-links a.active { color: var(--white); }

.nav-links a:not(.btn-contact)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.28s var(--ease-out);
}

.nav-links a:not(.btn-contact):hover::after,
.nav-links a.active::after { width: 100%; }

.btn-contact {
  padding: 9px 20px;
  border: 1px solid var(--border-mid);
  color: var(--white) !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn-contact:hover,
.btn-contact.active {
  border-color: var(--red) !important;
  color: var(--red) !important;
  background: var(--red-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   CORNER BRACKETS
   ============================================================ */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}

.corner.tl { top: 88px;    left: 24px;  border-top:    1px solid var(--border-mid); border-left:  1px solid var(--border-mid); }
.corner.tr { top: 88px;    right: 24px; border-top:    1px solid var(--border-mid); border-right: 1px solid var(--border-mid); }
.corner.bl { bottom: 24px; left: 24px;  border-bottom: 1px solid var(--border-mid); border-left:  1px solid var(--border-mid); }
.corner.br { bottom: 24px; right: 24px; border-bottom: 1px solid var(--border-mid); border-right: 1px solid var(--border-mid); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 120px 8% 80px;
  cursor: default;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero.visible { opacity: 1; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   HERO NAME
   ============================================================ */
.hero-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 13vw, 172px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}

.first-name { color: var(--red); }

.hero-name::before,
.hero-name::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.hero-name::before { color: var(--red);                z-index: -1; }
.hero-name::after  { color: rgba(255,255,255,0.15);     z-index: -2; }

@keyframes glitchFlicker {
  0%   { opacity: 0; transform: translate(0,0); }
  10%  { opacity: 0.8; transform: translate(-3px, 1px); }
  20%  { opacity: 0; transform: translate(0,0); }
  30%  { opacity: 0.6; transform: translate(3px, -1px); }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-name.glitch::before { animation: glitchFlicker 0.4s linear; }
.hero-name.glitch::after  { animation: glitchFlicker 0.4s linear reverse; }

.btn-primary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--white);
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
  box-shadow: 0 0 16px rgba(217,31,31,0.2);
}


/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.45);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-track span { flex-shrink: 0; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker:hover .ticker-track { animation-play-state: paused; }


/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 120px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 48px;
  text-transform: uppercase;
}


/* ============================================================
   PROJECTS — VINYL / RADAR PLAYER
   ============================================================ */
.projects {
  overflow: hidden;
  padding: 120px 0;
}

.projects::before {
  content: 'PROJECT_ARCHIVE // 09 ENTRIES';
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.28em;
  color: var(--muted);
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 12px 5% 0;
  border-top: 1px solid var(--border);
}

.projects-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 0;
}

/* LEFT */
.proj-list-col {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.proj-list-col .section-title { margin-bottom: 32px; }

.proj-arrow {
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  padding: 8px 0;
  width: 32px;
  transition: color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.proj-arrow svg { width: 22px; height: 22px; display: block; }
.proj-arrow:hover { color: var(--red); transform: translateY(-2px); }
.proj-arrow--down:hover { transform: translateY(2px); }

.proj-list {
  list-style: none;
  margin: 4px 0;
}

.proj-item {
  border-top: 1px solid var(--border);
  height: 68px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.proj-item:last-child { border-bottom: 1px solid var(--border); }

.proj-item.active {
  height: auto;
  border-color: var(--red-border);
}

.proj-item-link {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 13px 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-out);
}

.proj-item-link:hover             { padding-left: 14px; }
.proj-item.active .proj-item-link { padding-left: 14px; }

.proj-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--dim);
  transition: color 0.3s ease;
}

.proj-item.active .proj-num { color: var(--red); }

.proj-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proj-name {
  font-family: var(--font-display);
  font-size: 14pt;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.proj-item.active .proj-name {
  color: var(--white);
  font-size: 14pt;
}

.proj-item:not(.active):hover .proj-name { color: rgba(255,255,255,0.6); }

.proj-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: transparent;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), color 0.3s ease;
}

.proj-item.active .proj-desc {
  color: var(--muted);
  max-height: 40px;
}

.proj-arrow-right {
  font-size: 14px;
  color: transparent;
  text-align: right;
  display: block;
  transition: color 0.3s ease;
}

.proj-item.active .proj-arrow-right             { color: var(--red); }
.proj-item:not(.active):hover .proj-arrow-right { color: var(--dim); }

.proj-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 20px;
  padding-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.proj-counter-current {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
}


/* RIGHT — radar stage */
.proj-vinyl-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-stage {
  position: relative;
  width: min(54vw, 560px);
  height: min(54vw, 560px);
}

.vinyl-record {
  position: absolute;
  inset: 0;
  animation: vinylSpin 18s linear infinite;
  transform-origin: center;
}

.vinyl-record .vinyl-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vinyl-center-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  transform: translate(-50%, -50%);
  animation: vinylCounterSpin 18s linear infinite;
  z-index: 5;
}

@keyframes vinylCounterSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.vinyl-center-card {
  display: block;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
  position: relative;
}

.vinyl-center-card img {
  width: 100%;
  height: auto;
  display: block;
}

.vinyl-center-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217,31,31,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.vinyl-center-card:hover .vinyl-center-overlay { opacity: 1; }

.vinyl-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Base orbit card */
.orbit-card {
  position: absolute;
  width: 13%;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.18;
  filter: grayscale(60%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.orbit-card img { width: 100%; display: block; }

/* ── 9 evenly spaced positions (40° apart) ──
   Calculated: center at radius 46% from stage center (50%,50%)
   Card is 13% wide/tall, so offset by 6.5% to center each card
   angle 0° = top, increasing clockwise                          */

.orbit-card:nth-child(1) { top: -2.5%; left: 43.5%; }           /* 0°   top */
.orbit-card:nth-child(2) { top:  8.3%; left: 73.1%; }           /* 40°  upper-right */
.orbit-card:nth-child(3) { top: 35.5%; left: 88.8%; }           /* 80°  right */
.orbit-card:nth-child(4) { top: 66.5%; left: 83.3%; }           /* 120° lower-right */
.orbit-card:nth-child(5) { top: 86.7%; left: 59.2%; }           /* 160° bottom-right */
.orbit-card:nth-child(6) { top: 86.7%; left: 27.8%; }           /* 200° bottom-left */
.orbit-card:nth-child(7) { top: 66.5%; left:  3.7%; }           /* 240° lower-left */
.orbit-card:nth-child(8) { top: 35.5%; left: -1.8%; }           /* 280° left */
.orbit-card:nth-child(9) { top:  8.3%; left: 13.9%; }           /* 320° upper-left */

.orbit-card.active {
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 0 10px rgba(217,31,31,0.6));
  transform: scale(1.18);
  z-index: 2;
}


/* ============================================================
   ABOUT — TICKET / FRAME
   ============================================================ */
.about .section-title { margin-bottom: 40px; }

.ticket-wrapper {
  position: relative;
  width: min(92vw, 1100px);
  margin: 0 auto;
  aspect-ratio: 2.188 / 1;
}

.ticket-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  top: 8%;
  display: block;
  pointer-events: none;
  user-select: none;
}

.ticket-stub {
  position: absolute;
  left: 5%;
  width: 16.8%;
  top: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-logo {
  width: 65%;
  height: auto;
  display: block;
}

.ticket-panel {
  position: absolute;
  left:   37%;
  right:   6%;
  top:    38%;
  bottom: 27%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.ticket-text {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.05vw, 13px);
  line-height: 1.75;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}

.ticket-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(to right, transparent, var(--red), var(--red), var(--red), transparent);
  padding: 8px 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bar-box {
  width:  clamp(14px, 2vw, 26px);
  height: clamp(14px, 2vw, 26px);
  border-radius: 2px;
  background: var(--white);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bar-box:hover { transform: scaleY(1.25); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: var(--red-dim);
}

::placeholder {
  color: var(--dim);
  letter-spacing: 0.12em;
  font-size: 10px;
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, gap 0.25s ease;
}

.contact-form button:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
  gap: 16px;
}

.btn-icon { font-size: 16px; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-available {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.footer-email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--white); }

.status-bar {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  padding: 8px 0;
}

.status-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.status-item {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-right { margin-left: auto; }

.dot-on {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 7px;
  vertical-align: middle;
  animation: blink 2s step-end infinite;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .projects-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .proj-list-col  { padding-right: 0; }
  .proj-vinyl-col { order: -1; }

  .vinyl-stage {
    width: min(72vw, 400px);
    height: min(72vw, 400px);
  }

  .nav-sys { display: none; }

  .ticket-panel{
    top: 30%;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1050;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { font-size: 14px; letter-spacing: 0.2em; }

  .hero { padding: 100px 6% 60px; }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ticket-text { font-size: clamp(7px, 2.2vw, 11px); }
  .ticket-bar  { padding: 5px 8px; gap: 3px; }

  .section { padding: 80px 0; }

  .status-right { display: none; }

    .ticket-panel{
    top: 30%;
  }

  .ticket-bg{
    opacity: 0;
  }
  .proj-item.active .proj-name {
  color: var(--white);
  font-size: 14pt;
}
  
}

@media (max-width: 500px) {
  .vinyl-stage {
    width: 88vw;
    height: 88vw;
    
  }

  .corner { display: none; }

    .ticket-bg{
    opacity: 0;
  }
  .proj-item.active .proj-name {
  color: var(--white);
  font-size: 14pt;
}
}