:root {
  --bg: #090912;
  --panel: rgba(18, 19, 34, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #fff8ee;
  --muted: #c8c3d3;
  --pink: #ff2fa8;
  --cyan: #20f6ff;
  --lime: #b8ff4d;
  --gold: #ffd166;
  --orange: #ff7a18;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 47, 168, 0.24), transparent 29rem),
    radial-gradient(circle at 85% 12%, rgba(32, 246, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #090912 0%, #141021 46%, #05040a 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

body.night {
  --bg: #020207;
  --panel: rgba(4, 6, 16, 0.82);
  --pink: #9b5cff;
  --cyan: #00d4ff;
  --lime: #61ffca;
  --gold: #f9ff6c;
  font-family: Rajdhani, Inter, sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(0, 212, 255, 0.22), transparent 31rem),
    radial-gradient(circle at 80% 20%, rgba(155, 92, 255, 0.25), transparent 32rem),
    #020207;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

#lightCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  translate: -50% -50%;
  border-radius: 999px;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease;
}

.cursor-ring.is-hot {
  width: 58px;
  height: 58px;
  border-color: var(--pink);
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 9, 18, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--pink), var(--cyan), var(--lime), var(--pink));
  color: #07060d;
  font-family: Audiowide, sans-serif;
  font-size: 13px;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 22px;
}

.moon,
body.night .sun {
  display: none;
}

body.night .moon {
  display: inline;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 118px max(20px, calc((100vw - 1120px) / 2)) 76px;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background: url("./assets/hero.png") center / cover;
  filter: saturate(1.2) contrast(1.08);
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 10, 0.95) 0%, rgba(5, 4, 10, 0.58) 42%, rgba(5, 4, 10, 0.18) 100%),
    linear-gradient(0deg, #090912 0%, transparent 28%);
}

.beam {
  position: absolute;
  z-index: 0;
  width: 22vw;
  height: 140vh;
  bottom: -42vh;
  opacity: 0.36;
  filter: blur(12px);
  transform-origin: bottom center;
  mix-blend-mode: screen;
}

.beam-one {
  left: 48%;
  background: linear-gradient(var(--pink), transparent);
  animation: sweep 5.5s ease-in-out infinite alternate;
}

.beam-two {
  left: 62%;
  background: linear-gradient(var(--cyan), transparent);
  animation: sweep 6.4s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 18px;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-family: Audiowide, Rajdhani, sans-serif;
  font-size: clamp(46px, 8vw, 108px);
  text-shadow: 0 0 38px rgba(255, 47, 168, 0.25);
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero-copy,
.section-copy,
.about p,
.booking-band p {
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.55;
}

.hero-copy {
  width: min(670px, 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #090912;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(255, 47, 168, 0.28);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--pink) 55%, var(--cyan));
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
}

.hero-stats div,
.now-card,
.sound-strip,
.event-card,
.availability-card,
.booking-form,
.media-card,
dialog {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  border-radius: 8px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 20px;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.now-card {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 76px;
  z-index: 2;
  width: 260px;
  padding: 18px;
  border-radius: 8px;
}

.now-card p {
  margin: 12px 0 4px;
  color: var(--muted);
}

.now-card strong,
.now-card a {
  display: block;
}

.now-card a {
  margin-top: 14px;
  color: var(--cyan);
  font-weight: 900;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 40px;
}

.equalizer i,
.wave span {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--pink));
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.equalizer i {
  height: 18px;
}

.equalizer i:nth-child(2),
.wave span:nth-child(2) { animation-delay: 0.1s; }
.equalizer i:nth-child(3),
.wave span:nth-child(3) { animation-delay: 0.24s; }
.equalizer i:nth-child(4),
.wave span:nth-child(4) { animation-delay: 0.38s; }
.equalizer i:nth-child(5),
.wave span:nth-child(5) { animation-delay: 0.5s; }

.sound-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  padding: 14px;
  border-radius: 8px;
}

.play-btn {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--cyan);
  color: #05040a;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(32, 246, 255, 0.42);
}

.sound-strip p {
  margin: 4px 0 0;
  color: var(--muted);
}

