/* ═══════════════════════════════════════════════════════════════════════
   PixelSpot DOOH Marketplace — Apple Signature White Theme Console
   Light Architectural Elegance (#f5f5f7 & Pure White #ffffff Cards)
   Authentic Grounded AI Telemetry Metrics & Zero-Desync Multi-Venue Displays
   ═══════════════════════════════════════════════════════════════════════ */

.ac-unit.ac-dooh {
  position: relative !important;
  background: #f5f5f7 !important;
  color: #1d1d1f !important;
  height: auto !important;
  min-height: clamp(740px, 68vw, 1020px) !important;
  padding: 64px 0 80px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  overflow: hidden !important;
}

.ac-dooh .ac-copy {
  padding-top: 10px !important;
  max-width: 900px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
  z-index: 3 !important;
}

.ac-dooh .ac-eyebrow {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0071e3;
  margin-bottom: 8px;
}

.ac-dooh .ac-h {
  color: #1d1d1f !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
  font-size: clamp(38px, 4.8vw, 56px) !important;
  line-height: 1.06 !important;
  margin: 0;
}

.ac-dooh .ac-s {
  color: #1d1d1f !important;
  margin-top: 10px !important;
  font-weight: 400 !important;
  font-size: clamp(18px, 2.2vw, 24px) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}

.ac-dooh .ac-note {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #6e6e73 !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  margin-top: 14px !important;
}

.ac-dooh .ac-note [data-live] {
  color: #1d1d1f !important;
  font-weight: 600 !important;
}

.ac-dooh .ac-live-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #34c759 !important;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.25) !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  animation: acPulseDot 2s infinite ease-in-out !important;
}

@keyframes acPulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.8; }
}

.ac-dooh .ac-ctas {
  margin-top: 22px !important;
  gap: 14px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.ac-dooh .ac-btn-p {
  background: #0071e3 !important;
  color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 980px !important;
  padding: 9px 22px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25) !important;
  transition: all 0.25s ease !important;
}

.ac-dooh .ac-btn-p:hover {
  background: #0077ed !important;
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.38) !important;
}

.ac-dooh .ac-btn-o {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #0071e3 !important;
  border-radius: 980px !important;
  padding: 9px 22px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease !important;
}

.ac-dooh .ac-btn-o:hover {
  background: #ffffff !important;
  border-color: #0071e3 !important;
}

/* ══════════ MAIN WORKSPACE: CINEMATIC SCREEN + WHITE PRO NOC CONSOLE ══════════ */
.ac-dooh-workspace {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
  box-sizing: border-box;
}

