/* ==============================================================================
   BMS GLOBAL — INSTAGRAM REELS FAQ STYLESHEET
   ============================================================================== */

:root {
  --bg-primary: #05070c;
  --bg-card: rgba(13, 17, 26, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-strong: rgba(255, 255, 255, 0.22);
  
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-pink: #ff2d55;
  --accent-purple: #7928ca;
  --accent-gold: #f59e0b;
  --accent-green: #25d366;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Outfit', 'Syne', sans-serif;
  
  --feed-width: 440px;
  --feed-max-height: 880px;
  --radius-reel: 24px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow: hidden;
  position: fixed;
}

/* Background Ambient Glow */
.reels-ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(121, 40, 202, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.04) 0%, transparent 60%);
  filter: blur(60px);
}

/* ==============================================================================
   APP LAYOUT (DESKTOP & MOBILE WRAPPER)
   ============================================================================== */

.faq-app-layout {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Top App Header (Instagram Style Header) */
.reels-top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.85) 0%, rgba(5, 7, 12, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  pointer-events: auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-back-home:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-logo-img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
}

.header-title-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-header-action {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-header-action:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-header-whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
  border-color: #25d366;
}

/* ==============================================================================
   DESKTOP SIDEBAR DIRECTORY
   ============================================================================== */

.desktop-faq-sidebar {
  display: none;
  width: 360px;
  height: calc(100vh - 80px);
  max-height: var(--feed-max-height);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 20px;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin-right: 28px;
}

.sidebar-header {
  margin-bottom: 16px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Search Bar */
.sidebar-search-box {
  position: relative;
  margin-bottom: 14px;
}

.sidebar-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.2s ease;
}

.sidebar-search-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.2);
}

.sidebar-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

/* Category Filter Tabs in Sidebar */
.sidebar-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.category-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.category-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.category-pill.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(79, 172, 254, 0.25));
  border-color: var(--accent-cyan);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
}

/* FAQ Directory List */
.sidebar-faq-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-faq-list::-webkit-scrollbar {
  width: 4px;
}

.sidebar-faq-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.sidebar-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-glass);
}

.sidebar-faq-item.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(121, 40, 202, 0.12));
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.1);
}

.sidebar-faq-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.1);
  min-width: 24px;
  text-align: center;
  margin-top: 2px;
}

.sidebar-faq-content {
  flex: 1;
}

.sidebar-faq-q {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-faq-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 10px;
  color: var(--text-dim);
}

/* Sidebar Footer CTA */
.sidebar-footer-cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-glass);
}

.sidebar-whatsapp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 126, 0.12));
  border: 1px solid rgba(37, 211, 102, 0.25);
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.sidebar-whatsapp-card:hover {
  border-color: #25d366;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.sw-text strong {
  display: block;
  font-size: 12px;
  color: #4ade80;
}

.sw-text span {
  font-size: 10px;
  color: var(--text-muted);
}

/* ==============================================================================
   MAIN REELS FEED CONTAINER (PHONE VIEWPORT)
   ============================================================================== */

.reels-viewport-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-width: var(--feed-width);
  max-height: var(--feed-max-height);
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.08);
  display: flex;
  flex-direction: column;
}

/* Dynamic Ambient Video Glow behind the phone on desktop */
.reels-glow-halo {
  display: none;
  position: absolute;
  inset: -15px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(121, 40, 202, 0.25));
  filter: blur(25px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* The Vertical Scrolling Container */
.reels-scroll-feed {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reels-scroll-feed::-webkit-scrollbar {
  display: none;
}

/* Single Reel Slide */
.reel-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Layer */
.reel-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Dark Scrim Overlays for crystal clear text */
.reel-scrim-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.reel-scrim-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 380px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.2) 75%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ==============================================================================
   TEXT CARD REEL CONTAINER & GRADIENT THEMES
   ============================================================================== */

.reel-text-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 160px 24px;
}

/* Theme 1: Cyber Cyan */
.reel-text-container.theme-cyber {
  background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.2) 0%, transparent 50%),
              linear-gradient(145deg, #050b14 0%, #071524 50%, #0a2138 100%);
}

