:root {
  --deep: #080012;
  --purple: #2a0738;
  --pink: #e94b9e;
  --hot-pink: #ff4fb0;
  --coral: #ff8d73;
  --yellow: #ffd166;
  --cream: #fff6ef;
  --soft: #f7d8e8;
  --white: #ffffff;
  --border: rgba(255,255,255,.18);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(233,75,158,.42), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(255,141,115,.34), transparent 32%),
    linear-gradient(135deg, #090012, #160022 52%, #05000a);
}

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

/* HEADER */

.site-header {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: clamp(1.65rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-white,
.dm-white {
  color: var(--white);
}

.brand-pink,
.dm-pink {
  background: linear-gradient(135deg, var(--hot-pink), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, rgba(255,92,184,.24), rgba(255,141,115,.18));
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 28px rgba(233,75,158,.22);
}

.header-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,92,184,.35), rgba(255,141,115,.28));
  transition: .3s ease;
}

/* MARQUEE */

.top-marquee {
  width: 100%;
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(255,79,176,.55);
  border-bottom: 1px solid rgba(255,79,176,.55);
  background: linear-gradient(90deg, rgba(233,75,158,.18), rgba(255,141,115,.12));
  box-shadow: 0 0 26px rgba(233,75,158,.25);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  padding-right: 46px;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.marquee-track .pink { color: var(--hot-pink); }
.marquee-track .yellow { color: var(--yellow); }
.marquee-track .coral { color: var(--coral); }
.marquee-track .cream { color: var(--cream); }

/* HERO */

.hero {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
}

.hero-content {
  width: 100%;
  padding: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(233,75,158,.20), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  backdrop-filter: blur(26px);
  box-shadow:
    0 32px 100px rgba(0,0,0,.45),
    inset 0 0 40px rgba(255,255,255,.03);
}

.eyebrow {
  display: inline-flex;
  padding: 12px 18px;
  margin-bottom: 30px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  background: rgba(233,75,158,.45);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 28px rgba(233,75,158,.32);
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  flex-wrap: nowrap;
  white-space: nowrap;

  gap: 0.18em;   /* was too tight */

  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;

  margin-bottom: 28px;
}

.sing { color: var(--white); }
.feel { color: var(--yellow); }
.share {
  color: var(--coral);
  text-shadow: 0 0 34px rgba(233,75,158,.55);
}

.dot {
  color: #ff5cb8;

  font-size: 0.42em;

  margin-left: 0.12em;
  margin-right: 0.12em;

  opacity: 0.9;
}

.hero-content p {
  max-width: 560px;
  color: var(--soft);
  font-size: 1.22rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* VIBE TILES */

.hero-vibe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-vibe span {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 0 22px rgba(255,255,255,.025);
}

.karaoke strong { color: var(--coral); }
.jamming strong { color: var(--yellow); }
.songs strong { color: var(--hot-pink); }
.community strong { color: #ff9fb7; }

/* CTA */

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 320px;
  height: 62px;

  margin: 0 auto;   /* ← centers horizontally */

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #ff5cb8,
    #ff8d73,
    #ffd166
  );

  border: 1px solid rgba(255,255,255,.22);

  box-shadow:
    0 0 30px rgba(233,75,158,.45),
    0 12px 35px rgba(255,141,115,.25);

  font-size: 1.15rem;
  font-weight: 900;
  color: white;

  transition: all .3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(233,75,158,.6),
    0 16px 40px rgba(255,141,115,.35);
}

.primary-btn span {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

/* LOGO VISUAL */

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 580px;
}

.logo-stage::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,75,158,.46), transparent 68%);
  z-index: -1;
}

.hero-logo {
  width: min(540px, 100%);
  max-width: 100%;
  border-radius: 50%;
  box-shadow:
    0 0 75px rgba(233,75,158,.5),
    0 0 150px rgba(255,141,115,.26);
  animation: floatLogo 6s ease-in-out infinite;
}

.mic {
  position: absolute;
  left: 2px;
  bottom: 72px;
  font-size: 4.3rem;
  transform: rotate(18deg);
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.7));
  animation: floatMic 4.8s ease-in-out infinite;
  z-index: 5;
}

