/* ==============================================
   AIZONIQ AI Podcast — v7 Studio Desk Layout
   2050 Futuristic Robot Avatars + Voice Wave EQ
   Holographic studio with particle effects
   ============================================== */

/* ── Reset & Base ────────────────────────────── */
.podcast-page {
  min-height: 100vh;
  background: #06060b;
  color: #e2e8f0;
  font-family: 'Inter', 'Tajawal', sans-serif;
  overflow-x: hidden;
  position: relative;
}

.podcast-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(99,102,241,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(236,72,153,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header Bar ──────────────────────────────── */
.podcast-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(6,6,11,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,102,241,.12);
}

.podcast-header-left,
.podcast-header-right { display: flex; align-items: center; gap: 14px; }

.live-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(239,68,68,.12);
  color: #ef4444;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(239,68,68,.25);
}

.live-dot {
  width: 7px; height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50% { opacity: .5; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.podcast-title {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e2e8f0, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.viewer-count {
  display: flex; align-items: center; gap: 6px;
  color: #94a3b8; font-size: .82rem;
}
.viewer-count i { color: #6366f1; }

.mute-btn {
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.2);
  color: #6366f1;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; font-size: .85rem;
}
.mute-btn:hover { background: rgba(99,102,241,.25); }
.mute-btn.muted { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.2); color: #ef4444; }

.back-link {
  color: #94a3b8; text-decoration: none; font-size: .8rem;
  display: flex; align-items: center; gap: 5px; transition: color .3s;
}
.back-link:hover { color: #6366f1; }

/* ── Topic Bar ───────────────────────────────── */
.topic-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(99,102,241,.06);
  border-bottom: 1px solid rgba(99,102,241,.08);
  position: relative;
  z-index: 1;
}

.topic-label {
  font-size: .7rem;
  color: #6366f1;
  font-weight: 700;
  letter-spacing: 1px;
}

.topic-name {
  font-size: .88rem;
  font-weight: 700;
  color: #e2e8f0;
  font-family: 'Tajawal', sans-serif;
  transition: opacity .4s, transform .4s;
}
.topic-name.changing { opacity: 0; transform: translateY(5px); }

/* ══════════════════════════════════════════════
   STUDIO SCENE — Desk + Characters
   ══════════════════════════════════════════════ */
.podcast-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 100px;
  min-height: calc(100vh - 140px);
  position: relative;
  z-index: 1;
}

.studio-scene {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Studio Wall ─────────────────────────────── */
.studio-wall {
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, #0a0a18 0%, #0e0d1a 60%, #121220 100%);
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.04);
  border-bottom: none;
}

.wall-light {
  position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 50%;
  top: -80px;
  filter: blur(60px);
  opacity: .25;
}
.nova-wall-light {
  right: 10%;
  background: #6366f1;
}
.cipher-wall-light {
  left: 10%;
  background: #ec4899;
}

.wall-panels {
  display: flex;
  justify-content: center;
  gap: 22px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.sound-panel {
  width: 50px;
  height: 70px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 6px;
}
.sound-panel:nth-child(odd) { height: 55px; margin-top: 15px; }

/* ── Characters (seats) ──────────────────────── */
.studio-seats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 0 30px;
  position: relative;
  z-index: 5;
  margin-bottom: -50px;
}

.studio-seat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.speaker-panel {
  transition: all .4s;
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.avatar-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .5s;
  filter: blur(40px);
}

.nova-glow { background: #6366f1; }
.cipher-glow { background: #ec4899; }

.speaker-panel.active .avatar-glow { opacity: .15; }
.speaker-panel.speaking .avatar-glow { opacity: .35; }

.avatar-frame {
  position: relative;
  z-index: 2;
  transition: transform .4s;
}

.speaker-panel.speaking .avatar-frame {
  transform: scale(1.04);
}

.avatar-svg {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}

/* Nova slightly turned toward center (mirror) */
.nova-seat .avatar-frame {
  transform-origin: center bottom;
  transform: scaleX(-1);
}
.speaker-panel.speaking.nova-seat .avatar-frame {
  transform: scaleX(-1) scale(1.04);
}

/* ── Eye Blink ───────────────────────────────── */
.avatar-eyes {
  transform-box: fill-box;
  transform-origin: center;
  animation: eye-blink 4.5s ease-in-out infinite;
}

@keyframes eye-blink {
  0%, 93%, 100% { transform: scaleY(1); }
  95.5% { transform: scaleY(0.05); }
}

/* ── Voice Wave Equalizer (replaces mouth) ───── */
.voice-wave { opacity: .3; transition: opacity .4s; }
.speaker-panel.speaking .voice-wave { opacity: 1; }

.vw-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.speaker-panel.speaking .vw-1 { animation: vw-bounce .50s ease-in-out infinite; }
.speaker-panel.speaking .vw-2 { animation: vw-bounce .42s ease-in-out infinite .06s; }
.speaker-panel.speaking .vw-3 { animation: vw-bounce .38s ease-in-out infinite .12s; }
.speaker-panel.speaking .vw-4 { animation: vw-bounce .55s ease-in-out infinite .04s; }
.speaker-panel.speaking .vw-5 { animation: vw-bounce .35s ease-in-out infinite .10s; }
.speaker-panel.speaking .vw-6 { animation: vw-bounce .48s ease-in-out infinite .08s; }
.speaker-panel.speaking .vw-7 { animation: vw-bounce .40s ease-in-out infinite .14s; }
.speaker-panel.speaking .vw-8 { animation: vw-bounce .52s ease-in-out infinite .02s; }

@keyframes vw-bounce {
  0%, 100% { transform: scaleY(.25); opacity: .35; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ── Energy Core Pulse ───────────────────────── */
.energy-core,
.energy-core-inner {
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .4s;
}

.speaker-panel.speaking .energy-core {
  animation: core-pulse 1.2s ease-in-out infinite;
}
.speaker-panel.speaking .energy-core-inner {
  animation: core-glow .8s ease-in-out infinite;
}

@keyframes core-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.35); }
}

@keyframes core-glow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* ── Antenna Pulse ───────────────────────────── */
.antenna-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: antenna-blink 2.5s ease-in-out infinite;
}

.speaker-panel.speaking .antenna-pulse {
  animation: antenna-speak .6s ease-in-out infinite;
}

@keyframes antenna-blink {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.3); }
}

