@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.vybe-2k27 {
  /* Palette pulled from soundMajorz.com's live theme (District, "current" preset):
     white body, near-black header/footer bands, red accent. */
  --bg: #ffffff;
  --bg-deep: #171717;
  --surface: #ffffff;
  --surface-deep: #1f1f1f;
  --ink: #171717;
  --ink-on-deep: #ffffff;
  --muted: #6b6b6b;
  --muted-on-deep: #b0b0b0;
  --accent: #eb153b;
  --accent-ink: #ffffff;
  --hairline: #e9e9e9;
  --hairline-deep: rgba(255,255,255,0.12);

  background: var(--bg);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  line-height: 1.65;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}

.vybe-2k27 :where(a) {
  text-decoration: none;
  color: inherit;
}

.vybe-2k27 :where(h1, h2, h3) {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.vybe-2k27 .v-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vybe-2k27 .v-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.vybe-2k27 .v-mono {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

/* Brand logo badges: the logo art is black/red on a white ground, so it
   rides on a small white chip rather than sitting directly on the page
   background. */
.vybe-2k27 .v-brandrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.vybe-2k27 .v-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 7px 12px;
  line-height: 0;
}
.vybe-2k27 .v-badge img {
  display: block;
  height: 18px;
  width: auto;
}
.vybe-2k27 .v-badge--square img { height: 26px; }
.vybe-2k27 .v-brandrow .v-mono {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.vybe-2k27 .v-section--deep .v-brandrow .v-mono { color: var(--muted-on-deep); }

.vybe-2k27 .v-section {
  padding: 70px 24px;
  border-top: 1px solid var(--hairline);
}
.vybe-2k27 .v-section:first-child { border-top: none; }
.vybe-2k27 .v-section--deep {
  background: var(--bg-deep);
  color: var(--ink-on-deep);
  border-top-color: var(--hairline-deep);
}
.vybe-2k27 .v-section--deep .v-section-sub { color: var(--muted-on-deep); }

.vybe-2k27 .v-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero */
.vybe-2k27 .v-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.vybe-2k27 .v-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 12px 0 20px;
}
.vybe-2k27 .v-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.vybe-2k27 .v-hero p {
  color: var(--muted);
  max-width: 46ch;
  font-size: 17px;
}
.vybe-2k27 .v-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.vybe-2k27 .v-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
}
.vybe-2k27 .v-btn,
.vybe-2k27 .v-btn:hover,
.vybe-2k27 .v-btn:focus,
.vybe-2k27 .v-btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-ink) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 16px 26px;
  border-radius: 4px;
  transition: transform .15s ease, background .15s ease;
  border: 1px solid var(--accent);
}
.vybe-2k27 .v-btn:hover { background: #c9102f; transform: translateY(-1px); }
.vybe-2k27 .v-btn--ghost,
.vybe-2k27 .v-btn--ghost:hover,
.vybe-2k27 .v-btn--ghost:focus,
.vybe-2k27 .v-btn--ghost:visited {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}
.vybe-2k27 .v-hero-art {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 1 / 1;
  background: var(--surface);
}
.vybe-2k27 .v-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section headers */
.vybe-2k27 .v-section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 8px;
}
.vybe-2k27 .v-section-sub {
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 60ch;
}

/* Demo track player (large) */
.vybe-2k27 .v-tracks {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--hairline-deep);
  border: 1px solid var(--hairline-deep);
  border-radius: 8px;
  overflow: hidden;
}
.vybe-2k27 .v-track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--surface-deep);
  padding: 22px 24px;
  transition: background .2s ease;
}
.vybe-2k27 .v-track:hover { background: #262626; }
.vybe-2k27 .v-playbtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.vybe-2k27 .v-playbtn:hover { background: rgba(235,21,59,0.12); }
.vybe-2k27 .v-playbtn svg { width: 16px; height: 16px; }
.vybe-2k27 .v-playbtn .icon-pause { display: none; }
.vybe-2k27 .v-track.is-playing .icon-play { display: none; }
.vybe-2k27 .v-track.is-playing .icon-pause { display: block; }

.vybe-2k27 .v-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  overflow: hidden;
  cursor: pointer;
}
.vybe-2k27 .v-wave span {
  display: block;
  width: 3px;
  min-width: 3px;
  border-radius: 2px;
  background: var(--muted-on-deep);
  opacity: .55;
  transform-origin: bottom center;
  transition: background .2s ease, opacity .2s ease;
}
.vybe-2k27 .v-track.is-playing .v-wave span,
.vybe-2k27 .v-oneshot.is-playing .v-wave span {
  background: var(--accent);
  opacity: 1;
  animation-name: v-bounce;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  /* animation-duration and animation-delay are set per-bar inline (see JS)
     so bars move independently instead of pulsing in lockstep */
}
.vybe-2k27 .v-wave span.is-past { background: var(--accent); opacity: .85; }
@keyframes v-bounce {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}
.vybe-2k27 .v-track-meta {
  text-align: right;
  white-space: nowrap;
}
.vybe-2k27 .v-track-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
}
.vybe-2k27 .v-track-tag {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted-on-deep);
  margin-top: 2px;
}

