/* ============================================================
   VOODOO HUT — Main Stylesheet
   HTXPunk.com
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=Oswald:wght@300;400;600;700&family=Open+Sans:wght@300;400;600&family=Share+Tech+Mono&display=swap');

/* --- Design Tokens --- */
:root {
  --black:      #060608;
  --dark:       #0f0f12;
  --card:       #16161b;
  --card-hover: #1e1e24;
  --border:     rgba(255,255,255,0.07);
  --red:        #e01020;
  --red-dark:   #8a0c18;
  --red-glow:   rgba(224,16,32,0.35);
  --cyan:       #00c8c8;
  --cyan-glow:  rgba(0,200,200,0.25);
  --gold:       #c8a020;
  --white:      #f0eeec;
  --muted:      #777;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --nav-h:      72px;
  --player-h:   68px;
  --radius:     8px;
  --max-w:      1200px;
  --transition: 0.25s ease;
  --space:        #010408;
  --glass:        rgba(2, 6, 18, 0.72);
  --glass-border: rgba(80, 120, 255, 0.12);
  --nebula:       rgba(50, 0, 100, 0.18);
  --purple:       #7b00cc;
  --purple-glow:  rgba(120, 0, 200, 0.3);
  --font-cinzel:  'Cinzel', serif;
  --font-cinzel-dec: 'Cinzel Decorative', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--space);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 90px;
  padding-bottom: var(--player-h);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-display); border: none; }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