@keyframes antenna-speak {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}

/* ── Visor Glow on Speaking ──────────────────── */
.speaker-panel.speaking.nova-seat .avatar-svg {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)) drop-shadow(0 0 18px rgba(99,102,241,.4));
}
.speaker-panel.speaking.cipher-seat .avatar-svg {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)) drop-shadow(0 0 18px rgba(236,72,153,.4));
}

/* ── Holographic Visor Scan Line ─────────────── */
.avatar-frame::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.6), transparent);
  border-radius: 1px;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity .4s;
}
.cipher-frame::after {
  background: linear-gradient(90deg, transparent, rgba(236,72,153,.6), transparent);
}
.speaker-panel.speaking .avatar-frame::after {
  opacity: 1;
  animation: holo-scan 2.8s ease-in-out infinite;
}
@keyframes holo-scan {
  0%   { top: 25%; opacity: 0; }
  10%  { opacity: .7; }
  50%  { top: 55%; opacity: .5; }
  90%  { opacity: .7; }
  100% { top: 25%; opacity: 0; }
}

/* ── Floating Particles (circuit dots) ───────── */
.podcast-stage::before,
.podcast-stage::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.podcast-stage::before {
  top: 15%;
  left: 8%;
  background: rgba(99,102,241,.4);
  box-shadow:
    40px  60px 0 rgba(99,102,241,.2),
    120px 30px 0 rgba(139,92,246,.25),
    200px 80px 0 rgba(99,102,241,.15),
    300px 20px 0 rgba(236,72,153,.2),
    80px  140px 0 rgba(99,102,241,.18),
    250px 120px 0 rgba(236,72,153,.15),
    350px 90px 0 rgba(139,92,246,.2);
  animation: float-particles 18s ease-in-out infinite;
}
.podcast-stage::after {
  bottom: 20%;
  right: 10%;
  background: rgba(236,72,153,.4);
  box-shadow:
    -40px -50px 0 rgba(236,72,153,.2),
    -130px -20px 0 rgba(236,72,153,.25),
    -210px -70px 0 rgba(99,102,241,.2),
    -60px  -120px 0 rgba(139,92,246,.18),
    -300px -40px 0 rgba(99,102,241,.15),
    -170px -100px 0 rgba(236,72,153,.2);
  animation: float-particles 22s ease-in-out infinite reverse;
}

@keyframes float-particles {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(8px, -12px) rotate(2deg); }
  50%  { transform: translate(-5px, 6px) rotate(-1deg); }
  75%  { transform: translate(10px, 8px) rotate(1.5deg); }
}

