@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800&display=swap');

:root {
  --bg-app: #07070a;
  --bg-panel: #0e0e13;
  --bg-card: #14141c;
  --bg-card-hover: #1b1b26;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #CCFF00;
  --accent-dim: rgba(204, 255, 0, 0.12);
  --hot: #ff2a6d;
  --cyan: #00d2ff;
  --text: #ffffff;
  --text-muted: #88889a;
  --text-dim: #555566;
  --font-d: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }

body {
  background: var(--bg-app);
  color: var(--text);
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

/* =========================================
   APP HEADER
   ========================================= */
.app-header {
  height: 64px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-shrink: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-logo {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 2px;
}

.project-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.view-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--bg-card);
  color: #fff;
  font-weight: 700;
}

.badge-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
}

.tab-btn.active .badge-count {
  background: var(--accent);
  color: #000;
  font-weight: 800;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-switcher-wrap {
  display: flex;
  align-items: center;
}

.plan-select-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.plan-select-badge:hover {
  border-color: var(--accent);
}

.plan-select-badge option {
  background: #111;
  color: #fff;
}

.user-profile-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--hot));
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.8rem;
  font-weight: 700;
}

.user-tier {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}

.logout-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  margin-left: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.logout-btn:hover {
  color: var(--hot);
}

/* =========================================
   WORKSPACE GRID LAYOUT
   ========================================= */