h1 { font-size: clamp(40px, 7vw, 96px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 14px; font-weight: 600; letter-spacing: 0.15em; color: var(--muted); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-red    { color: var(--red); }
.text-cyan   { color: var(--cyan); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ============================================================
   COMPONENTS
   ============================================================ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-primary:hover {
  background: #ff1a28;
  color: var(--white);
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--black);
}
.btn-cyan:hover {
  background: #00e5e5;
  color: var(--black);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: #e0b422;
  color: var(--black);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* Accent line */
.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  margin: 16px auto;
}
.accent-line.left { margin-left: 0; }

/* Cards */
.card {
  background: rgba(4, 8, 22, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card:hover {
  border-color: rgba(80,130,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(120,0,200,0.08);
}

.card-body { padding: 24px; }
.card-body-sm { padding: 16px; }

.card-red   { border-top: 3px solid var(--red); }
.card-cyan  { border-top: 3px solid var(--cyan); }
.card-gold  { border-top: 3px solid var(--gold); }
.card-left-red  { border-left: 3px solid var(--red); }
.card-left-cyan { border-left: 3px solid var(--cyan); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-red  { background: rgba(224,16,32,0.15); border: 1px solid var(--red); color: var(--red); }
.badge-cyan { background: rgba(0,200,200,0.12); border: 1px solid var(--cyan); color: var(--cyan); }
.badge-gold { background: rgba(200,160,32,0.12); border: 1px solid var(--gold); color: var(--gold); }
.badge-live { background: rgba(224,16,32,0.2); border: 1px solid var(--red); color: var(--red); }

.live-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: live-pulse 1.2s infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 32px 0;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  margin: 2px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

#navbar.scrolled {
  background: rgba(6,6,8,0.98);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
}

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.nav-logo .logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240,238,236,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active {
  color: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-listen {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(224,16,32,0.12);
  border: 1px solid rgba(224,16,32,0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav-listen:hover {
  background: rgba(224,16,32,0.2);
  color: var(--red);
}

/* Mobile hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 24px; right: 24px;
  background: rgba(1, 4, 14, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(80, 130, 255, 0.15);
  border-radius: 20px;
  z-index: 999;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

#mobile-menu.open { display: block; }

#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}
#mobile-menu ul li a:hover { color: var(--red); }

/* ============================================================
   RADIO PLAYER (persistent bottom bar)
   ============================================================ */

#radio-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: rgba(1, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(80, 130, 255, 0.12);
  z-index: 900;
  display: flex;
  align-items: center;
}

.player-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.player-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.player-now-playing {
  flex: 1;
  min-width: 0;
}

.player-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.player-track {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

#play-pause {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  box-shadow: 0 0 16px var(--red-glow);
}

#play-pause:hover {
  background: #ff1a28;
  transform: scale(1.05);
}

.player-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

#volume {
  -webkit-appearance: none;
  width: 80px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}

#volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}

.player-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,16,32,0.08) 0%, transparent 60%),
              linear-gradient(180deg, transparent 50%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(224,16,32,0.15);
  margin-bottom: 8px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,238,236,0.7);
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '▼';
  font-size: 12px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   QUICK ACCESS BAR
   ============================================================ */

.quick-access {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  color: var(--white);
}

.quick-item:last-child { border-right: none; }

.quick-item:hover {
  background: var(--card);
  color: var(--red);
}

.quick-item .qi-icon { font-size: 24px; }

.quick-item .qi-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(224,16,32,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.event-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 40px;
}

.event-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.event-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.event-genre {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.event-stage {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   MENU STYLES
   ============================================================ */

.menu-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.menu-tab {
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  white-space: nowrap;
}

.menu-tab:hover { color: var(--white); }
.menu-tab.active { color: var(--red); border-bottom-color: var(--red); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  font-size: 18px;
  color: var(--cyan);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================================================
   STREAM EMBEDS
   ============================================================ */

.stream-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.stream-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.stream-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stream-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.stream-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.stream-offline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--muted);
  gap: 12px;
}

.stream-offline .off-icon { font-size: 48px; }
.stream-offline .off-msg {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stream-offline .off-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.stream-footer {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

/* ============================================================
   RADIO SECTION
   ============================================================ */

.radio-player-large {
  background: var(--card);
  border: 1px solid rgba(224,16,32,0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.radio-dj-logo {
  margin: 0 auto 16px;
  width: clamp(160px, 50%, 220px);
  filter: drop-shadow(0 0 18px rgba(224,16,32,0.45));
  transition: filter 0.3s;
}
.radio-dj-logo:hover { filter: drop-shadow(0 0 28px rgba(224,16,32,0.7)); }
.radio-dj-logo img { width: 100%; height: auto; display: block; }

.radio-station-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  margin-bottom: 4px;
}

.radio-now-playing-info {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  margin: 16px 0;
}

.radio-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 12px 0;
}

.radio-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  animation: radio-progress 12s linear infinite;
}

@keyframes radio-progress {
  from { width: 0%; }
  to { width: 100%; }
}

.radio-listeners {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   CONTACT / FORMS
   ============================================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-control::placeholder { color: var(--muted); }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666870' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Info boxes */
.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.info-box h4 {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 0.15em;
}

.info-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-row:last-child { border-bottom: none; }

.info-label {
  font-weight: 600;
  color: var(--muted);
  min-width: 90px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  padding-top: 1px;
}

/* ============================================================
   MERCH
   ============================================================ */

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.merch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.merch-card:hover {
  border-color: rgba(224,16,32,0.3);
  transform: translateY(-2px);
}

.merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border-bottom: 1px solid var(--border);
}

.merch-body { padding: 16px; }

.merch-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.merch-desc { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.merch-price { font-size: 20px; font-weight: 700; color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .brand-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--red);
  background: rgba(224,16,32,0.1);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(240,238,236,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-hours { font-size: 14px; color: rgba(240,238,236,0.65); }
.footer-hours span { display: block; margin-bottom: 6px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.footer-bottom a { color: var(--cyan); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.page-header {
  background: linear-gradient(180deg, rgba(15,15,18,0.72) 0%, rgba(6,6,8,0.6) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,16,32,0.05) 0%, transparent 70%);
}

.page-header > * { position: relative; }

.page-header h1 { margin-bottom: 8px; }
.page-header p { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ============================================================
   SPONSOR / ADVERTISE
   ============================================================ */

.sponsor-tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.sponsor-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(224,16,32,0.3);
}

.sponsor-tier.featured {
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-glow);
}

.sponsor-tier .tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: uppercase;
}

.sponsor-tier .tier-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.sponsor-tier .tier-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.sponsor-tier ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.sponsor-tier ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(240,238,236,0.8);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.sponsor-tier ul li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quick-access-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-item { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-listen { display: none; }
  #hamburger { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quick-access-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 56px 0; }

  .player-vol { display: none; }
  .player-link { display: none; }

  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .quick-access-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-item { padding: 16px 8px; }
  .quick-item .qi-label { font-size: 10px; }

  .container { padding: 0 16px; }
  h1 { font-size: 36px; }
}

/* ============================================================
   SUPPLEMENTAL — Components used in HTML pages
   ============================================================ */

/* --- Nav (ID alias) --- */
.main-nav {
  position: fixed;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  height: 60px;
  z-index: 1000;
  background: rgba(2, 6, 18, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(80, 130, 255, 0.15);
  border-radius: 40px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
              0 4px 24px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background var(--transition), box-shadow var(--transition);
}
.main-nav.scrolled {
  background: rgba(1, 4, 14, 0.92);
  box-shadow: 0 0 0 1px rgba(80,130,255,0.12),
              0 4px 32px rgba(0,0,0,0.8),
              0 0 40px rgba(120,0,200,0.08),
              inset 0 1px 0 rgba(255,255,255,0.04);
}
.main-nav .nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}

/* Nav logo as wordmark */
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--red); text-shadow: 0 0 16px var(--red-glow); }

.nav-link {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240,238,236,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--cyan); }
.nav-link.active { color: var(--red); text-shadow: 0 0 12px var(--red-glow); }

/* Mobile nav link */
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: var(--red); }

/* Hamburger (text-based) */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 768px) { .hamburger { display: block; } }

/* --- Page header inner pages --- */
.page-header-title {
  font-size: clamp(36px, 6vw, 80px);
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
  margin-bottom: 12px;
}
.page-header-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Section utilities --- */
.section-dark {
  background: rgba(2, 4, 14, 0.85);
  backdrop-filter: blur(8px);
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}
.body-text {
  font-size: 16px;
  color: rgba(240,238,236,0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* section-header flex variant */
.section-header.flex-between,
.section-header[style*="display:flex"],
.section-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.section-header.centered,
.section-header[style*="text-align:center"] { text-align: center; justify-content: center; flex-direction: column; align-items: center; }

/* --- Hero section --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(224,16,32,0.08) 0%, transparent 65%),
              var(--black);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 880px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 60px rgba(224,16,32,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.hero-title span { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.hero-tagline {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(240,238,236,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  margin: 0 auto;
}
.hero-scroll-indicator span:nth-child(1) { opacity: 1; }
.hero-scroll-indicator span:nth-child(2) { opacity: .5; }
.hero-scroll-indicator span:nth-child(3) { opacity: .25; }

/* --- Quick access (HTML variant) --- */
.quick-access { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  color: var(--white);
  text-align: center;
  text-decoration: none;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--card); color: var(--red); }
.quick-icon { font-size: 24px; }
.quick-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
}
@media (max-width: 768px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-item { border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Events grid --- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .events-grid { grid-template-columns: 1fr; } }

/* Event card body variant */
.event-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}
.event-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--dark), var(--card));
}
.event-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.event-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 4px; }
.event-desc { font-size: 14px; color: var(--muted); margin: 8px 0 16px; line-height: 1.5; flex: 1; }
.event-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* --- About page --- */
.prose-layout { max-width: 720px; margin: 0 auto; }
.prose-body .divider { margin: 2.5rem 0; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .split-layout { grid-template-columns: 1fr; gap: 40px; } }
.split-text {}
.split-visual {}