/* Left Hero Column: Full Screen Viewport */
.ac-dooh-hero-col {
  flex: 1.75;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.ac-dooh-screen-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
  aspect-ratio: 1376 / 768;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ac-dooh-screen-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Ambient Floor Reflection */
.ac-dooh-hero-glow {
  position: absolute;
  bottom: -16px;
  left: 8%;
  right: 8%;
  height: 32px;
  filter: blur(20px);
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  transition: background 0.8s ease, opacity 0.8s ease;
}

.ac-dooh-hero-glow.glow-set-0 {
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.4) 0%, rgba(41, 151, 255, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
}

.ac-dooh-hero-glow.glow-set-1 {
  background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.35) 0%, rgba(255, 214, 10, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
}

.ac-dooh-hero-glow.glow-set-2 {
  background: radial-gradient(ellipse at center, rgba(255, 59, 48, 0.35) 0%, rgba(175, 82, 222, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
}

.ac-dooh-hero-glow.glow-set-3 {
  background: radial-gradient(ellipse at center, rgba(175, 82, 222, 0.38) 0%, rgba(255, 149, 0, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
}

.ac-dooh-hero-glow.glow-set-4 {
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.4) 0%, rgba(48, 209, 88, 0.18) 50%, rgba(0, 0, 0, 0) 75%);
}

/* Multi-Layer Dedicated Video Viewport */
.ac-dooh-screen-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.ac-dooh-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.ac-dooh-layer.visible {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Floating Glass HUD Overlay on Hero Screen */
.ac-dooh-hero-hud-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.ac-dooh-glass-chip {
  background: rgba(12, 14, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 980px;
  padding: 5px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #f5f5f7;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ac-dooh-glass-chip .beacon {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 8px #34c759;
  animation: acPulseDot 1.8s infinite ease-in-out;
}

.ac-dooh-glass-chip .beacon.blue {
  background: #2997ff;
  box-shadow: 0 0 8px #2997ff;
}

/* Bottom Glass HUD Bar */
.ac-dooh-hero-hud-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 8, 12, 0.75) 45%, rgba(6, 8, 12, 0.94) 100%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.ac-dooh-hero-bot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ac-dooh-hud-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.ac-dooh-hero-venue-txt {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.ac-dooh-city-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5f5f7;
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.ac-dooh-hud-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hud-pill {
  font-size: 10.5px;
  font-weight: 500;
  color: #d1d1d6;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.hud-pill.highlight {
  color: #2997ff;
  background: rgba(0, 113, 227, 0.25);
}

.ac-dooh-hud-timer-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ac-dooh-hero-timer-txt {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: #f5f5f7;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

/* Scrub Bar */
.ac-dooh-hero-scrub-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 980px;
  overflow: hidden;
  position: relative;
}

.ac-dooh-hero-scrub-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0071e3 0%, #2997ff 100%);
  border-radius: 980px;
  box-shadow: 0 0 10px rgba(41, 151, 255, 0.9);
  transition: width 0.08s linear;
}

/* ══════════ RIGHT COLUMN: NOC BROADCAST PLAYLIST CARD (WHITE THEME) ══════════ */
.ac-dooh-playlist-col {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  min-width: 320px;
}

.ac-playlist-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  padding: 20px 22px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.ac-playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ac-playlist-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.02em;
}

.ac-playlist-sub {
  font-size: 12px;
  color: #86868b;
  margin-top: 2px;
}

.ac-playlist-view-pills {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 3px;
  border-radius: 980px;
  gap: 2px;
}

.ac-view-pill {
  border: none;
  background: transparent;
  color: #6e6e73;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ac-view-pill:hover {
  color: #1d1d1f;
}

.ac-view-pill.active {
  background: #ffffff;
  color: #1d1d1f;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Clean Apple Hairline Progress Line */
.ac-playlist-progress-line {
  width: 100%;
  height: 2.5px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 980px;
  overflow: hidden;
  margin-top: 10px;
}

.ac-playlist-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0071e3 0%, #2997ff 100%);
  border-radius: 980px;
  box-shadow: 0 0 6px rgba(0, 113, 227, 0.5);
  transition: width 0.1s linear;
}

/* Category Filter Tabs */
.ac-playlist-tabs {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px;
  border-radius: 980px;
  gap: 2px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ac-playlist-tabs::-webkit-scrollbar {
  display: none;
}

.ac-playlist-tab-btn {
  flex: 1;
  text-align: center;
  background: transparent;
  border: none;
  padding: 5px 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6e6e73;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ac-playlist-tab-btn:hover {
  color: #1d1d1f;
}

.ac-playlist-tab-btn.active {
  background: #ffffff;
  color: #1d1d1f;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Playlist Rows Container */
.ac-playlist-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 10px;
  max-height: 290px;
  overflow-y: auto;
  padding-right: 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.ac-playlist-items::-webkit-scrollbar {
  width: 4px;
}

.ac-playlist-items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 980px;
}

.ac-playlist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0 !important;
  box-sizing: border-box;
}

.ac-playlist-row:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.ac-playlist-row.active {
  background: #ffffff;
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: 0 4px 18px rgba(0, 113, 227, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
}

.ac-playlist-row.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3.5px;
  background: #0071e3;
  border-radius: 980px;
}

.ac-playlist-thumb {
  width: 68px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ac-playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-playlist-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.ac-playlist-wall-name {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.ac-playlist-brand {
  font-size: 11.5px;
  color: #0071e3;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-creator-credit {
  font-size: 10px;
  color: #86868b;
  font-weight: 400;
  margin-left: 3px;
}

.ac-playlist-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #86868b;
  line-height: 1.2;
}

.ac-playlist-city {
  background: rgba(0, 0, 0, 0.04);
  color: #6e6e73;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

.ac-ai-tag {
  font-size: 10px;
  font-weight: 600;
  color: #0071e3;
  background: rgba(0, 113, 227, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

.ac-gaze-tag {
  color: #248a3d;
  font-size: 10px;
  white-space: nowrap;
}

.ac-playlist-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 980px;
  background: rgba(0, 0, 0, 0.04);
  color: #86868b;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.ac-playlist-row.active .ac-playlist-state {
  background: rgba(52, 199, 89, 0.12);
  color: #248a3d;
  border: 1px solid rgba(52, 199, 89, 0.25);
}

/* Audio Equalizer animation */
.ac-live-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 9px;
  width: 9px;
}

.ac-live-equalizer .eq-bar {
  width: 2px;
  background: #248a3d;
  border-radius: 1px;
  animation: acEqBounce 1s infinite ease-in-out;
}

.ac-live-equalizer .eq-bar:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.ac-live-equalizer .eq-bar:nth-child(2) { height: 8px; animation-delay: 0.3s; }
.ac-live-equalizer .eq-bar:nth-child(3) { height: 6px; animation-delay: 0.2s; }

@keyframes acEqBounce {
  0%, 100% { height: 3px; }
  50% { height: 9px; }
}

/* ══════════ AI REACH CALCULATOR (WHITE THEME) ══════════ */
.ac-calc-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}

.ac-calc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ac-calc-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ac-calc-select {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 13px;
  color: #1d1d1f;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ac-calc-select:focus {
  border-color: #0071e3;
}

.ac-calc-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac-calc-value-pill {
  font-size: 12px;
  font-weight: 600;
  color: #0071e3;
  background: rgba(0, 113, 227, 0.08);
  padding: 2px 8px;
  border-radius: 980px;
}

.ac-calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 980px;
  background: rgba(0, 0, 0, 0.08);
  outline: none;
  margin: 6px 0;
}

.ac-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: 2px solid #0071e3;
}

.ac-calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: #86868b;
}

.ac-calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.ac-calc-stat {
  background: #fbfbfd;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ac-calc-stat .stat-kpi {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #86868b;
}

.ac-calc-stat .stat-num {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 2px 0;
  letter-spacing: -0.02em;
}

.ac-calc-stat .stat-num.c-blue { color: #0071e3; }
.ac-calc-stat .stat-num.c-green { color: #248a3d; }

.ac-calc-stat .stat-note {
  font-size: 9.5px;
  color: #86868b;
  line-height: 1.2;
}

/* Card Footer */
.ac-playlist-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 4px;
}

.ac-playlist-footer-info {
  display: flex;
  flex-direction: column;
}

.ac-playlist-footer-info span:first-child {
  font-size: 11px;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ac-playlist-footer-info span:last-child {
  font-size: 13.5px;
  font-weight: 600;
  color: #1d1d1f;
}

.ac-playlist-book-btn {
  background: #0071e3;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 980px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
  box-shadow: 0 3px 12px rgba(0, 113, 227, 0.28);
}

.ac-playlist-book-btn:hover {
  background: #0077ed;
  box-shadow: 0 5px 16px rgba(0, 113, 227, 0.4);
  transform: translateY(-1px);
}

/* ══════════ TELEMETRY CARDS DECK (WHITE THEME) ══════════ */
.ac-dooh-network-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 2;
}

.ac-dooh-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ac-dooh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.ac-dooh-card .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #86868b;
}

.ac-dooh-card .card-val {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.025em;
  margin: 6px 0 2px;
  line-height: 1.15;
}

.ac-dooh-card .card-val.c-green { color: #248a3d; }
.ac-dooh-card .card-val.c-blue { color: #0071e3; }

.ac-dooh-card .card-sub {
  font-size: 12px;
  color: #86868b;
  line-height: 1.3;
}

/* Mobile Venue Track & Spotlight default: hidden on desktop */
.ac-dooh-mobile-venues {
  display: none;
}
.ac-m-spotlight {
  display: none;
}
.ac-m-calc-cta {
  display: none;
}

/* ══════════ RESPONSIVE ADJUSTMENTS: TABLETS & MOBILE ══════════ */
@media (max-width: 1024px) {
  .ac-dooh-workspace {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 20px !important;
  }
  .ac-dooh-hero-col, .ac-dooh-playlist-col {
    flex: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .ac-dooh-network-deck {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 20px !important;
    gap: 12px !important;
  }
}

@media (max-width: 980px) {
  .ac-unit.ac-dooh {
    padding: 44px 0 54px !important;
    min-height: auto !important;
  }
  .ac-dooh .ac-copy {
    padding: 0 16px !important;
    margin: 0 auto 20px !important;
  }
  .ac-dooh .ac-eyebrow {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }
  .ac-dooh .ac-h {
    font-size: clamp(32px, 8.5vw, 44px) !important;
  }
  .ac-dooh .ac-s {
    font-size: clamp(16px, 4vw, 19px) !important;
    margin-top: 8px !important;
  }
  .ac-dooh .ac-note {
    font-size: 12.5px !important;
    margin-top: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    line-height: 1.4 !important;
  }
  .ac-dooh .ac-ctas {
    margin-top: 16px !important;
    gap: 10px !important;
  }
  .ac-dooh .ac-btn-p, .ac-dooh .ac-btn-o {
    font-size: 13px !important;
    padding: 8px 18px !important;
    min-height: 40px !important;
  }

  /* Workspace on phones */
  .ac-dooh-workspace {
    padding: 0 14px !important;
    gap: 14px !important;
    max-width: 640px !important;
    margin: 0 auto !important;
  }

  /* Video Screen Frame & Aspect Ratio */
  .ac-dooh-screen-frame {
    border-radius: 16px !important;
    aspect-ratio: 16 / 9 !important;
  }

  /* Top HUD Chips on Phone */
  .ac-dooh-hero-hud-top {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    gap: 6px !important;
  }
  .ac-dooh-glass-chip {
    font-size: 9px !important;
    padding: 3.5px 8px !important;
    gap: 4px !important;
    letter-spacing: 0.02em !important;
  }
  .ac-dooh-glass-chip .beacon {
    width: 5px !important;
    height: 5px !important;
  }

  /* Bottom HUD Layout: Clean Glass Bar */
  .ac-dooh-hero-hud-bot {
    padding: 16px 10px 8px !important;
    gap: 6px !important;
  }
  .ac-dooh-hero-bot-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
  }
  .ac-dooh-hud-main {
    flex: 1 1 auto !important;
    max-width: calc(100% - 90px) !important;
    gap: 5px !important;
    display: flex !important;
    align-items: center !important;
  }
  .ac-dooh-hero-venue-txt {
    font-size: 11px !important;
    max-width: calc(100% - 56px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .ac-dooh-city-chip {
    font-size: 9.5px !important;
    padding: 1px 5px !important;
  }
  .ac-dooh-hud-timer-wrap {
    flex: 0 0 auto !important;
  }
  .ac-dooh-hero-timer-txt {
    font-size: 9.5px !important;
    padding: 2px 6px !important;
  }
  .ac-dooh-hud-tags {
    display: none !important; /* Tags are prominently presented in the active spotlight card below */
  }

  /* Mobile Apple Venue Switcher Pills (Swipeable Track directly below video) */
  .ac-dooh-mobile-venues {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    padding: 8px 2px 2px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .ac-dooh-mobile-venues::-webkit-scrollbar {
    display: none !important;
  }
  .ac-m-venue-pill {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 980px !important;
    padding: 7px 13px !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif !important;
    color: #1d1d1f !important;
    cursor: pointer !important;
    scroll-snap-align: start !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    -webkit-tap-highlight-color: transparent !important;
    min-height: 38px !important;
  }
  .ac-m-venue-pill:active {
    transform: scale(0.96) !important;
  }
  .ac-m-venue-pill .m-beacon {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #86868b !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
  }
  .ac-m-venue-pill .m-name {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
  }
  .ac-m-venue-pill .m-stat {
    font-size: 10px !important;
    color: #86868b !important;
    font-weight: 500 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    padding: 1px 6px !important;
    border-radius: 980px !important;
  }
  .ac-m-venue-pill.active {
    background: #0071e3 !important;
    color: #ffffff !important;
    border-color: #0071e3 !important;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.32) !important;
  }
  .ac-m-venue-pill.active .m-beacon {
    background: #34c759 !important;
    box-shadow: 0 0 6px #34c759 !important;
    animation: acPulseDot 1.8s infinite ease-in-out !important;
  }
  .ac-m-venue-pill.active .m-name {
    color: #ffffff !important;
  }
  .ac-m-venue-pill.active .m-stat {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
  }

  /* Unified Apple Playlist / Interactive Card on Phones */
  .ac-playlist-card {
    padding: 16px 14px 16px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  }
  .ac-playlist-header {
    align-items: center !important;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  }
  .ac-playlist-title {
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  .ac-playlist-sub {
    font-size: 11px !important;
    color: #86868b !important;
  }
  .ac-view-pill {
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 980px !important;
  }

  /* Mobile Spotlight Deck: Dormant in favor of unified playlist & telemetry deck */
  .ac-m-spotlight {
    display: none !important;
  }

  /* Show & optimize Apple Playlist Console on Phones & Tablets */
  .ac-playlist-progress-line {
    display: block !important;
    height: 2px !important;
    background: rgba(0, 0, 0, 0.06) !important;
    border-radius: 980px !important;
    margin: 8px 0 10px !important;
    overflow: hidden !important;
  }

  .ac-playlist-progress-fill {
    height: 100% !important;
    background: #0071e3 !important;
    border-radius: 980px !important;
  }

  /* 6 Venue Filter Tabs on Mobile */
  .ac-playlist-tabs {
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    background: rgba(0, 0, 0, 0.035) !important;
    padding: 3px !important;
    border-radius: 980px !important;
    gap: 3px !important;
    margin-top: 8px !important;
    margin-bottom: 2px !important;
  }

  .ac-playlist-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .ac-playlist-tab-btn {
    flex: 0 0 auto !important;
    padding: 5px 11px !important;
    font-size: 11px !important;
    border-radius: 980px !important;
    white-space: nowrap !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .ac-playlist-tab-btn.active {
    background: #ffffff !important;
    color: #1d1d1f !important;
    font-weight: 600 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  }

  /* Dynamic Playlist Rows on Mobile */
  .ac-playlist-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 10px 0 8px !important;
    max-height: 290px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-right: 2px !important;
    scrollbar-width: thin !important;
  }

  .ac-playlist-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.015) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    transition: background 0.15s ease, border-color 0.15s ease !important;
    position: relative !important;
  }

  .ac-playlist-row:active {
    background: rgba(0, 0, 0, 0.04) !important;
  }

  .ac-playlist-row.active {
    background: #ffffff !important;
    border-color: rgba(0, 113, 227, 0.28) !important;
    box-shadow: 0 3px 14px rgba(0, 113, 227, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03) !important;
  }

  .ac-playlist-row.active::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    bottom: 6px !important;
    width: 3.5px !important;
    background: #0071e3 !important;
    border-radius: 980px !important;
  }

  .ac-playlist-thumb {
    width: 58px !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #111 !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
  }

  .ac-playlist-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .ac-playlist-info {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 2px !important;
  }

  .ac-playlist-wall-name {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  .ac-playlist-brand {
    font-size: 11px !important;
    color: #0071e3 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.25 !important;
  }

  .ac-creator-credit {
    font-size: 9.5px !important;
    color: #86868b !important;
    font-weight: 400 !important;
    margin-left: 2px !important;
  }

  .ac-playlist-meta {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 9.5px !important;
    flex-wrap: wrap !important;
    margin-top: 1px !important;
  }

  .ac-playlist-city {
    background: rgba(0, 0, 0, 0.04) !important;
    color: #6e6e73 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    padding: 1px 5px !important;
    border-radius: 3px !important;
    white-space: nowrap !important;
  }

  .ac-ai-tag {
    font-size: 9px !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.08) !important;
    padding: 1px 5px !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  .ac-gaze-tag {
    color: #248a3d !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }

  .ac-playlist-state {
    font-size: 9px !important;
    font-weight: 600 !important;
    padding: 2.5px 7px !important;
    border-radius: 980px !important;
    background: rgba(0, 0, 0, 0.04) !important;
    color: #86868b !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    letter-spacing: 0.03em !important;
  }

  .ac-playlist-row.active .ac-playlist-state {
    background: rgba(52, 199, 89, 0.12) !important;
    color: #248a3d !important;
    border: 1px solid rgba(52, 199, 89, 0.25) !important;
  }

  /* Playlist Footer on Mobile */
  .ac-playlist-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 11px !important;
    margin-top: 8px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    gap: 8px !important;
  }

  .ac-playlist-footer-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }

  .ac-playlist-footer-info span:first-child {
    font-size: 9.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #86868b !important;
    font-weight: 600 !important;
  }

  #footerSlotPricing {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    letter-spacing: -0.01em !important;
  }

  .ac-playlist-book-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    background: #0071e3 !important;
    color: #ffffff !important;
    border-radius: 980px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25) !important;
    transition: all 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    min-height: 36px !important;
  }

  .ac-playlist-book-btn:active {
    transform: scale(0.96) !important;
    background: #0077ed !important;
  }

  /* 4 Apple Telemetry Deck Cards on Phones & Tablets (2x2 Grid) */
  .ac-dooh-network-deck {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 640px !important;
    margin: 16px auto 0 !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
  }

  .ac-dooh-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    padding: 13px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    box-sizing: border-box !important;
    min-height: 94px !important;
  }

  .ac-dooh-card .card-label {
    font-size: 9.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-weight: 600 !important;
    color: #86868b !important;
  }

  .ac-dooh-card .card-val {
    font-size: clamp(16px, 4.2vw, 20px) !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    letter-spacing: -0.02em !important;
    margin: 4px 0 2px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .ac-dooh-card .card-val.c-green {
    color: #248a3d !important;
  }

  .ac-dooh-card .card-val.c-blue {
    color: #0071e3 !important;
  }

  .ac-dooh-card .card-sub {
    font-size: 11px !important;
    color: #86868b !important;
    line-height: 1.3 !important;
  }

  /* Calculator on Phones */
  .ac-calc-container {
    gap: 12px !important;
    padding: 4px 0 0 !important;
  }

  .ac-calc-label {
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .ac-calc-select {
    font-size: 12px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
  }

  .ac-calc-slider {
    height: 6px !important;
  }

  .ac-calc-value-pill {
    font-size: 11px !important;
    padding: 2px 8px !important;
    border-radius: 980px !important;
  }

  .ac-calc-results {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    margin-top: 2px !important;
  }

  .ac-calc-stat {
    padding: 9px 6px !important;
    border-radius: 10px !important;
    background: #f5f5f7 !important;
    text-align: center !important;
  }

  .ac-calc-stat .stat-kpi {
    font-size: 8.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: #86868b !important;
    display: block !important;
  }

  .ac-calc-stat .stat-num {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    margin: 3px 0 1px !important;
    display: block !important;
  }

  .ac-calc-stat .stat-note {
    font-size: 8px !important;
    color: #86868b !important;
    line-height: 1.2 !important;
    display: block !important;
  }

  .ac-m-calc-cta {
    display: block !important;
    margin-top: 12px !important;
  }

  .ac-m-calc-cta .ac-m-spotlight-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 16px !important;
    background: #0071e3 !important;
    color: #ffffff !important;
    border-radius: 980px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.28) !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .ac-dooh-workspace {
    padding: 0 10px !important;
  }

  .ac-dooh-network-deck {
    padding: 0 10px !important;
    gap: 8px !important;
  }

  .ac-dooh-card {
    padding: 11px 12px !important;
    min-height: 88px !important;
  }

  .ac-dooh-card .card-val {
    font-size: 16px !important;
  }

  .ac-dooh-card .card-sub {
    font-size: 10px !important;
  }

  .ac-m-venue-pill {
    padding: 6px 11px !important;
    min-height: 35px !important;
  }

  .ac-m-venue-pill .m-name {
    font-size: 11.5px !important;
  }

  .ac-m-venue-pill .m-stat {
    font-size: 9.5px !important;
    padding: 1px 5px !important;
  }

  .ac-playlist-row {
    padding: 7px 8px !important;
    gap: 8px !important;
  }

  .ac-playlist-thumb {
    width: 52px !important;
  }

  .ac-playlist-wall-name {
    font-size: 12px !important;
  }

  .ac-playlist-brand {
    font-size: 10.5px !important;
  }

  .ac-calc-results {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .ac-calc-stat {
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
  }

  .ac-calc-stat .stat-num {
    margin: 0 !important;
    font-size: 14px !important;
  }
}


