/* ============================================================
   VIBZ PLATFORM â€” Global Stylesheet
   Design tokens driven by tenant CSS variables set in header
   Matches the dark concert-platform aesthetic from screenshots
   ============================================================ */

/* â”€â”€ Google Fonts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--brand-bg, #0D0D0D);
  color: var(--brand-text, #FFFFFF);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* â”€â”€ Typography scale â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.t-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.t-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.t-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.t-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* â”€â”€ CSS Variables (overridden per tenant in <head>) â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --brand-primary:  #FA5C00;
  --brand-accent:   #F6A211;
  --brand-bg:       #0D0D0D;
  --brand-surface:  #1A1A1A;
  --brand-surface2: #242424;
  --brand-border:   rgba(255,255,255,.08);
  --brand-text:     #FFFFFF;
  --brand-muted:    rgba(255,255,255,.55);
  --header-height:  64px;
  --notice-height:  40px;
  --radius:         6px;
  --radius-lg:      12px;
  --trans:          .18s ease;
}

/* â”€â”€ Notice bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#notice-bar {
  position: relative;
  z-index: 200;
}
.notice-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 48px;
  height: var(--notice-height);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: opacity var(--trans);
}
/* Colour types */
.notice-item--discount { background: #C0202A; color: #fff; }
.notice-item--release  { background: #1A6B2A; color: #fff; }
.notice-item--code     { background: #8B6000; color: #fff; }
.notice-item--info     { background: #2D1B6B; color: #fff; }

.notice-item__msg { flex: 1; text-align: center; }
.notice-item__msg strong { font-weight: 700; letter-spacing: .04em; }

.notice-item__cta {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  transition: background var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.notice-item__cta:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}
.notice-item__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1;
  transition: background var(--trans), color var(--trans);
}
.notice-item__close:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* â”€â”€ Site header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  height: var(--header-height);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}
.header-logo__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

/* Main nav */
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius);
  transition: color var(--trans);
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: var(--brand-primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px 2px 0 0;
}
/* On-Air live dot */
.nav-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E24B4A;
  display: inline-block;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

/* Donate with pulsing heart */
.nav-donate {
  color: rgba(255,255,255,.65);
}
.nav-donate .heart-icon {
  color: #E24B4A;
  animation: heartBeat 1.4s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  14%     { transform: scale(1.25); }
  28%     { transform: scale(1); }
  42%     { transform: scale(1.15); }
}

/* Header actions (right side) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Icon buttons */
.hdr-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  transition: background var(--trans), color var(--trans);
}
.hdr-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
/* Notification badge */
.hdr-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 17px; height: 17px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--brand-bg);
}

/* Donate heart button (circle) */
.hdr-heart {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform var(--trans), background var(--trans);
}
.hdr-heart:hover { transform: scale(1.08); background: #E24B4A; }

/* Sign-in button */
.hdr-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}
.hdr-signin:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Logged-in avatar pill */
.hdr-member {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  cursor: pointer;
  transition: border-color var(--trans);
}
.hdr-member:hover { border-color: rgba(255,255,255,.25); }
.hdr-member__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.hdr-member__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hdr-member__name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile menu toggle */
.hdr-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.hdr-menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* â”€â”€ Cart drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
#cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
#cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 95vw);
  background: var(--brand-surface);
  z-index: 301;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--brand-border);
}
#cart-drawer.open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--brand-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  font-size: 22px;
  transition: background var(--trans);
}
.cart-drawer__close:hover { background: rgba(255,255,255,.08); color: #fff; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: var(--brand-muted);
  text-align: center;
}
.cart-empty__icon { font-size: 48px; opacity: .3; }
.cart-empty__msg  { font-size: 15px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__poster {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--brand-surface2);
  flex-shrink: 0;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__meta { font-size: 12px; color: var(--brand-muted); }
.cart-item__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  white-space: nowrap;
}
.cart-item__remove {
  font-size: 18px;
  color: rgba(255,255,255,.3);
  transition: color var(--trans);
  padding: 2px;
}
.cart-item__remove:hover { color: #E24B4A; }

.cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--brand-border);
  flex-shrink: 0;
}
.cart-drawer__limit {
  font-size: 11px;
  color: var(--brand-muted);
  margin-bottom: 12px;
  text-align: center;
}
.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cart-drawer__total-label { font-size: 14px; color: var(--brand-muted); }
.cart-drawer__total-amount {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .15s ease, opacity .15s ease, background .18s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .4; cursor: not-allowed; }