/* ── Topic Progress Bar ──────────────────────── */
.topic-bar { position: relative; overflow: hidden; }
.topic-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--topic-progress, 0%);
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width .5s linear;
  border-radius: 1px;
}

/* ══════════════════════════════════════════════
   PODCAST DESK / TABLE
   ══════════════════════════════════════════════ */
.podcast-desk {
  width: 100%;
  position: relative;
  z-index: 10;
}

.desk-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 50px;
  height: 80px;
  background: linear-gradient(180deg, #1a1a2e 0%, #151525 100%);
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255,255,255,.06);
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.desk-front-face {
  height: 30px;
  background: linear-gradient(180deg, #121220, #0e0e1c);
  border-left: 1px solid rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.04);
  position: relative;
  z-index: 2;
}

.desk-edge {
  height: 6px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 0 0 8px 8px;
  opacity: .6;
  box-shadow: 0 4px 20px rgba(99,102,241,.3);
}

/* ── Microphones on desk ─────────────────────── */
.desk-mic {
  width: 60px;
  flex-shrink: 0;
  padding-bottom: 10px;
}
.mic-svg {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}

/* Nova mic pulses when she speaks */
.speaker-panel.speaking.nova-seat ~ .podcast-desk .nova-mic .mic-svg,
.nova-seat.speaking ~ * ~ * .nova-mic .mic-svg {
  filter: drop-shadow(0 0 10px rgba(99,102,241,.6));
}

/* ── Center Desk Items ───────────────────────── */
.desk-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
}

.laptop-svg {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}

.desk-cups {
  display: flex;
  gap: 24px;
  margin-top: -4px;
}

.cup-svg {
  width: 22px;
  height: auto;
}

/* ── Name Tags ───────────────────────────────── */
.studio-names {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 40px 0;
}

.name-tag {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.speaker-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'Tajawal', sans-serif;
  margin: 0;
}

.nova-color {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cipher-color {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speaker-role {
  font-size: .7rem;
  color: #64748b;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Tajawal', sans-serif;
}

/* ══════════════════════════════════════════════
   SPEECH BUBBLES — below the studio scene
   ══════════════════════════════════════════════ */
.bubbles-row {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 24px auto 0;
}

.speech-bubble {
  flex: 1;
  min-height: 60px;
  padding: 18px 20px;
  border-radius: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  font-family: 'Tajawal', sans-serif;
}

.speech-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bubble arrow */
.speech-bubble::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.nova-bubble {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.15);
}
.nova-bubble::before { background: rgba(99,102,241,.08); border-top: 1px solid rgba(99,102,241,.15); border-left: 1px solid rgba(99,102,241,.15); }

.cipher-bubble {
  background: rgba(236,72,153,.08);
  border: 1px solid rgba(236,72,153,.15);
}
.cipher-bubble::before { background: rgba(236,72,153,.08); border-top: 1px solid rgba(236,72,153,.15); border-left: 1px solid rgba(236,72,153,.15); }

.bubble-text {
  font-size: .92rem;
  line-height: 1.75;
  color: #cbd5e1;
  text-align: right;
  direction: rtl;
}

/* Typing dots inside bubble */
.bubble-typing {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 8px 0;
}

.bubble-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #64748b;
  animation: typing-bounce .8s ease-in-out infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: .15s; }
.bubble-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .3; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* ── Emoji Reactions ─────────────────────────── */
.reaction-float {
  position: fixed;
  font-size: 1.3rem;
  pointer-events: none;
  z-index: 50;
  animation: reaction-fly 2.5s ease-out forwards;
}

@keyframes reaction-fly {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(.5); }
}