.venue-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.venue-stat {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .stages-grid { grid-template-columns: 1fr; } }

.stage-card { padding: 32px 24px; }
.stage-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.stage-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.stage-desc { font-size: 14px; color: rgba(240,238,236,0.75); margin-bottom: 16px; line-height: 1.6; }
.stage-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stage-specs li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  padding-left: 14px;
  position: relative;
}
.stage-specs li::before { content: '›'; position: absolute; left: 0; color: var(--cyan); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr 1fr; } }

.stat-block {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 16px;
  text-align: center;
}
.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  text-shadow: 0 0 16px var(--red-glow);
  line-height: 1;
}
.stat-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.cta-block { text-align: center; }

/* --- Radio teaser (index) --- */
.radio-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(224,16,32,0.2);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 768px) { .radio-teaser { grid-template-columns: 1fr; gap: 24px; text-align: center; } }

.radio-teaser-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(224,16,32,0.08);
  animation: radio-ring 2s infinite;
}
@keyframes radio-ring {
  0%   { transform: scale(0.8); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.radio-icon { font-size: 56px; position: relative; z-index: 1; }
.radio-teaser-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.radio-teaser-track {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.radio-teaser-sub { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* --- Streams teaser (index) --- */
.streams-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .streams-teaser-grid { grid-template-columns: 1fr; } }

.stream-teaser-card {
  display: block;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition);
}
.stream-teaser-card:hover { transform: translateY(-4px); color: var(--white); }

.stream-teaser-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.stream-teaser-card:hover .stream-teaser-thumb { border-color: rgba(224,16,32,0.4); }

.stream-stage-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(6,6,8,0.7);
  padding: 4px 10px;
  border-radius: 4px;
}
.stream-status-dot {
  width: 8px; height: 8px;
  background: var(--muted);
  border-radius: 50%;
}
.stream-teaser-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* --- Merch CTA banner --- */
.merch-cta { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.merch-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 640px) { .merch-cta-inner { flex-direction: column; text-align: center; } }

/* --- Footer (HTML variant) --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  margin-bottom: 6px;
  display: block;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-credit { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.footer-credit a { color: var(--cyan); }

.footer-col {}
.footer-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-address { font-style: normal; margin-bottom: 12px; }
.footer-address p { font-size: 14px; color: rgba(240,238,236,0.65); }
.footer-hours p  { font-size: 14px; color: rgba(240,238,236,0.65); margin-bottom: 4px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin: 0; }
.footer-bottom a { color: var(--cyan); }
@media (max-width: 640px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* --- Persistent Radio Player (HTML variant) --- */
.radio-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: rgba(1, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(80, 130, 255, 0.12);
  z-index: 900;
  display: flex;
  align-items: center;
}
.radio-player-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.radio-player-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.radio-player-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.radio-player-track {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-player-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.radio-volume {
  -webkit-appearance: none;
  width: 80px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.radio-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}
.radio-play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 16px var(--red-glow);
  flex-shrink: 0;
}
.radio-play-btn:hover { background: #ff1a28; transform: scale(1.05); }
.radio-player-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .radio-volume { display: none; }
  .radio-player-link { display: none; }
}

/* --- Menu section alias --- */
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.menu-notice {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}

/* --- Radio hero (radio page) --- */
.radio-hero {
  padding: 80px 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(224,16,32,0.06) 0%, transparent 60%),
              var(--black);
}
.radio-hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .radio-hero-layout { grid-template-columns: 1fr; } }
.radio-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
  margin-bottom: 20px;
}
.radio-hero-title span { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.radio-hero-sub { font-size: 16px; color: rgba(240,238,236,0.7); line-height: 1.7; margin-bottom: 32px; }
.radio-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-mono-text { font-family: var(--font-mono); }

/* Listen-on bar */
.listen-on-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.listen-on-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.listen-on-links { display: flex; gap: 10px; flex-wrap: wrap; }
.listen-on-btn {
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  letter-spacing: .08em;
  transition: all var(--transition);
  text-decoration: none;
}
.listen-on-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* Programming grid */
.programming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .programming-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .programming-grid { grid-template-columns: 1fr; } }