.note {
  position: absolute;
  color: var(--cream);
  text-shadow:
    0 0 18px rgba(233,75,158,.9),
    0 0 34px rgba(255,79,176,.55);
  animation: floatNote 4s ease-in-out infinite;
  z-index: 2;
}

.note-1 { top: 8%; left: 3%; font-size: 3rem; }
.note-2 { top: 6%; right: 3%; font-size: 3.6rem; animation-delay: .5s; }
.note-3 { bottom: 15%; right: 2%; left: auto; font-size: 2.6rem; animation-delay: 1s; }
.note-4 { bottom: 8%; right: 10%; font-size: 3.1rem; animation-delay: 1.5s; }

/* EVENT PANEL */

.event-panel {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 24px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.event-panel p {
  color: var(--coral);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.event-panel h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -.05em;
}

.event-panel span {
  display: block;
  margin-top: 6px;
  color: var(--soft);
}

.event-panel a {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  white-space: nowrap;
}

/* CLEANUP */

.quick-vibe,
.reveal-orb,
.floating-cta {
  display: none;
}

footer {
  margin-top: 40px;
  padding: 32px 20px;
  text-align: center;

  border-top: 1px solid rgba(255,255,255,.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0),
      rgba(233,75,158,.05)
    );
}

footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;

  font-size: 1rem;
  font-weight: 800;
}

.footer-dot {
  margin: 0 10px;
  color: rgba(255,255,255,.35);
}

.footer-pink {
  color: #ff5cb8;
}

.footer-yellow {
  color: #ffd166;
}

.footer-coral {
  color: #ff8d73;
}

/* ANIMATIONS */

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

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

@keyframes floatMic {
  0%, 100% { transform: rotate(18deg) translateY(0); }
  50% { transform: rotate(18deg) translateY(-14px); }
}

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

/* MOBILE */

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 32px);
    padding: 18px 0 14px;
  }

  .brand-text {
    font-size: 1.45rem;
    letter-spacing: -0.06em;
  }

  .header-btn {
    padding: 11px 16px;
    font-size: .9rem;
  }

  .top-marquee {
    padding: 9px 0;
  }

  .marquee-track span {
    font-size: .82rem;
    padding-right: 30px;
  }

  .hero {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 28px 0 40px;
    min-height: auto;
  }

  .hero-visual {
    order: 1;
    min-height: auto;
    padding: 26px 0 18px;
  }

  .logo-stage {
    width: 100%;
    max-width: 340px;
  }

  .logo-stage::before {
    width: 340px;
    height: 340px;
  }

  .hero-logo {
    width: min(315px, 88vw);
  }

  .mic {
    left: 4px;
    bottom: 22px;
    font-size: 2.8rem;
  }

  .note-1 { top: 8%; left: 6%; font-size: 1.8rem; }
  .note-2 { top: 10%; right: 6%; font-size: 2.2rem; }
  .note-3 { bottom: 12%; right: 8%; font-size: 1.7rem; }
  .note-4 { bottom: 9%; right: 12%; font-size: 2rem; }

  .hero-content {
    order: 2;
    width: 100%;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: .72rem;
    padding: 10px 12px;
    margin-bottom: 22px;
  }

  .hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: nowrap;
  white-space: nowrap;

  gap: 0.15em;

  font-size: clamp(1.7rem, 7vw, 2.4rem);

  line-height: 1;
  letter-spacing: -0.06em;
}

  .hero-tagline .dot {
    display: inline;
    font-size: 0.38em;

    margin-left: 0.10em;
    margin-right: 0.10em;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-vibe {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-vibe span {
    min-height: 58px;
    padding: 12px;
    border-radius: 16px;
    font-size: .86rem;
  }

  .primary-btn {
    width: 100%;
    height: 56px;
  }

  .primary-btn span {
    font-size: 1rem;
  }

  .event-panel {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
  }

  .event-panel a {
    width: 100%;
    text-align: center;
  }

  footer {
    padding-bottom: 32px;
  }
}
.footer-meta {
  margin-top: 14px;

  font-size: 0.82rem;
  font-weight: 500;

  color: rgba(255,255,255,.55);

  text-align: center;
}

.footer-meta a {
  color: #ff8d73;
  font-weight: 700;
  transition: .3s ease;
}

.footer-meta a:hover {
  color: #ffd166;
}