/* Theme 2: Royal Purple */
.reel-text-container.theme-purple {
  background: radial-gradient(circle at 80% 20%, rgba(255, 45, 85, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(121, 40, 202, 0.25) 0%, transparent 50%),
              linear-gradient(145deg, #0d0517 0%, #170a29 50%, #261042 100%);
}

/* Theme 3: Midnight Emerald */
.reel-text-container.theme-emerald {
  background: radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.15) 0%, transparent 50%),
              linear-gradient(145deg, #04120b 0%, #072115 50%, #0b3623 100%);
}

/* Theme 4: Sunset Gold */
.reel-text-container.theme-gold {
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.2) 0%, transparent 50%),
              linear-gradient(145deg, #140d04 0%, #241808 50%, #3d290c 100%);
}

/* Theme 5: Deep Crimson */
.reel-text-container.theme-crimson {
  background: radial-gradient(circle at 80% 20%, rgba(255, 45, 85, 0.28) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
              linear-gradient(145deg, #14030a 0%, #290815 50%, #450d23 100%);
}

/* Floating Ambient Bokeh in Text Card */
.text-card-bokeh-1, .text-card-bokeh-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.5;
  animation: floatMesh 8s ease-in-out infinite alternate;
}

.text-card-bokeh-1 {
  width: 180px;
  height: 180px;
  top: 15%;
  right: -40px;
  background: var(--accent-cyan);
}

.text-card-bokeh-2 {
  width: 220px;
  height: 220px;
  bottom: 25%;
  left: -50px;
  background: var(--accent-purple);
  animation-duration: 11s;
}

@keyframes floatMesh {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
  100% { transform: translateY(15px) scale(0.95); }
}

/* Center Glass Card in Text Reel */
.text-card-glass-body {
  position: relative;
  z-index: 5;
  background: rgba(13, 18, 31, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-card-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-card-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--accent-cyan);
}

.text-card-reading-indicator {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.text-card-question-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.text-card-summary-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
}

.text-card-summary-text {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.5;
}

.text-card-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.text-card-bullets-list li {
  font-size: 12px;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.text-bullet-icon {
  color: var(--accent-cyan);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.text-card-tap-hint {
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* Interactive Tap Overlays (Play/Pause Ripple & Double Tap Heart) */
.tap-indicator-pop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 15;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.tap-indicator-pop.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Double-tap Heart Burst (Instagram effect) */
.heart-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 80px;
  color: var(--accent-pink);
  text-shadow: 0 0 30px rgba(255, 45, 85, 0.8);
  pointer-events: none;
  z-index: 20;
  opacity: 0;
}

.heart-burst.animate {
  animation: heartExplode 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartExplode {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1) translateY(-40px);
    opacity: 0;
  }
}

/* Sound / Mute Alert Pill */
.sound-status-pill {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  z-index: 25;
  transition: all 0.25s ease;
}

.sound-status-pill.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==============================================================================
   RIGHT ACTION BAR (INSTAGRAM ICONS)
   ============================================================================== */

.reel-action-bar {
  position: absolute;
  right: 12px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.action-btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.action-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.action-circle-btn:active {
  transform: scale(0.85);
}

.action-circle-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: scale(1.08);
}

/* Like Button Active State */
.action-circle-btn.liked {
  color: var(--accent-pink);
  border-color: rgba(255, 45, 85, 0.5);
  background: rgba(255, 45, 85, 0.18);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.4);
}

.action-circle-btn.liked svg {
  fill: var(--accent-pink);
  animation: heartPulse 0.35s ease;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Sound Mute active */
.action-circle-btn.unmuted {
  color: var(--accent-cyan);
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.15);
}

.action-count {
  font-size: 11px;
  font-weight: 700;
  color: #f1f5f9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.01em;
}

/* Saved state */
.action-circle-btn.saved {
  color: var(--accent-gold);
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.15);
}

.action-circle-btn.saved svg {
  fill: var(--accent-gold);
}

/* ==============================================================================
   BOTTOM INFO OVERLAY (QUESTION, AUTHOR, CTA)
   ============================================================================== */