.program-card {}
.program-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.program-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.program-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.program-schedule {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Ad tiers */
.ad-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .ad-tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.ad-contact-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: 14px; }
.ad-contact-note a { color: var(--cyan); }

/* --- Events page --- */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover { color: var(--white); border-color: rgba(255,255,255,.2); }
.filter-pill.active { background: rgba(224,16,32,.12); border-color: var(--red); color: var(--red); }

.month-header { margin-bottom: 8px; }
.month-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

/* Form card */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

/* Recording callout */
.info-callout {
  background: var(--card);
  border: 1px solid rgba(0,200,200,0.2);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 640px) { .info-callout { flex-direction: column; } }
.callout-icon { font-size: 40px; flex-shrink: 0; }
.callout-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.callout-text { font-size: 15px; color: rgba(240,238,236,0.8); margin-bottom: 16px; }

/* --- Live page --- */
.stream-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.stream-platform-links { display: flex; gap: 10px; flex-wrap: wrap; }
.stream-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stream-footer-info { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.tip-row { display: flex; align-items: center; gap: 12px; }
.tip-label { font-size: 14px; color: var(--muted); }

/* Tonight bar */
.tonight-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tonight-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.tonight-items { display: flex; align-items: center; gap: 16px; flex: 1; flex-wrap: wrap; }
.tonight-item { display: flex; align-items: center; gap: 8px; }
.tonight-stage { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.tonight-act { font-size: 14px; color: var(--white); font-weight: 600; }
.tonight-divider { color: var(--border); font-size: 18px; }

/* Tip section */
.tip-icon-large { font-size: 56px; display: block; margin-bottom: 16px; }
.tip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 640px) { .tip-grid { grid-template-columns: repeat(2, 1fr); } }
.tip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.tip-card:hover { border-color: rgba(200,160,32,.4); }
.tip-card-featured { border-color: var(--gold); box-shadow: 0 0 20px rgba(200,160,32,.15); }
.tip-amount { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.tip-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

/* Tech grid (live page) */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
@media (max-width: 768px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.tech-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Share callout */
.share-callout { text-align: center; margin-top: 40px; padding: 32px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.share-text { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
.share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.share-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* --- Gallery page --- */
.gallery-share-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.share-bar-text { font-size: 14px; color: var(--muted); }

.gallery-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
@media (max-width: 768px) { .gallery-featured { grid-template-columns: 1fr; } }
.gallery-featured-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.gallery-featured-info { padding: 32px 32px 32px 0; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 768px) { .gallery-featured-info { padding: 24px; } }

.gallery-item-date { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.gallery-item-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.gallery-item-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.gallery-item-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.share-btn-inline {
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--dark);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.share-btn-inline:hover { border-color: var(--cyan); color: var(--cyan); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
@media (max-width: 768px) { .gallery-item-wide, .gallery-item-tall { grid-column: span 1; grid-row: span 1; } }

.gallery-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.gallery-thumb-tall { height: 100%; }
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }
.gallery-placeholder-icon { font-size: 48px; }
.gallery-thumb-video { background: var(--black); }
.gallery-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 4px;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(6,6,8,.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.gallery-overlay-actions button {
  padding: 4px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  font-size: 11px;
  color: var(--white);
  cursor: pointer;
}
.gallery-overlay-actions button:hover { background: var(--red); border-color: var(--red); }

/* Tag us block */
.tag-us-block { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tag-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  transition: border-color var(--transition);
}
.tag-platform:hover { border-color: var(--red); }
.tag-platform-icon { font-size: 28px; }
.tag-platform-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--white); }
.tag-platform-handle { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: .08em; }

/* --- Contact page --- */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .contact-quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-quick-grid { grid-template-columns: 1fr 1fr; } }

.contact-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: border-color var(--transition);
}
.contact-quick-card:hover { border-color: var(--red); color: var(--white); }
.contact-quick-icon { font-size: 24px; }
.contact-quick-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.contact-quick-value { font-family: var(--font-display); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--white); }

/* Online ordering bar */
.order-online-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(224,16,32,.06);
  border: 1px solid rgba(224,16,32,.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  flex-wrap: wrap;
}
.order-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.order-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-form-col {}
.contact-info-col {}

.map-placeholder {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  min-height: 140px;
}

.social-stack { display: flex; flex-direction: column; gap: 8px; }
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(240,238,236,.75);
  text-decoration: none;
  transition: color var(--transition);
}
.social-row:last-child { border-bottom: none; }
.social-row:hover { color: var(--cyan); }

/* --- Merch page --- */
.merch-intro-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.merch-shipping-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--muted); }
.merch-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }

