/*
Theme Name: DAP Recordz Theme
Author: DAP Recordz
Description: Premium dark editorial theme with persistent audio bus, studio booking engine, and QR ticketing.
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-obsidian: #080808;
  --bg-surface: #121212;
  --bg-card: #181818;
  --gold: #C9A227;
  --gold-hover: #e0b633;
  --text-primary: #F5F5F5;
  --text-muted: #9E9E9E;
  --border: rgba(201, 162, 39, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  padding-bottom: 96px; /* Space buffer for bottom docked player */
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, .brand-font {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Header & Nav */
#dap-masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-identity-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-identity-link img.custom-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-identity-link:hover img.custom-logo {
  transform: scale(1.04);
}

.brand-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: var(--gold);
  color: #000;
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* Global Content Wrapper */
.main-viewport {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Global Card & Button Components */
.glass-card {
  background: rgba(22, 22, 22, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.dap-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.dap-btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.dap-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.dap-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.glow-gold {
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glow-gold:hover {
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.6);
  transform: translateY(-3px);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFF6D1 0%, #C9A227 50%, #8C6A12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hero Showcase & Split Layout */
.cinematic-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(circle at center, #1b160b 0%, #080808 80%);
  border-bottom: 1px solid var(--border);
}

.split-hero-layout {
  min-height: 85vh;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.hero-backdrop-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18) 0%, rgba(8, 8, 8, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% { transform: translateX(-50%) scale(0.9); opacity: 0.6; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: #C9A227;
  border-radius: 50%;
  box-shadow: 0 0 10px #C9A227;
  animation: dotBlink 1.6s infinite ease-in-out;
}

@keyframes dotBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

.ticker-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #E0E0E0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.hero-left .hero-description {
  margin: 0 0 32px 0;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero Metrics Bar */
.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Right: Holographic Card with Spinning Vinyl */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.spinning-vinyl {
  position: absolute;
  top: -24px;
  right: -32px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #222 30%, #0d0d0d 70%);
  border-radius: 50%;
  border: 4px solid #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  z-index: 1;
  animation: spinVinyl 12s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-grooves {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.vinyl-center {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  border: 8px solid #000;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.art-card-inner {
  position: relative;
  z-index: 2;
  background: #141414;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.art-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}

.art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-art-card:hover .art-image {
  transform: scale(1.05);
}

.live-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.hero-play-floating-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-play-floating-btn:hover {
  transform: scale(1.12);
}

.art-card-meta {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spotlight-genre {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.spotlight-title {
  font-size: 1.35rem;
  color: #fff;
  margin: 2px 0 4px 0;
}

.spotlight-single {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.sound-wave-anim {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.sound-wave-anim span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: waveDance 1s ease-in-out infinite alternate;
}

.sound-wave-anim span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sound-wave-anim span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.sound-wave-anim span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.sound-wave-anim span:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes waveDance {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Event Flyer & Live Strip */
.event-cards-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

.compact-event-banner {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.event-flyer-thumb {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
  border: 1px solid var(--border);
}

.event-flyer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.compact-event-banner:hover .event-flyer-thumb img {
  transform: scale(1.08);
}

.event-banner-date-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  min-width: 44px;
  line-height: 1.1;
}

.event-banner-date-badge .ev-day {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}

.event-banner-date-badge .ev-mon {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.event-banner-info {
  flex: 1;
  min-width: 0;
}

.event-banner-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.3;
}

.ev-venue {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-banner-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ev-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.ev-price-free {
  color: #4bb543 !important;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ev-price-free::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bb543;
  box-shadow: 0 0 8px #4bb543;
}

.free-event-btn {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}

.free-event-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
}

/* Sections & Roster Grid */
.section-block {
  margin-bottom: 80px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.section-tag {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 700;
}

.section-title {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 4px;
}

.section-link {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.artist-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.editorial-artist-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.editorial-artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #1e1e1e;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(8, 8, 8, 0.85) 100%);
  pointer-events: none;
}

.inline-play-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease;
}

.inline-play-btn:hover {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
}

.card-genre {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-title {
  font-size: 1.25rem;
  margin: 6px 0 12px 0;
}

.card-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.latest-track {
  font-size: 0.75rem;
  color: #aaa;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 170px;
}

.card-profile-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-profile-link:hover {
  color: #fff;
}

.interactive-glow {
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.interactive-glow:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 162, 39, 0.25);
  border-color: var(--gold);
}

.pulse-glow {
  animation: playPulse 2.5s infinite;
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

/* Studio Spotlight Section */
.spotlight-card {
  background: linear-gradient(135deg, #181818 0%, #101010 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.luxury-border {
  border: 1px solid var(--border);
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.08) 0%, rgba(18, 18, 18, 1) 70%);
}

.spotlight-text h2 {
  font-size: 2.2rem;
  margin: 8px 0 16px 0;
  color: #fff;
}

.spotlight-text p {
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 24px;
}

.gear-badges-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px 0;
}

.gear-chip {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #ccc;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.instant-book-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Artist Single Profile Layout */
.artist-profile-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px;
}

.artist-cover-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.streaming-platform-strip {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.platform-badge {
  background: #202020;
  border: 1px solid #333;
  color: #ddd;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.platform-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.track-feature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0;
}

.track-feature-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pulse-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.track-feature-meta strong {
  display: block;
  font-size: 0.95rem;
}

.track-feature-meta p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.artist-tag {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.artist-name {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.artist-bio-body {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.artist-bio-body p + p {
  margin-top: 14px;
}

/* Studio & Event Single Two-Column Grid */
.studio-single-container {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
  align-items: start;
}

.studio-media-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.studio-image-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #181818;
  border: 1px solid var(--border);
}

.studio-cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.studio-gear-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 20px;
}

.studio-gear-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.studio-gear-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.studio-booking-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.studio-header-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.studio-badge {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.studio-badge-free {
  background: rgba(75, 181, 67, 0.15);
  color: #4bb543;
  border-color: rgba(75, 181, 67, 0.35);
}

.studio-rate-pill {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.studio-main-title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.studio-description-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Studio Booking Card & Form Controls */
.studio-booking-card {
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.booking-card-heading {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.booking-field-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.booking-field label,
.form-group-dap label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-group-dap {
  margin-bottom: 16px;
}

.dap-studio-input {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  outline: none;
  box-sizing: border-box;
}

.dap-studio-input:focus {
  border-color: var(--gold);
}

.booking-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.price-highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.full-width-btn {
  width: 100%;
  justify-content: center;
}

.booking-feedback-msg {
  margin-bottom: 14px;
  font-size: 0.85rem;
  min-height: 18px;
}

/* Event Ticketing Tiers */
.ticket-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tier-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlighted-tier {
  border-color: var(--gold);
  background: #19160d;
}

.tier-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold);
}

.tier-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.tier-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Digital QR Ticket Pass */
.digital-ticket-container {
  background: #000;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.ticket-brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: bold;
}

.ticket-pass-badge {
  background: var(--gold);
  color: #000;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 900;
}

.ticket-seat-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  margin: 12px auto;
  display: inline-block;
}

.ticket-barcode-wrap {
  background: #fff;
  padding: 16px;
  display: inline-block;
  border-radius: 6px;
  margin: 16px 0;
}

.ticket-barcode-wrap img {
  width: 160px;
  height: 160px;
  display: block;
}

.ticket-pass-ref {
  font-family: monospace;
  font-size: 1.1rem;
  color: #fff;
}

.ticket-actions-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Quick RSVP Modal Lightbox */
.dap-rsvp-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsvp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.rsvp-modal-dialog {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 460px;
  padding: 32px 28px;
  background: #121212;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.rsvp-modal-dialog .digital-ticket-container {
  margin-top: 0;
  background: transparent;
  border: none;
  padding: 0;
}

/* Infinite Animated Spotlight Carousel */
.spotlight-carousel-section {
  padding: 60px 0 40px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.05) 0%, rgba(8, 8, 8, 1) 70%);
}

.carousel-section-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}

.carousel-section-header .section-title {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scrollMarquee 38s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-card {
  width: 320px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.carousel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.3);
}

.carousel-image-frame {
  position: relative;
  width: 100%;
  height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #181818;
  display: block;
}

.carousel-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-card:hover .carousel-image-frame img {
  transform: scale(1.08);
}

.carousel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.carousel-info {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.carousel-item-title {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.carousel-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.carousel-action-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}

/* YouTube Channel Showcase & Lightbox Modal */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.video-card {
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.video-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail-wrap img {
  transform: scale(1.06);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(8, 8, 8, 0.8) 100%);
  pointer-events: none;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.video-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
  z-index: 2;
}

.video-card:hover .video-play-trigger {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-hover);
}

.video-card-info {
  padding: 18px 20px;
}

.video-badge {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-title {
  font-size: 1rem;
  color: #fff;
  margin-top: 6px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: none;
}

.dap-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.video-frame-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Advert & Mobile Ecosystem Hub */
.dap-promo-hub {
  position: relative;
  margin-bottom: 80px;
}

.promo-ecosystem-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 10% 50%, rgba(201, 162, 39, 0.08) 0%, rgba(18, 18, 18, 0.95) 75%);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.promo-ambient-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.promo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 48px;
}

.ad-sponsor-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  font-weight: 700;
}

.ad-headline {
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.ad-copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}

.ad-perks-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.perk-chip {
  font-size: 0.78rem;
  color: #ddd;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.promo-app-panel {
  display: flex;
  justify-content: flex-end;
}

.app-badge-box {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  border-radius: 10px;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.app-launch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.store-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.store-btn:hover {
  border-color: var(--gold);
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.store-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-text {
  text-align: left;
  line-height: 1.2;
}

.store-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: #aaa;
  text-transform: uppercase;
}

.store-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.app-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Persistent Dock Player */
.player-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  z-index: 9999;
}

.player-controls {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  align-items: center;
  gap: 24px;
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.track-thumb {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: #242424;
  object-fit: cover;
  flex-shrink: 0;
}

.track-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-info h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 2px 0 0 0;
}

.transport-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.transport-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-toggle-btn {
  background: var(--gold);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  font-size: 1rem;
  transition: transform 0.15s ease;
}

.play-toggle-btn:hover {
  transform: scale(1.08);
}

.seek-track {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
}

.seek-track input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: #333;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.seek-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.player-addons {
  display: flex;
  justify-content: flex-end;
}

.audio-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 3px;
}

/* Global Site Footer */
#dap-site-footer {
  border-top: 1px solid var(--border);
  background: #0d0d0d;
  padding: 64px 32px 32px 32px;
  margin-top: 80px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.brand-col .footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

.brand-col .tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #333;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.newsletter-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
}

.footer-newsletter-form input {
  flex: 1;
  background: #181818;
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: var(--gold);
}

.btn-newsletter {
  background: var(--gold);
  border: none;
  color: #000;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.75rem;
}

/* Events Directory & Listing Page */
.events-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.event-card-full {
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.event-card-full:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.event-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card-full:hover .event-card-media img {
  transform: scale(1.06);
}

.event-free-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(75, 181, 67, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.event-entry-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-entry-title a:hover {
  color: var(--gold);
}

.event-excerpt {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.no-events-box {
  grid-column: 1 / -1;
  padding: 60px 24px;
  text-align: center;
}

.no-events-box h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.no-events-box p {
  color: var(--text-muted);
}

/* ===================================================
   CASCADING RESPONSIVE BREAKPOINTS (CONSOLIDATED)
=================================================== */

@media (max-width: 992px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-left .hero-description {
    margin: 0 auto 32px auto;
  }

  .hero-left .hero-cta-group {
    justify-content: center;
  }

  .hero-metrics-strip {
    justify-content: center;
    width: 100%;
  }

  .spinning-vinyl {
    display: none; /* Disables disc overlap on smaller viewports */
  }
}

@media (max-width: 960px) {
  .studio-single-container,
  .artist-profile-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }

  .booking-field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .promo-ecosystem-card {
    padding: 32px 24px;
  }

  .promo-app-panel {
    justify-content: center;
  }

  .app-badge-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #dap-masthead {
    padding: 16px 20px;
  }

  .brand-identity-link img.custom-logo {
    max-height: 36px;
  }

  .brand-logo-text {
    font-size: 1rem;
  }

  .header-cta-btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }

  .nav-links.is-active {
    display: flex;
  }

  .ticket-tier-row {
    grid-template-columns: 1fr;
  }

  .player-controls {
    grid-template-columns: 1fr auto;
  }

  .player-addons,
  .seek-track {
    display: none;
  }

  .carousel-card {
    width: 270px;
  }
  
  .marquee-track {
    animation-duration: 26s;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .artist-name,
  .studio-main-title {
    font-size: 1.8rem;
  }

  .compact-event-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-flyer-thumb {
    width: 100%;
    height: 160px;
  }

  .event-banner-action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===================================================
   EDITORIAL ARTIST ROSTER STYLES
=================================================== */

.artists-roster-viewport {
  position: relative;
  overflow: hidden;
}

.roster-hero-header {
  position: relative;
  padding: 80px 0 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 50% -20%, rgba(201, 162, 39, 0.12) 0%, rgba(8, 8, 8, 1) 70%);
}

.roster-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.roster-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.roster-page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 10px 0 16px 0;
}

.roster-page-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px auto;
  font-size: 1rem;
  line-height: 1.6;
}

.roster-filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  color: #000;
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
}

/* Editorial Tall Grid */
.roster-grid-section {
  padding-top: 50px;
}

.editorial-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
}

.roster-editorial-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.roster-editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(201, 162, 39, 0.25);
}

.roster-portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Vertical Editorial Portrait */
  overflow: hidden;
  background: #111;
}

.roster-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(105%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.roster-editorial-card:hover .roster-portrait-frame img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(110%);
}

.portrait-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(8, 8, 8, 0.1) 0%, 
    rgba(8, 8, 8, 0.4) 50%, 
    rgba(8, 8, 8, 0.95) 100%
  );
  z-index: 1;
}

.roster-genre-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 4px;
}

.roster-play-trigger {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.9);
  border: none;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.roster-play-trigger:hover {
  transform: scale(1.15);
  background: #fff;
}

.roster-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px;
  z-index: 2;
}

.artist-status-pill {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 6px;
}

.editorial-artist-name {
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.editorial-artist-track {
  font-size: 0.82rem;
  color: #aaa;
  margin-bottom: 14px;
}

.view-profile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.roster-editorial-card:hover .view-profile-cta {
  border-color: var(--gold);
  transform: translateX(4px);
}

.no-artists-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}