.btn--primary   { background: var(--brand-primary); color: #fff; }
.btn--primary:hover { opacity: .88; }

.btn--accent    { background: var(--brand-accent); color: #000; }
.btn--accent:hover { opacity: .88; }

.btn--live      { background: #E24B4A; color: #fff; }
.btn--live:hover { background: #c73c3b; }

.btn--vod       { background: #BA7517; color: #fff; }
.btn--vod:hover  { background: #9e6212; }

.btn--outline   {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
}
.btn--outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.btn--ghost     {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
}
.btn--ghost:hover { background: rgba(255,255,255,.13); }

.btn--full { width: 100%; }
.btn--sm   { padding: 7px 16px; font-size: 12px; }
.btn--lg   { padding: 14px 32px; font-size: 15px; }

/* â”€â”€ Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge--live      { background: #E24B4A; color: #fff; }
.badge--vod       { background: #BA7517; color: #fff; }
.badge--inperson  { background: #1D9E75; color: #fff; }
.badge--soon      { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
/* Animated live dot inside badge */
.badge--live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: livePulse 1.5s ease-in-out infinite;
}

/* â”€â”€ Site footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--brand-border);
  margin-top: 80px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--brand-border);
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand__logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-brand__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-brand__tagline {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 17px;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  text-decoration: none;
}
.footer-social__btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--brand-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom__nav a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color var(--trans);
}
.footer-bottom__nav a:hover { color: rgba(255,255,255,.7); }
.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: .04em;
  transition: opacity var(--trans);
}
.footer-back-top:hover { opacity: .75; }

/* â”€â”€ Mobile nav drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--brand-surface);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  padding: 24px;
  overflow-y: auto;
  border-right: 1px solid var(--brand-border);
}
#mobile-nav.open { transform: translateX(0); }
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 399;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
#mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: background var(--trans), color var(--trans);
}
.mobile-nav__link:hover, .mobile-nav__link.active {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.mobile-nav__link.active { color: var(--brand-primary); }
.mobile-nav__divider {
  height: 1px;
  background: var(--brand-border);
  margin: 16px 0;
}

/* â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.text-muted { color: var(--brand-muted); }
.text-primary { color: var(--brand-primary); }
.text-accent { color: var(--brand-accent); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* â”€â”€ Price display â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.price-block { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-amount { font-weight: 600; }
.price-sep { color: var(--brand-muted); font-size: 12px; }
.price-was { text-decoration: line-through; color: var(--brand-muted); font-size: 13px; }
.price-flash { color: var(--brand-primary); }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hdr-signin span { display: none; }
  .hdr-menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --header-height: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hdr-member__name { display: none; }
}

/* â”€â”€ Focus states (accessibility) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* â”€â”€ Scrollbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   POSTER FIX — append to global.css
   Forces SVG/IMG placeholders to stay inside their card bounds
   no matter what intrinsic size they report
   ============================================================ */

.concert-card__poster-wrap,
.confirm-code-card__poster,
.cart-item__poster,
.purchase-item__poster {
  overflow: hidden !important;
  position: relative !important;
}

.concert-card__poster-wrap svg,
.concert-card__poster-wrap img,
.confirm-poster,
.purchase-poster {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Onair / concert-poster (full-size, not in a card) keep natural flow */
.onair-next-poster,
.concert-poster {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
/* ============================================================
   VIEWPORT PADDING FIX — append to global.css on all 3 brands
   Adds breathing room on the left/right edges, especially
   noticeable on the donate page steps and library results
   ============================================================ */

/* Increase base container padding slightly */
.container {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* Donate page steps were flush to the edge */
.donate-step,
.checkout-section,
.cart-code-section,
.account-sub-card,
.sub-detail-card {
  margin-left: 0;
  margin-right: 0;
}

/* On narrower viewports increase padding further */
@media (max-width: 900px) {
  .container { padding-left: 20px !important; padding-right: 20px !important; }
}
@media (max-width: 600px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .header-inner { padding-left: 16px !important; padding-right: 16px !important; }
  .footer-bar { padding-left: 16px !important; padding-right: 16px !important; }
}

/* Library filter bar and results need the same edge spacing */
.lib-filters-bar .container,
.lib-hero .container {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* ============================================================
   APPEND TO BOTTOM OF global.css ON ALL THREE BRANDS
   Fixes: poster containment, card grid, countdown display
   ============================================================ */

/* -- Poster containment fix -------------------------------- */
.concert-card__poster-wrap {
  position: relative !important;
  display: block !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #1A1A1A !important;
  width: 100% !important;
}
.concert-card__poster-wrap svg,
.concert-card__poster-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* -- Concert card grid ------------------------------------- */
.concert-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}
.concert-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
}
.concert-card {
  background: var(--brand-surface, #1A1A1A) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  display: flex !important;
  flex-direction: column !important;
}

/* -- Countdown in card — prevent raw text display ---------- */
.concert-card__countdown {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
}
.countdown-num {
  display: block !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--brand-primary, #FA5C00) !important;
  line-height: 1 !important;
  min-width: 28px !important;
  text-align: center !important;
}
.countdown-lbl {
  display: block !important;
  font-size: 9px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.35) !important;
  margin-top: 2px !important;
}
.countdown-sep {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.2) !important;
  margin-bottom: 10px !important;
  flex-shrink: 0 !important;
}

/* -- Viewport padding -------------------------------------- */
.container {
  padding-left: 28px !important;
  padding-right: 28px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}
@media (max-width: 600px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .concert-grid { grid-template-columns: 1fr !important; }
}




/* ============================================================
   VIBZ PLATFORM â€” Design System Fixes v2
   Append to global.css on ALL THREE brands
   Brand-specific overrides go in brand-overrides.css per brand
   ============================================================ */

/* â”€â”€ Concert card â€” sleek bottom line, more padding â”€â”€â”€â”€â”€â”€â”€ */
.concert-card {
  background: var(--brand-surface, #1A1A1A);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);  /* very subtle border */
  border-bottom: 3px solid var(--card-accent, var(--brand-primary));
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.concert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.1);
  border-bottom-color: var(--card-accent, var(--brand-primary));
}

/* More breathing room inside cards */
.concert-card__info {
  padding: 16px 20px 20px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.concert-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}
.concert-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-wrap: wrap;
  min-width: 0;
}
.concert-card__foot .btn,
.concert-card__foot button {
  flex-shrink: 0;
  white-space: nowrap;
}

/* â”€â”€ Countdown â€” no border box, clean inline numbers â”€â”€â”€â”€â”€â”€â”€ */
.concert-card__countdown {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-bottom: 10px !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  min-width: 30px;
  text-align: center;
}
.countdown-lbl {
  display: block;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 1px;
  text-align: center;
}
.countdown-sep {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* â”€â”€ LIVE badge â€” always red + pulse on ALL brands â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge--live {
  background: #E24B4A !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}
.badge--live::before {
  content: '' !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #fff !important;
  display: inline-block !important;
  animation: livePulse 1.4s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.75); }
}

/* â”€â”€ Library sort dropdown â€” dark background fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lib-sort__select,
select.lib-sort__select {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 8px !important;
  color: rgba(255,255,255,.8) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 32px !important;
}
.lib-sort__select option,
select.lib-sort__select option {
  background: #1A1A1A !important;
  color: #fff !important;
}
.lib-sort__select:focus {
  border-color: var(--brand-primary) !important;
}

/* â”€â”€ Poster containment â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.concert-card__poster-wrap {
  position: relative !important;
  display: block !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #141420 !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}
.concert-card__poster-wrap svg,
.concert-card__poster-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* â”€â”€ Concert grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.concert-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}
.concert-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
}

/* â”€â”€ Viewport breathing room â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  padding-left: 28px !important;
  padding-right: 28px !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 768px) {
  .container { padding-left: 20px !important; padding-right: 20px !important; }
  .concert-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
}
@media (max-width: 540px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .concert-grid { grid-template-columns: 1fr !important; }
}
/* ============================================================
   VIBZ PLATFORM â€” Design System Fixes v2
   Append to global.css on ALL THREE brands
   Brand-specific overrides go in brand-overrides.css per brand
   ============================================================ */

/* â”€â”€ Concert card â€” sleek bottom line, more padding â”€â”€â”€â”€â”€â”€â”€ */
.concert-card {
  background: var(--brand-surface, #1A1A1A);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);  /* very subtle border */
  border-bottom: 3px solid var(--card-accent, var(--brand-primary));
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.concert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.1);
  border-bottom-color: var(--card-accent, var(--brand-primary));
}

/* More breathing room inside cards */
.concert-card__info {
  padding: 16px 20px 20px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.concert-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}
.concert-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-wrap: wrap;
  min-width: 0;
}
.concert-card__foot .btn,
.concert-card__foot button {
  flex-shrink: 0;
  white-space: nowrap;
}

/* â”€â”€ Countdown â€” no border box, clean inline numbers â”€â”€â”€â”€â”€â”€â”€ */
.concert-card__countdown {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-bottom: 10px !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  min-width: 30px;
  text-align: center;
}
.countdown-lbl {
  display: block;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 1px;
  text-align: center;
}
.countdown-sep {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* â”€â”€ LIVE badge â€” always red + pulse on ALL brands â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge--live {
  background: #E24B4A !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}
.badge--live::before {
  content: '' !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #fff !important;
  display: inline-block !important;
  animation: livePulse 1.4s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.75); }
}

/* â”€â”€ Library sort dropdown â€” dark background fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lib-sort__select,
select.lib-sort__select {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 8px !important;
  color: rgba(255,255,255,.8) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  outline: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 32px !important;
}
.lib-sort__select option,
select.lib-sort__select option {
  background: #1A1A1A !important;
  color: #fff !important;
}
.lib-sort__select:focus {
  border-color: var(--brand-primary) !important;
}

/* â”€â”€ Poster containment â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.concert-card__poster-wrap {
  position: relative !important;
  display: block !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #141420 !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}
.concert-card__poster-wrap svg,
.concert-card__poster-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* â”€â”€ Concert grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.concert-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}
.concert-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
}

/* â”€â”€ Viewport breathing room â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  padding-left: 28px !important;
  padding-right: 28px !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 768px) {
  .container { padding-left: 20px !important; padding-right: 20px !important; }
  .concert-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
}
@media (max-width: 540px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .concert-grid { grid-template-columns: 1fr !important; }
}