.merch-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 640px) { .merch-info-grid { grid-template-columns: 1fr; } }
.merch-info-item { text-align: center; padding: 24px; }
.merch-info-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.merch-info-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.merch-info-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: calc(var(--player-h) + 16px);
  right: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 14px;
  color: var(--white);
  z-index: 950;
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  max-width: 320px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* container-narrow alias */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   LOGO — Oval sticker/patch PNG (white background)
   Displayed as a badge. No blend mode needed — the oval
   black border separates it from the dark nav cleanly.
   ============================================================ */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-composite {
  position: relative;
  display: inline-block;
  line-height: 0;
}
/* Skull sits on top of the blank logo — both images are the same size so no scaling needed */
.logo-skull {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform;
}
.logo-img {
  height: 56px;
  width: auto;
  border-radius: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  transition: filter .3s ease, transform .3s ease;
}
.logo-img:hover {
  filter: drop-shadow(0 4px 18px rgba(224,16,32,0.6)) drop-shadow(0 0 8px rgba(0,200,200,0.3));
  transform: scale(1.04);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-logo-img {
  width: min(340px, 78vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(224,16,32,0.55)) drop-shadow(0 0 80px rgba(0,200,200,0.2));
  animation: hero-logo-pulse 4s ease-in-out infinite;
}
@keyframes hero-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(224,16,32,0.45)) drop-shadow(0 0 60px rgba(0,0,0,0.5)); }
  50%       { filter: drop-shadow(0 0 60px rgba(224,16,32,0.75)) drop-shadow(0 0 100px rgba(0,200,200,0.3)); }
}

/* ============================================================
   EASTER EGG — Konami skull spin
   ============================================================ */