.wave {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wave span {
  height: 22px;
}

.ticker {
  overflow: hidden;
  padding: 40px 0 10px;
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 24s linear infinite;
}

.ticker span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 900;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.section-head h2 {
  width: min(760px, 100%);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 47, 168, 0.36), transparent 68%);
  transition: transform 0.25s ease;
}

.event-card:hover::before {
  transform: translateY(-30px) scale(1.2);
}

.event-card.hot {
  background:
    linear-gradient(135deg, rgba(255, 47, 168, 0.5), rgba(255, 209, 102, 0.18)),
    var(--panel);
}

.event-card span {
  color: var(--cyan);
  font-family: Audiowide, sans-serif;
}

.event-card p {
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
}

.addon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.addon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

.addon.active {
  background: var(--lime);
  color: #05040a;
}

.availability-card,
.booking-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  outline: none;
}

textarea {
  resize: vertical;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(32, 246, 255, 0.12);
}

.result,
.booking-output,
.price-box {
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.45;
}

.result.good {
  color: #06110b;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-weight: 900;
}

.result.busy {
  color: #180509;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-weight: 900;
}

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

.price-box strong {
  color: var(--gold);
  font-size: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  color: var(--text);
}

.media-card.tall {
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.media-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.35);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 52%);
}

.media-card span,
.media-card i {
  position: absolute;
  z-index: 2;
}

.media-card span {
  left: 18px;
  bottom: 18px;
  font-size: 20px;
  font-weight: 900;
}

.media-card i {
  right: 18px;
  top: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #05040a;
  font-style: normal;
}

.graphic-card {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 47, 168, 0.38), transparent 26%),
    radial-gradient(circle at 70% 28%, rgba(32, 246, 255, 0.34), transparent 28%),
    #11111e;
}

.turntable {
  position: relative;
  width: 190px;
  height: 190px;
}

.record {
  width: 170px;
  height: 170px;
  border: 14px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 8px, #07060d 9px 32px, transparent 33px),
    repeating-radial-gradient(circle, #121220 0 9px, #080810 10px 16px);
  animation: spin 5s linear infinite;
}

.arm {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 66px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  transform: rotate(38deg);
  transform-origin: right center;
}

.booking-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 47, 168, 0.2), rgba(32, 246, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide {
  grid-column: 1 / -1;
}

.booking-output {
  min-height: 84px;
  white-space: pre-wrap;
}

.about {
  padding-bottom: 132px;
}

.about p {
  width: min(820px, 100%);
}

.sticky-book {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 22;
  display: none;
  width: min(520px, calc(100% - 24px));
  translate: -50% 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 9, 18, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-weight: 900;
}

.sticky-book a {
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--gold);
  color: #090912;
}

dialog {
  width: min(520px, calc(100% - 32px));
  border-radius: 8px;
  color: var(--text);
  padding: 18px;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  font-size: 26px;
}

.modal-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 47, 168, 0.35), rgba(32, 246, 255, 0.2)),
    url("./assets/corporate.png") center / cover;
}

.modal-lights {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.28), transparent, rgba(32, 246, 255, 0.32), transparent);
  animation: spin 8s linear infinite;
}

.modal-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 62px;
  text-shadow: 0 0 28px #000;
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  to { transform: scale(1.1) translate3d(1.5%, -1%, 0); }
}

@keyframes sweep {
  from { transform: rotate(-18deg); }
  to { transform: rotate(22deg); }
}

@keyframes bounce {
  to { height: 40px; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 110px 20px 60px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #090912 0%, rgba(5, 4, 10, 0.46) 52%, rgba(5, 4, 10, 0.62) 100%),
      linear-gradient(90deg, rgba(5, 4, 10, 0.88), rgba(5, 4, 10, 0.16));
  }

  .hero-stats,
  .event-grid,
  .split,
  .booking-band,
  .booking-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    min-height: auto;
  }

  .now-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }

  .sound-strip {
    grid-template-columns: auto 1fr;
    width: calc(100% - 24px);
  }

  .wave {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .section,
  .booking-band {
    width: calc(100% - 24px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    display: block;
  }

  .event-card {
    min-height: 210px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .media-card.tall {
    grid-row: auto;
  }

  .booking-band {
    margin-top: 10px;
    padding: 22px;
  }

  .sticky-book {
    display: flex;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: 34px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .sound-strip p {
    font-size: 13px;
  }

  .ticker {
    padding-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