/* ── Topic Banner Overlay ────────────────────── */
.new-topic-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  background: rgba(6,6,11,.96);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 20px;
  padding: 30px 50px;
  text-align: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s, transform .5s;
  backdrop-filter: blur(20px);
}
.new-topic-banner.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.new-topic-label {
  font-size: .68rem; color: #6366f1;
  letter-spacing: 3px; font-weight: 700; margin-bottom: 10px;
}
.new-topic-title {
  font-size: 1.3rem; font-weight: 800;
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #e2e8f0, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Stats Footer ────────────────────────────── */
.podcast-stats {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
  background: rgba(6,6,11,.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(99,102,241,.08);
  z-index: 100;
  font-size: .78rem;
  color: #64748b;
}
.podcast-stats span { display: flex; align-items: center; gap: 6px; }
.stat-icon { color: #6366f1; }

/* ══════════════════════════════════════════════
   START OVERLAY
   ══════════════════════════════════════════════ */
.podcast-start-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #06060b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, transform .6s;
}
.podcast-start-overlay.hiding {
  opacity: 0; transform: scale(1.04); pointer-events: none;
}

.start-content {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 22px;
  animation: start-fade 1s ease forwards;
}
@keyframes start-fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.start-avatars {
  display: flex;
  align-items: center;
  gap: 30px;
}

.start-ava {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.1);
}
.start-ava svg { width: 100%; height: 100%; }
.start-nova { border-color: rgba(99,102,241,.4); }
.start-cipher { border-color: rgba(236,72,153,.4); }

.start-vs {
  font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}

.start-title {
  font-size: 2rem; font-weight: 900;
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #e2e8f0, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.start-subtitle {
  font-size: .95rem; color: #94a3b8;
  max-width: 400px; line-height: 1.7;
  font-family: 'Tajawal', sans-serif;
  margin: 0;
}

.start-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 44px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border: none;
  border-radius: 50px;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 25px rgba(99,102,241,.4);
  font-family: 'Tajawal', sans-serif;
}
.start-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(99,102,241,.6); }

.start-hint {
  font-size: .8rem; color: #64748b;
  font-family: 'Tajawal', sans-serif;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .studio-wall { height: 140px; }

  .studio-seats { padding: 0 10px; }

  .avatar-container { width: 150px; height: 210px; }
  .avatar-svg { width: 150px; }

  .desk-top { padding: 0 20px; height: 65px; }
  .laptop-svg { width: 80px; }
  .desk-mic { width: 45px; }
  .mic-svg { width: 38px; }

  .bubbles-row { flex-direction: column; gap: 14px; }

  .podcast-header { padding: 10px 14px; }
  .podcast-title { font-size: .85rem; }
  .back-link { display: none; }

  .speech-bubble { padding: 14px 16px; }
  .bubble-text { font-size: .85rem; }

  .start-ava { width: 75px; height: 75px; }
  .start-title { font-size: 1.5rem; }

  .sound-panel { width: 35px; height: 50px; }
  .sound-panel:nth-child(odd) { height: 38px; margin-top: 12px; }

  .studio-names { padding: 12px 20px 0; }
}

@media (max-width: 480px) {
  .studio-wall { height: 100px; }
  .avatar-container { width: 110px; height: 160px; }
  .avatar-svg { width: 110px; }
  .desk-top { height: 55px; padding: 0 12px; }
  .laptop-svg { width: 60px; }
  .mic-svg { width: 30px; }
  .desk-mic { width: 35px; }
  .speaker-name { font-size: .9rem; }
  .desk-cups { gap: 12px; }
  .cup-svg { width: 16px; }
  .wall-panels { gap: 12px; }
  .sound-panel { width: 28px; height: 40px; }
}

/* ── Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .podcast-page *, .podcast-page *::before, .podcast-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── Focus Styles ────────────────────────────── */
.mute-btn:focus-visible,
.start-btn:focus-visible,
.back-link:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 3px;
}

/* ── Custom Scrollbar ────────────────────────── */
.podcast-page::-webkit-scrollbar { width: 6px; }
.podcast-page::-webkit-scrollbar-track { background: #06060b; }
.podcast-page::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6366f1, #ec4899);
  border-radius: 3px;
}
.podcast-page { scrollbar-width: thin; scrollbar-color: #6366f1 #06060b; }

/* ── Speech Bubble Hover Glow ────────────────── */
.speech-bubble.visible:hover {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 2px 12px rgba(99,102,241,.08);
}
.cipher-bubble.visible:hover {
  border-color: rgba(236,72,153,.3);
  box-shadow: 0 2px 12px rgba(236,72,153,.08);
}

/* ── Live Badge Shimmer ──────────────────────── */
.live-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent 0%, rgba(239,68,68,.08) 50%, transparent 100%);
  animation: badge-shimmer 3s ease-in-out infinite;
}
@keyframes badge-shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.live-badge { position: relative; overflow: hidden; }

/* ── Selection Color ─────────────────────────── */
.podcast-page ::selection {
  background: rgba(99,102,241,.3);
  color: #fff;
}

/* ── RTL ─────────────────────────────────────── */
html[dir="rtl"] .podcast-header { direction: rtl; }
html[dir="rtl"] .topic-bar { direction: rtl; }