@keyframes skull-spin {
  0%   { transform: rotateY(0deg) scale(1); }
  25%  { transform: rotateY(180deg) scale(1.1); filter: hue-rotate(90deg) brightness(1.5); }
  50%  { transform: rotateY(360deg) scale(1); filter: hue-rotate(180deg); }
  75%  { transform: rotateY(540deg) scale(1.1); filter: hue-rotate(270deg) brightness(1.5); }
  100% { transform: rotateY(720deg) scale(1); filter: none; }
}
.skull-konami {
  animation: skull-spin 3s ease-in-out forwards;
  transform-origin: center;
}

/* ============================================================
   EASTER EGG — Toast notification
   ============================================================ */
#voodoo-toast {
  position: fixed;
  top: calc(var(--nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(6,6,8,.95);
  border: 1px solid var(--cyan);
  border-radius: 40px;
  padding: 12px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--cyan);
  z-index: 99000;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}
#voodoo-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   EASTER EGG — Secret Broadcast Overlay
   ============================================================ */
#secret-broadcast {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: broadcast-in .4s ease;
}
@keyframes broadcast-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sb-inner {
  position: relative;
  max-width: 540px;
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  overflow: hidden;
}
.sb-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,200,200,.03) 2px, rgba(0,200,200,.03) 4px);
  pointer-events: none;
  animation: scanline-move 8s linear infinite;
}
@keyframes scanline-move {
  from { background-position: 0 0; }
  to   { background-position: 0 200px; }
}
.sb-alert {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--red);
  text-transform: uppercase;
  animation: flicker .8s step-end infinite;
  margin-bottom: 8px;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}
.sb-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  margin-bottom: 24px;
}
.sb-body { font-size: 15px; color: rgba(240,238,236,.8); line-height: 1.7; }
.sb-body p { margin-bottom: 12px; }
.sb-riddle {
  background: rgba(0,200,200,.06);
  border: 1px solid rgba(0,200,200,.25);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}