.app-workspace {
  flex: 1;
  display: grid;
  grid-template-columns: 280px 1fr 330px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

/* Sidebar Panels */
.sidebar-left,
.sidebar-right {
  background: var(--bg-panel);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-right {
  border-right: none;
  border-left: 1px solid var(--border);
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Ingestion Controls */
.url-input-wrap {
  display: flex;
  gap: 6px;
}

.url-input-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
}

.url-input-wrap input:focus {
  border-color: var(--accent);
}

.btn-scan {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0 14px;
  cursor: pointer;
}

.upload-dropzone {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.upload-dropzone:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: #fff;
}

/* Preset Cards */
.preset-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.preset-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.preset-card.active {
  border-color: var(--accent);
  background: rgba(204, 255, 0, 0.04);
}

.preset-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preset-platform {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.preset-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preset-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preset-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Signal Toggles */
.signal-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.sig-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sig-indicator.sig-chat { background: var(--hot); box-shadow: 0 0 8px var(--hot); }
.sig-indicator.sig-audio { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.sig-indicator.sig-face { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* =========================================
   CENTER STAGE & PHONE VIEWPORT
   ========================================= */
.center-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #050508;
  overflow: hidden;
  gap: 16px;
}

.phone-viewport-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.phone-preview-wrapper {
  width: 270px;
  height: 480px;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  flex-shrink: 0;
}

.crop-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.crop-top {
  height: 45%;
  background: #111;
  overflow: hidden;
  position: relative;
}

.crop-top video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.face-bounding-box {
  position: absolute;
  top: 15%;
  left: 25%;
  width: 50%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.4);
}

.face-tag {
  position: absolute;
  top: -18px;
  left: 0;
  background: var(--accent);
  color: #000;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.split-divider {
  height: 6px;
  background: var(--accent);
  cursor: ns-resize;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-handle {
  width: 24px;
  height: 14px;
  background: var(--accent);
  border-radius: 4px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crop-bottom {
  flex: 1;
  background: #080808;
  overflow: hidden;
  position: relative;
}

.crop-bottom video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.subtitle-overlay {
  position: absolute;
  bottom: 24px;
  left: 12px;
  right: 12px;
  text-align: center;
  pointer-events: none;
  z-index: 20;
}

.sub-word {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
}

.sub-word strong {
  color: var(--accent);
}

.zoom-controls-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 12px;
}

.zoom-control-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.zoom-control-item input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
}

.sub-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  width: 90px;
}

.watermark-overlay {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-d);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 100px;
  pointer-events: none;
  z-index: 45;
}

.badge-free-watermark.locked {
  background: rgba(255, 42, 109, 0.15);
  color: var(--hot);
}

/* Subtitle Style Themes */
.sub-theme-mrbeast .sub-word strong { color: #ffea00; text-shadow: 0 0 14px rgba(255, 234, 0, 0.8); }
.sub-theme-hormozi .sub-word strong { color: #CCFF00; text-shadow: 0 0 14px rgba(204, 255, 0, 0.8); }
.sub-theme-neon .sub-word strong { color: #ff2a6d; text-shadow: 0 0 14px rgba(255, 42, 109, 0.8); }
.sub-theme-clean .sub-word strong { color: #ffffff; text-shadow: none; }

/* Player Transport Bar */
.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  width: 100%;
  max-width: 440px;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.ctrl-btn:hover {
  color: var(--accent);
}

.time-display {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.timeline-scrubber {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
}

.scrubber-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 99px;
}

.scrubber-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 0%;
  transform: translateX(-50%);
}

/* =========================================
   HEATMAP & TIMELINE
   ========================================= */
.heatmap-container {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.heatmap-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.heatmap-legend {
  display: flex;
  gap: 12px;
}

.leg-item {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.leg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.timeline-visual {
  position: relative;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

#waveform-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.timeline-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  left: 0%;
  pointer-events: none;
}

.peak-marker {
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 5;
}

.peak-badge {
  background: var(--hot);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255, 42, 109, 0.5);
  transition: transform 0.2s;
}

.peak-marker:hover .peak-badge {
  transform: scale(1.1);
}

/* =========================================
   RIGHT SIDEBAR & EXPORT
   ========================================= */
.sub-preset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sub-preset-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.sub-preset-btn:hover {
  background: var(--bg-card-hover);
}

.sub-preset-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.sub-demo-text {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 0.8rem;
}

.sub-demo-text.yellow { color: #ffea00; }
.sub-demo-text.green { color: #CCFF00; }
.sub-demo-text.pink { color: #ff2a6d; }
.sub-demo-text.white { color: #ffffff; }

.sub-name {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* Moments list */
.moment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.moment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.moment-card:hover {
  background: var(--bg-card-hover);
}

.moment-card.active {
  border-color: var(--hot);
  background: rgba(255, 42, 109, 0.06);
}

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

.moment-score {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--hot);
}

.moment-duration {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: monospace;
}

.moment-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.moment-tags {
  display: flex;
  gap: 6px;
}

.m-tag {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

/* Export Section */
.export-section {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.export-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.export-opt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.app-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 6px;
  outline: none;
}

.badge-free-watermark {
  background: rgba(204, 255, 0, 0.15);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-render-export {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-render-export:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 255, 0, 0.3);
}

.render-progress-wrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.render-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.render-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.1s;
}

.render-status {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
}

.btn-copy-meta {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  transition: all 0.2s;
}

.btn-copy-meta:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* =========================================
   QUEUE & LIBRARY TABS
   ========================================= */
.queue-container {
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.queue-container h2 {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.queue-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.queue-table-wrap {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.queue-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.queue-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.queue-table td {
  padding: 16px 20px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.tag-platform {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-platform.twitch { background: #9146FF; color: #fff; }
.tag-platform.kick { background: var(--accent); color: #000; }

.tag-status.completed {
  color: var(--accent);
  font-weight: 700;
}

.tag-status.rendering {
  color: var(--hot);
  font-weight: 700;
}

.btn-sm {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm:hover {
  background: var(--accent);
  color: #000;
}

/* Library Grid */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.lib-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lib-thumb {
  height: 280px;
  background: #000;
  position: relative;
}

.lib-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lib-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.lib-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lib-title {
  font-weight: 700;
  font-size: 0.9rem;
}

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

.lib-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn-sm-primary {
  flex: 1;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
}

.btn-sm-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================================
   RESPONSIVE APP
   ========================================= */
@media (max-width: 1100px) {
  .app-workspace {
    grid-template-columns: 240px 1fr 280px;
  }
}

@media (max-width: 900px) {
  body { height: auto; overflow: auto; }
  .app-workspace {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }
  .sidebar-left, .sidebar-right {
    border: none;
    border-bottom: 1px solid var(--border);
  }
  .phone-preview-wrapper {
    width: 240px;
    height: 426px;
  }
}
