/* ==========================================================================
   STUDIOPROMPTER HD - CSS DESIGN SYSTEM (SPEED % SLIDER & UNMIRRORED TEXT)
   ========================================================================== */

/* 1. CSS VARIABLES & TOKENS */
:root {
  --bg-dark: #07080c;
  --bg-card: rgba(15, 20, 32, 0.94);
  --bg-glass: rgba(18, 24, 38, 0.90);
  --bg-overlay: rgba(0, 0, 0, 0.5);

  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.4);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.5);
  --accent-green: #10b981;
  --accent-yellow: #facc15;
  --accent-amber: #f59e0b;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(139, 92, 246, 0.3);

  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE & RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  font-family: var(--font-ui);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* 3. LAYOUT CONTAINER */
.app-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: relative;
  background-color: var(--bg-dark);
}

/* 4. HEADER NAVBAR */
.app-header {
  height: 54px;
  padding: 0 16px;
  padding-top: max(4px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 50;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-purple-glow);
}

.brand-text h1 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1;
}

.brand-text h1 span {
  color: var(--accent-cyan);
}

.badge-pro {
  font-size: 0.55rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  padding: 2px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

/* STATUS BAR & REC BADGE */
.status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.rec-badge.rec-paused {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--accent-amber);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.rec-badge.rec-paused .rec-dot {
  background-color: var(--accent-amber);
  animation: none;
}

.rec-badge.rec-paused .rec-text {
  color: var(--accent-amber);
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-red);
  animation: pulse-rec 1.2s infinite ease-in-out;
}

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

.rec-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.5px;
}

.rec-timer {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.segment-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
}

/* AUDIO VU METER */
.vu-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.vu-icon {
  color: var(--accent-cyan);
}

.vu-bar-outer {
  width: 48px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.vu-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-red));
  border-radius: 3px;
  transition: width 0.05s ease-out;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 5. MAIN STAGE (CAMERA & TELEPROMPTER AREA) */
.main-stage {
  flex: 1;
  position: relative;
  display: flex;
  background-color: #000;
  overflow: hidden;
}

/* WEBCAM FEED WRAPPER */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#webcam-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

#webcam-feed.mirror-active {
  transform: scaleX(-1) !important; /* FLIPS ONLY THE WEBCAM FEED */
}

.camera-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

/* TELEPROMPTER VIEWPORT & TEXT OVERLAY (TEXT IS NEVER MIRRORED / ALWAYS LEGIBLE) */
.prompter-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.prompter-scroll-box {
  width: 80%;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 35vh 0;
  text-align: center;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease, width 0.3s ease;
}

.prompter-scroll-box::-webkit-scrollbar {
  display: none;
}

.prompter-text {
  font-family: var(--font-ui);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 0, 0, 0.8);
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 0 16px;
  outline: none;
  transform: none !important; /* TEXT REMAINS 100% UNMIRRORED */
  transition: color 0.2s ease, font-size 0.15s ease, line-height 0.2s ease;
}

/* READING FOCUS GUIDE LINE */
.reading-guide {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 15;
  pointer-events: none;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.guide-arrow {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px var(--accent-cyan));
  animation: pulse-arrow 1.5s ease-in-out infinite alternate;
}