.reel-bottom-info {
  position: absolute;
  left: 14px;
  right: 68px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Author Badge Row */
.author-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  object-fit: cover;
  background: #000;
}

.author-name-group {
  display: flex;
  flex-direction: column;
}

.author-handle {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.01em;
}

.verified-icon {
  color: var(--accent-cyan);
  display: inline-flex;
}

.author-role-sub {
  font-size: 10px;
  color: var(--text-muted);
}

/* Category Tag Pill */
.reel-category-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
}

/* Main FAQ Question */
.reel-question-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Snippet preview */
.reel-summary-preview {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-read-more-doubt {
  background: none;
  border: none;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.btn-read-more-doubt:hover {
  text-decoration: underline;
}

/* Bottom CTA Actions */
.reel-bottom-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-reel-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-reel-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-reel-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reel-details:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

/* Video Scrub Progress Bar */
.reel-progress-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 30;
  cursor: pointer;
}

.reel-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width 0.1s linear;
}

/* Swipe Indicator Hint for First Reel */
.swipe-hint-indicator {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 25;
  pointer-events: none;
  animation: bounceHint 2s infinite;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Navigation Arrow Controls on Desktop */
.desktop-reel-nav-controls {
  display: none;
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.btn-reel-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-reel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: scale(1.1);
}

/* ==============================================================================
   DETAILED ANSWER / DOUBT BOTTOM SHEET & DRAWER
   ============================================================================== */

.doubt-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.doubt-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.doubt-drawer-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  background: #0d121f;
  border: 1px solid var(--border-glass-strong);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 254, 0.1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.doubt-drawer-sheet.open {
  transform: translateX(-50%) translateY(0);
}

.drawer-drag-handle {
  width: 44px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  margin: 12px auto 6px auto;
  cursor: grab;
}

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

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.btn-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.drawer-body-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.drawer-body-content::-webkit-scrollbar {
  width: 4px;
}

.drawer-body-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.drawer-question-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.drawer-q-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.drawer-q-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* Answer formatting */
.answer-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.answer-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin: 16px 0 8px 0;
}

.answer-section p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.answer-bullets {
  list-style: none;
  margin: 10px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.answer-bullets li {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.answer-bullets li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  font-size: 11px;
}

.answer-note {
  background: rgba(0, 242, 254, 0.08);
  border-left: 3px solid var(--accent-cyan);
  padding: 10px 14px;
  border-radius: 0 10px 10px 0;
  font-size: 12px !important;
  color: #e0f2fe !important;
}

/* Highlights Box in Drawer */
.drawer-highlights-card {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.08), rgba(121, 40, 202, 0.08));
  border: 1px solid rgba(79, 172, 254, 0.2);
  border-radius: 14px;
  padding: 14px;
  margin: 16px 0;
}

.dh-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dh-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dh-list li {
  font-size: 12px;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dh-check {
  color: #4ade80;
  flex-shrink: 0;
}

/* Drawer Footer */
.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-glass);
  background: rgba(5, 7, 12, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-drawer-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-drawer-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==============================================================================
   SHARE MODAL & POPUP
   ============================================================================== */

.share-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.share-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.share-modal-card {
  width: 100%;
  max-width: 420px;
  background: #0d121f;
  border: 1px solid var(--border-glass-strong);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 254, 0.15);
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-modal-backdrop.active .share-modal-card {
  transform: scale(1);
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.share-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-preview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
}

.share-preview-tag {
  font-size: 10px;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
}

.share-preview-q {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.35;
}

/* Quick Copy Box */
.share-copy-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 6px 8px 6px 14px;
  margin-bottom: 20px;
}

.share-link-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.btn-copy-link {
  background: var(--accent-cyan);
  border: none;
  color: #05070c;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-copy-link:hover {
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

/* Social Grid */
.share-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.social-share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.social-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease;
}

.social-share-btn:hover .social-icon-circle {
  transform: translateY(-3px) scale(1.08);
}

.social-share-btn:hover {
  color: #fff;
}