/* One-shot grid (small players) */
.vybe-2k27 .v-oneshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}
.vybe-2k27 .v-oneshot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  padding: 16px 18px;
  transition: background .2s ease;
}
.vybe-2k27 .v-oneshot:hover { background: #f6f6f6; }
.vybe-2k27 .v-oneshot .v-playbtn {
  width: 38px;
  height: 38px;
}
.vybe-2k27 .v-oneshot .v-playbtn svg { width: 13px; height: 13px; }
.vybe-2k27 .v-oneshot .v-wave { height: 28px; }
.vybe-2k27 .v-oneshot .v-wave span { background: var(--hairline); }
.vybe-2k27 .v-oneshot.is-playing .v-wave span { background: var(--accent); }
.vybe-2k27 .v-oneshot .v-track-name { font-size: 13px; }
.vybe-2k27 .v-oneshot .v-track-tag { display: none; }

/* CTA band */
.vybe-2k27 .v-cta {
  text-align: center;
  padding: 90px 24px;
}
.vybe-2k27 .v-cta .v-brandrow { justify-content: center; margin: 0 0 18px; }
.vybe-2k27 .v-cta h2 { margin-bottom: 14px; }
.vybe-2k27 .v-cta p {
  color: var(--muted-on-deep);
  margin: 0 auto 32px;
  max-width: 50ch;
}

/* Drum pads */
.vybe-2k27 .v-pads {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}
.vybe-2k27 .v-pad {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--surface-deep);
  color: var(--ink-on-deep);
  border: 1px solid var(--hairline-deep);
  border-radius: 8px;
  padding: 22px 8px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .1s ease, color .15s ease;
}
.vybe-2k27 .v-pad:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.vybe-2k27 .v-pad.is-hit {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: scale(0.96);
}

/* Kit tiles */
.vybe-2k27 .v-kits {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}
.vybe-2k27 .v-section--deep .v-kits {
  background: var(--hairline-deep);
  border-color: var(--hairline-deep);
}
.vybe-2k27 .v-kit {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  padding: 16px 20px;
  transition: background .2s ease;
}
.vybe-2k27 .v-section--deep .v-kit { background: var(--surface-deep); }
.vybe-2k27 .v-kit:hover { background: #f6f6f6; }
.vybe-2k27 .v-section--deep .v-kit:hover { background: #262626; }
.vybe-2k27 .v-kit-art {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
.vybe-2k27 .v-kit-title {
  font-weight: 700;
  font-size: 15px;
  display: block;
}
.vybe-2k27 .v-kit-tag {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-top: 2px;
}
.vybe-2k27 .v-section--deep .v-kit-tag { color: var(--muted-on-deep); }
.vybe-2k27 .v-kit-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.vybe-2k27 .v-kit-price:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

@media (max-width: 860px) {
  .vybe-2k27 .v-pads { grid-template-columns: repeat(3, 1fr); }
  .vybe-2k27 .v-kit { grid-template-columns: 44px 1fr; row-gap: 10px; }
  .vybe-2k27 .v-kit-price { grid-column: 1 / -1; width: 100%; text-align: center; }
  .vybe-2k27 .v-hero { grid-template-columns: 1fr; }
  .vybe-2k27 .v-hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .vybe-2k27 .v-oneshots { grid-template-columns: 1fr; }
  .vybe-2k27 .v-section { padding: 48px 18px; }
}

/* Small note under a list of players/kits */
.vybe-2k27 .v-section-note {
  color: var(--muted);
  font-size: 14px;
  margin: -16px 0 24px;
}
.vybe-2k27 .v-section--deep .v-section-note { color: var(--muted-on-deep); }