@keyframes pulse-arrow {
  from { opacity: 0.5; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

/* SPLIT SCREEN LAYOUT MODE */
.stage-split {
  flex-direction: row;
}

.stage-split .video-wrapper {
  position: relative;
  width: 45%;
  height: 100%;
  border-right: 2px solid var(--border-light);
}

.stage-split .prompter-viewport {
  position: relative;
  width: 55%;
  height: 100%;
}

.stage-split .prompter-scroll-box {
  width: 100%;
  background: rgba(7, 8, 12, 0.95);
}

/* COUNTDOWN OVERLAY */
.countdown-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: countdown-pop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes countdown-pop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.countdown-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* 6. FLOATING CONTROL TOOLBAR & SPEED PERCENTAGE % SLIDER BAR */
.control-toolbar {
  min-height: 74px;
  padding: 8px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 40;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  overflow-x: auto;
}

.tool-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tool-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-align: center;
}

.group-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.tool-divider {
  width: 1px;
  height: 38px;
  background-color: var(--border-light);
  flex-shrink: 0;
}

/* SPEED SLIDER BAR CONTAINER (%) */
.speed-bar-container {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.speed-percent-badge {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: var(--accent-cyan) !important;
  min-width: 40px;
}

/* STEPPER CONTROLS & SLIDERS */
.btn-stepper {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.btn-stepper-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  touch-action: manipulation;
  flex-shrink: 0;
}

.btn-stepper-btn:hover {
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

.font-icon-small { font-size: 0.7rem; font-weight: 800; }
.font-icon-large { font-size: 0.9rem; font-weight: 800; }

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 95px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 8px var(--accent-cyan-glow);
}

.value-badge {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--accent-cyan);
  min-width: 34px;
  text-align: center;
}

/* BUTTON STYLES */
.btn {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
  text-decoration: none;
  outline: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-warning {
  background: linear-gradient(135deg, var(--accent-amber), #d97706);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon-secondary {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* PLAY BUTTON */
.btn-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--accent-cyan-glow);
  flex-shrink: 0;
}

/* RECORD BUTTON */
.btn-record {
  background: linear-gradient(135deg, var(--accent-red), #dc2626);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--accent-red-glow);
  flex-shrink: 0;
}

.record-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

.btn-danger {
  background: var(--accent-red);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-weight: 700;
}

.btn-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 12px;
}

.btn-toggle.active {
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--accent-purple);
  color: #fff;
}

.btn-success {
  background: linear-gradient(135deg, var(--accent-green), #059669);
  color: #fff;
  font-weight: 700;
}

.btn-large {
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

/* 7. MODALS & DRAWERS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.hidden, .drawer-panel.hidden, .hidden {
  display: none !important;
}

.modal-window {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.btn-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 65vh;
  overflow-y: auto;
}

.sample-loader-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-sample {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  cursor: pointer;
}

.btn-file-upload {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-file-upload input[type="file"] {
  display: none;
}

#editor-textarea {
  width: 100%;
  height: 220px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.editor-stats {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
}

.modal-footer-centered {
  justify-content: center;
  gap: 12px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* VIDEO PREVIEW MODAL SPECIFICS */
.video-preview-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 50vh;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

#preview-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* 8. SETTINGS DRAWER */
.drawer-panel {
  position: fixed;
  top: 54px;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: calc(100vh - 54px);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-light);
  z-index: 150;
  display: flex;
  flex-direction: column;
  animation: drawer-slide 0.25s ease-out;
}

@keyframes drawer-slide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.drawer-body {
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.setting-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setting-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-purple);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding-bottom: 4px;
}

.setting-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.setting-field label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.custom-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 8px;
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.field-with-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-with-value input[type="range"] {
  flex: 1;
}

/* ==========================================================================
   9. MOBILE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 768px) {
  .control-toolbar {
    gap: 8px;
    padding: 6px 8px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  
  .tool-divider {
    height: 30px;
  }
  
  input[type="range"] {
    width: 65px;
  }
}

@media (max-width: 600px) {
  .app-header {
    padding: 0 10px;
  }
  
  .brand-text h1 span, .badge-pro {
    display: none;
  }

  .btn-text-responsive {
    display: none;
  }

  .prompter-scroll-box {
    width: 96% !important;
  }

  .prompter-text {
    font-size: 28px;
    padding: 0 6px;
  }

  .mobile-app-bar {
    position: relative;
    min-height: 64px;
    padding: 6px 8px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: rgba(12, 16, 26, 0.96);
  }

  .tool-divider {
    display: none;
  }

  .tool-label {
    display: none;
  }

  input[type="range"] {
    width: 55px;
  }

  .vu-container {
    display: none;
  }
}