.icon-wa { background: #25d366; }
.icon-x { background: #000; border: 1px solid rgba(255, 255, 255, 0.2); }
.icon-li { background: #0077b5; }
.icon-fb { background: #1877f2; }

/* ==============================================================================
   LANGUAGE SELECTION MODAL SHEET (Apple / Instagram Style)
   ============================================================================== */

.btn-header-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  width: auto !important;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-header-lang:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--accent-cyan);
  color: #fff;
}

.lang-globe-icon {
  font-size: 14px;
}

.lang-code-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

/* Modal Backdrop */
.lang-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 160;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lang-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.lang-modal-sheet {
  width: 100%;
  max-width: 480px;
  background: #0d121f;
  border: 1px solid var(--border-glass-strong);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 16px 20px 36px 20px;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 242, 254, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-modal-backdrop.active .lang-modal-sheet {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .lang-modal-backdrop {
    align-items: center;
    padding: 20px;
  }
  .lang-modal-sheet {
    border-radius: 28px;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lang-modal-backdrop.active .lang-modal-sheet {
    transform: scale(1);
  }
}

.lang-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-top: 6px;
}

.lang-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-header-title h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.lang-globe {
  font-size: 18px;
}

.lang-modal-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}

.lang-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lang-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.lang-option-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-strong);
}

.lang-option-card.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.15));
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.lang-flag-badge {
  font-size: 24px;
  flex-shrink: 0;
}

.lang-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-card-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.lang-card-text span {
  font-size: 11px;
  color: var(--text-dim);
}

.lang-check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-glass);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.lang-option-card.active .lang-check-circle {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #05070c;
}

/* ==============================================================================
   TOAST NOTIFICATION
   ============================================================================== */

.faq-toast-alert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent-cyan);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 242, 254, 0.3);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-toast-alert.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==============================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET, DESKTOP)
   ============================================================================== */

/* Mobile Fullscreen Default (< 768px) */
@media (max-width: 767px) {
  .faq-app-layout {
    padding: 0;
  }

  .reels-top-header {
    height: 52px;
    padding: 0 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    border-bottom: none;
  }

  .btn-back-home {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
  }

  .btn-back-home .back-text {
    display: none;
  }

  .header-brand {
    gap: 6px;
  }

  .header-logo-img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .header-title-text {
    font-size: 14px;
    font-weight: 800;
  }

  .btn-header-action {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.45);
  }

  .btn-header-whatsapp {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .btn-header-whatsapp .wa-label {
    display: none;
  }

  .reels-viewport-wrapper {
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .desktop-faq-sidebar {
    display: none !important;
  }

  .desktop-reel-nav-controls {
    display: none !important;
  }

  .reel-action-bar {
    right: 10px;
    bottom: 85px;
    gap: 14px;
  }

  .action-circle-btn {
    width: 40px;
    height: 40px;
  }

  .reel-bottom-info {
    left: 12px;
    right: 60px;
    bottom: 20px;
  }

  .reel-question-title {
    font-size: 14px;
  }
}

/* Tablet & iPad (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-app-layout {
    padding-top: 60px;
  }

  .reels-viewport-wrapper {
    max-width: 430px;
    height: calc(100vh - 80px);
    max-height: 840px;
    border-radius: 28px;
    border: 1px solid var(--border-glass);
  }

  .reels-glow-halo {
    display: block;
  }

  .desktop-reel-nav-controls {
    display: flex;
    right: -50px;
  }
}

/* Desktop (> 1024px) */
@media (min-width: 1025px) {
  .faq-app-layout {
    padding-top: 60px;
  }

  .desktop-faq-sidebar {
    display: flex;
  }

  .reels-viewport-wrapper {
    width: var(--feed-width);
    height: calc(100vh - 80px);
    max-height: var(--feed-max-height);
    border-radius: 28px;
    border: 1px solid var(--border-glass-strong);
  }

  .desktop-reel-nav-controls {
    display: flex;
  }
}

/* Floating Unmute Pill / Instagram Style Banner */
.unmute-floating-pill {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(12, 16, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 242, 254, 0.35);
  animation: pulseUnmutePill 2s infinite ease-in-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.unmute-floating-pill.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
}

@keyframes pulseUnmutePill {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}