.sb-riddle-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cyan);
  margin-bottom: 10px;
}
.sb-riddle p { font-style: italic; font-size: 16px; color: var(--white); margin: 0; }
.sb-hint { font-size: 13px; color: var(--muted); }
.sb-close {
  margin-top: 24px;
  padding: 10px 28px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.sb-close:hover { border-color: var(--cyan); color: var(--cyan); }

/* ============================================================
   EASTER EGG — Clue Modal
   ============================================================ */
.clue-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.clue-modal {
  max-width: 480px;
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(200,160,32,.4);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.clue-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.clue-riddle-text {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(200,160,32,.06);
  border-left: 3px solid var(--gold);
  text-align: left;
}
.clue-hint { font-size: 14px; color: rgba(240,238,236,.7); margin-bottom: 8px; }
.clue-next { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); letter-spacing: .08em; margin-bottom: 24px; }
.clue-btn {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.clue-btn:hover { background: rgba(200,160,32,.1); }

/* ============================================================
   EASTER EGG — Hidden scavenger clue elements (on pages)
   ============================================================ */
.secret-clue {
  display: none; /* shown by JS when previous clue unlocked */
  cursor: pointer;
  opacity: 0.06;
  font-size: 10px;
  color: var(--cyan);
  font-family: var(--font-mono);
  letter-spacing: .15em;
  transition: opacity .4s;
  user-select: none;
  text-align: center;
  padding: 6px;
  margin-top: 16px;
}
.secret-clue:hover { opacity: 1; }

/* ============================================================
   EASTER EGG — Final Reward Overlay
   ============================================================ */
#final-reward-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: broadcast-in .5s ease;
}
.reward-inner {
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.reward-skull { font-size: 72px; display: block; margin-bottom: 16px; animation: skull-bob 2s ease-in-out infinite; }
@keyframes skull-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.reward-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.reward-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.reward-coupon {
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(200,160,32,.2);
}
.coupon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.coupon-offer {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(200,160,32,.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.coupon-code-box {
  background: var(--card);
  border: 1px dashed var(--gold);
  border-radius: 4px;
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.coupon-code {
  font-family: var(--font-mono);
  font-size: 24px;
  letter-spacing: .3em;
  color: var(--white);
}
.coupon-sub { font-size: 12px; color: var(--muted); }
.reward-flavor { font-style: italic; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.reward-close {
  padding: 12px 32px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.reward-close:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   PARTICLES — Hero ember canvas
   ============================================================ */
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  animation: ember-rise linear infinite;
}
@keyframes ember-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: .8; }
  50%  { transform: translateY(-40vh) translateX(calc(var(--drift,0px))) scale(.6); opacity: .4; }
  100% { transform: translateY(-80vh) translateX(calc(var(--drift,0px) * 2)) scale(.1); opacity: 0; }
}

/* ============================================================
   TAROT PAGE
   ============================================================ */
.tarot-page {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #12060a 0%, #060608 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 24px 100px;
  position: relative;
  overflow: hidden;
}
.tarot-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,200,200,.012) 40px, rgba(0,200,200,.012) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,200,200,.012) 40px, rgba(0,200,200,.012) 41px);
  pointer-events: none;
}
.tarot-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 8px;
}
.tarot-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 40px rgba(0,200,200,.3);
  margin-bottom: 8px;
}
.tarot-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 500px;
}
.tarot-deck {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 48px;
  perspective: 1000px;
}
.tarot-card {
  width: 130px;
  height: 220px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.tarot-card.flipped { transform: rotateY(180deg); }
.tarot-card:not(.flipped):hover { transform: translateY(-12px) rotateY(5deg); }

.tarot-face, .tarot-back {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tarot-back {
  background: linear-gradient(135deg, #1a0810 0%, #0a0412 50%, #1a0810 100%);
  border: 1px solid rgba(200,160,32,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tarot-back::before {
  content: '⊗';
  font-size: 48px;
  color: rgba(200,160,32,.2);
  position: absolute;
}
.tarot-back-pattern {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(200,160,32,.04) 8px, rgba(200,160,32,.04) 9px),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(200,160,32,.04) 8px, rgba(200,160,32,.04) 9px);
}
.tarot-back-border {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200,160,32,.15);
  border-radius: 6px;
}

.tarot-face {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border: 1px solid;
  text-align: center;
}
.tarot-numeral {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  opacity: .7;
  align-self: flex-start;
}
.tarot-symbol { font-size: 36px; flex: 1; display: flex; align-items: center; }
.tarot-card-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
}

.tarot-reading-panel {
  max-width: 600px;
  width: 100%;
  background: rgba(20,4,12,.8);
  border: 1px solid rgba(200,160,32,.3);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.tarot-reading-panel.revealed { opacity: 1; transform: translateY(0); }
.tarot-reading-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.tarot-reading-numeral {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .2em;
  margin-bottom: 24px;
}
.tarot-reading-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240,238,236,.85);
  font-style: italic;
  margin-bottom: 24px;
}
.tarot-fortune {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  display: inline-block;
}
.tarot-back-btn {
  margin-top: 32px;
  padding: 10px 28px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.tarot-back-btn:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   BUS BAR PAGE
   ============================================================ */
.bus-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0a0406 0%, #160a04 50%, #0a0406 100%);
  border-bottom: 1px solid rgba(200,160,32,.2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bus-hero::before {
  content: '🚌';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  opacity: .04;
}
.bus-marquee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.bus-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 16px;
}
.bus-title em { color: var(--gold); font-style: normal; }
.bus-sub { font-size: 16px; color: rgba(240,238,236,.7); line-height: 1.7; max-width: 520px; }

.bus-board {
  background: var(--card);
  border: 1px solid rgba(200,160,32,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.bus-board-header {
  background: rgba(200,160,32,.08);
  border-bottom: 1px solid rgba(200,160,32,.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bus-board-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .08em;
}
.bus-messages { padding: 0; list-style: none; max-height: 400px; overflow-y: auto; }
.bus-message {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bus-message:last-child { border-bottom: none; }
.bus-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.bus-msg-body { flex: 1; }
.bus-msg-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 4px;
}
.bus-msg-text { font-size: 14px; color: rgba(240,238,236,.8); line-height: 1.5; }
.bus-msg-time { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 4px; }

.bus-compose { border-top: 1px solid var(--border); padding: 16px 24px; display: flex; gap: 12px; }
.bus-compose input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.bus-compose input:focus { outline: none; border-color: var(--gold); }
.bus-compose input::placeholder { color: var(--muted); }

/* ============================================================
   INDEX HERO — redesigned with particles + new tagline
   ============================================================ */
.hero-theology {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: .9;
  margin-bottom: 4px;
  text-shadow: 0 0 60px rgba(224,16,32,.15);
}
.hero-main-title em { color: var(--red); font-style: normal; text-shadow: 0 0 40px var(--red-glow); }
.hero-nhw {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.8vw, 16px);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 40px;
}
.hero-nhw em { color: var(--gold); font-style: normal; }


/* ============================================================
   EQ VISUALISER — animated bars, driven by JS .active class
   ============================================================ */

/* Keyframe animations — each bar has a different speed/height combo */
@keyframes eq1 { 0%,100%{height:4px}  25%{height:22px} 75%{height:10px} }
@keyframes eq2 { 0%,100%{height:14px} 33%{height:4px}  66%{height:28px} }
@keyframes eq3 { 0%,100%{height:8px}  20%{height:30px} 60%{height:6px}  }
@keyframes eq4 { 0%,100%{height:18px} 40%{height:4px}  80%{height:24px} }
@keyframes eq5 { 0%,100%{height:6px}  15%{height:26px} 55%{height:12px} }
@keyframes eq6 { 0%,100%{height:20px} 35%{height:4px}  70%{height:16px} }
@keyframes eq7 { 0%,100%{height:10px} 50%{height:28px} 85%{height:6px}  }
@keyframes eq8 { 0%,100%{height:4px}  30%{height:20px} 65%{height:14px} }

.eq-visualiser {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 32px;
  margin-bottom: 12px;
}

.eq-bar {
  width: 5px;
  height: 4px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: background .3s;
}

/* Assign individual animations to each bar */
.eq-visualiser .eq-bar:nth-child(1).active { animation: eq1 .6s ease-in-out infinite; background: var(--red); }
.eq-visualiser .eq-bar:nth-child(2).active { animation: eq2 .5s ease-in-out infinite; background: var(--red); }
.eq-visualiser .eq-bar:nth-child(3).active { animation: eq3 .7s ease-in-out infinite; background: var(--cyan); }
.eq-visualiser .eq-bar:nth-child(4).active { animation: eq4 .45s ease-in-out infinite; background: var(--cyan); }
.eq-visualiser .eq-bar:nth-child(5).active { animation: eq5 .65s ease-in-out infinite; background: var(--gold); }
.eq-visualiser .eq-bar:nth-child(6).active { animation: eq6 .55s ease-in-out infinite; background: var(--gold); }
.eq-visualiser .eq-bar:nth-child(7).active { animation: eq7 .48s ease-in-out infinite; background: var(--red); }
.eq-visualiser .eq-bar:nth-child(8).active { animation: eq8 .72s ease-in-out infinite; background: var(--cyan); }

/* Compact version in the bottom bar */
.eq-visualiser-sm {
  height: 20px;
  gap: 3px;
  margin: 0 8px 0 0;
}
.eq-visualiser-sm .eq-bar { width: 3px; }
.eq-visualiser-sm .eq-bar:nth-child(1).active { animation: eq1 .6s  ease-in-out infinite; }
.eq-visualiser-sm .eq-bar:nth-child(2).active { animation: eq3 .5s  ease-in-out infinite; }
.eq-visualiser-sm .eq-bar:nth-child(3).active { animation: eq5 .7s  ease-in-out infinite; }
.eq-visualiser-sm .eq-bar:nth-child(4).active { animation: eq2 .45s ease-in-out infinite; }
.eq-visualiser-sm .eq-bar:nth-child(5).active { animation: eq4 .65s ease-in-out infinite; }

/* ============================================================
   PLACEHOLDER NOTICE BANNER
   ============================================================ */
.placeholder-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 180, 0, 0.08);
  border-bottom: 1px solid rgba(255, 180, 0, 0.25);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  justify-content: center;
}
.placeholder-notice strong { color: var(--gold); }
.placeholder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── COSMIC UTILITIES ── */
.glass-panel {
  background: rgba(4, 8, 22, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(80, 130, 255, 0.1);
  border-radius: 16px;
}
.glass-panel-dark {
  background: rgba(2, 4, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(80, 130, 255, 0.08);
  border-radius: 20px;
}
.cosmic-glow-red    { text-shadow: 0 0 20px var(--red-glow), 0 0 60px rgba(200,0,30,0.15); }
.cosmic-glow-cyan   { text-shadow: 0 0 20px var(--cyan-glow); }
.cosmic-glow-purple { text-shadow: 0 0 20px var(--purple-glow); }
.voodoo-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.voodoo-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(180,0,40,0.4), rgba(80,0,160,0.4), rgba(0,180,200,0.3));
  z-index: -1;
}
