﻿:root {
  --bg: #0b0d12;
  --bg-card: #141820;
  --bg-elevated: #1a1f2b;
  --border: #2a3142;
  --text: #eef1f6;
  --text-muted: #8b95a8;
  --accent: #ff6b2c;
  --accent-hover: #ff8247;
  --green: #22c55e;
  --green-dim: #166534;
  --cta: #e11d8f;
  --cta-hover: #f43f9f;
  --stranger: #3b82f6;
  --radius: 14px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --mobile-max: 430px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
  overscroll-behavior: none;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 107, 44, 0.12), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(225, 29, 143, 0.08), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.screen {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--mobile-max);
  height: 100dvh;
  z-index: 1;
  flex-direction: column;
  overflow: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.screen.active {
  display: flex;
}

/* â”€â”€ Landing (fun) â”€â”€ */

#screen-landing {
  background: linear-gradient(165deg, #120818 0%, #0f1424 35%, #0a1628 70%, #140a1a 100%);
}

.landing-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.landing-float {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.35;
  animation: floatDrift 8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.landing-float--1 { top: 12%; left: 8%; animation-delay: 0s; }
.landing-float--2 { top: 22%; right: 10%; animation-delay: 1.2s; font-size: 1.9rem; }
.landing-float--3 { top: 55%; left: 5%; animation-delay: 2.4s; }
.landing-float--4 { top: 68%; right: 8%; animation-delay: 0.8s; font-size: 1.4rem; }
.landing-float--5 { top: 38%; right: 18%; animation-delay: 3s; }
.landing-float--6 { top: 78%; left: 22%; animation-delay: 1.8s; font-size: 1.3rem; }

.topbar--fun {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding-top: calc(10px + var(--safe-top));
  padding-left: 14px;
  padding-right: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 20, 0.55);
}

.logo--fun {
  font-family: "Nunito", var(--font);
  font-weight: 900;
  font-size: 1.15rem;
}

.logo__icon {
  font-size: 1.3rem;
  animation: wiggle 3s ease-in-out infinite;
}

.live-pill--fun {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 10px;
  max-width: 52%;
}

.live-pill--fun span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing--fun {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 6px 16px calc(16px + var(--safe-bottom));
}

.live-preview {
  text-align: center;
  margin-bottom: 8px;
}

.live-preview__orbit {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 10px;
}

.live-preview__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b2c, #e11d8f, #8b5cf6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(225, 29, 143, 0.45);
  animation: corePulse 2.5s ease-in-out infinite;
}

.live-preview__emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.live-preview__live {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  margin-top: 2px;
}

.orbit-avatar {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  animation: orbitBob 3s ease-in-out infinite;
}

.orbit-avatar--1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.orbit-avatar--2 { top: 18%; right: 0; animation-delay: 0.4s; background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.orbit-avatar--3 { bottom: 18%; right: 2%; animation-delay: 0.8s; background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.orbit-avatar--4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; background: linear-gradient(135deg, #e9d5ff, #d8b4fe); }
.orbit-avatar--5 { bottom: 18%; left: 2%; animation-delay: 1.6s; background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.orbit-avatar--6 { top: 18%; left: 0; animation-delay: 2s; background: linear-gradient(135deg, #dbeafe, #93c5fd); }

.live-preview__caption {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.live-preview__caption span {
  color: var(--green);
  font-weight: 700;
}

.landing__hero--fun {
  text-align: center;
  margin-bottom: 14px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.15);
  border: 1px solid rgba(255, 107, 44, 0.35);
  color: #ffb088;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: badgePop 0.6s ease;
}

.landing__hero--fun h1 {
  margin: 0 0 10px;
  font-family: "Nunito", var(--font);
  font-size: clamp(1.85rem, 7vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6b2c, #f472b6, #a78bfa, #ff6b2c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
}

.landing__hero--fun .landing__sub {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 340px;
  margin-inline: auto;
}

.activity-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  overflow: hidden;
  min-height: 40px;
}

.activity-ticker__icon {
  flex-shrink: 0;
  font-size: 1rem;
  animation: pulse 1.5s ease infinite;
}

.activity-ticker__text {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  color: #c4b5fd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: tickerFade 0.4s ease;
}

.stats-row--fun {
  margin-bottom: 14px;
}

.stat--fun {
  position: relative;
  overflow: hidden;
  padding: 14px 6px 12px;
  border: none;
  transition: transform 0.2s ease;
}

.stat--fun:active {
  transform: scale(0.97);
}

.stat--pink {
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.stat--purple {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.stat--orange {
  background: linear-gradient(145deg, rgba(255, 107, 44, 0.25), rgba(255, 107, 44, 0.08));
  border: 1px solid rgba(255, 107, 44, 0.35);
}

.stat__emoji {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.stat--fun .stat__value {
  font-family: "Nunito", var(--font);
  font-size: clamp(0.82rem, 3.2vw, 1.05rem);
  letter-spacing: -0.02em;
}

.pref-card--fun {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
}

.pref-card--fun h2 {
  text-align: center;
  font-family: "Nunito", var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pill-section {
  margin-bottom: 14px;
}

.pill-section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill-row {
  display: flex;
  gap: 8px;
}

.pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 48px;
  padding: 12px 4px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pill:hover {
  color: var(--text);
}

.pill[data-value="man"]:hover {
  border-color: rgba(59, 130, 246, 0.55);
}

.pill[data-value="woman"]:hover {
  border-color: rgba(236, 72, 153, 0.55);
}

.pill[data-value="other"]:hover,
.pill[data-value="everyone"]:hover {
  border-color: rgba(167, 139, 250, 0.55);
}

.pill--active {
  color: #fff;
  transform: scale(1.02);
}

.pill[data-value="man"].pill--active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.22);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.pill[data-value="woman"].pill--active {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.22);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
}

.pill[data-value="other"].pill--active,
.pill[data-value="everyone"].pill--active {
  border-color: #a78bfa;
  background: rgba(167, 139, 250, 0.2);
  box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
}

.fun-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.fun-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fun-toggle__track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.fun-toggle input:not(:checked) + .fun-toggle__track {
  background: var(--border);
}

.fun-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.fun-toggle input:not(:checked) + .fun-toggle__track .fun-toggle__thumb {
  transform: translateX(0);
}

.fun-toggle input:checked + .fun-toggle__track .fun-toggle__thumb {
  transform: translateX(20px);
}

.fun-toggle__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.btn--start-fun {
  position: relative;
  width: 100%;
  min-height: 56px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #ff6b2c 0%, #e11d8f 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  animation: gradientBtn 3s ease infinite, btnGlow 2s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--start-fun__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: btnShine 2.5s ease-in-out infinite;
}

.btn--start-fun__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: "Nunito", var(--font);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn--start-fun__emoji {
  font-size: 1.4rem;
  animation: rocketBounce 1.5s ease-in-out infinite;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-row span {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.live-pill strong,
#online-count-hero,
#online-count-stat {
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.count-flash--up {
  color: #4ade80 !important;
  transform: scale(1.06);
}

.count-flash--down {
  color: #fb923c !important;
  transform: scale(0.98);
}

.live-pill strong.count-flash--up,
.live-pill strong.count-flash--down {
  color: inherit;
}

.live-pill strong.count-flash--up {
  color: #4ade80 !important;
}

.live-pill strong.count-flash--down {
  color: #fb923c !important;
}

/* â”€â”€ Landing (legacy shared) â”€â”€ */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease infinite;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.live-pill strong {
  color: var(--green);
  font-weight: 700;
}

.live-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease infinite;
}

.landing {
  flex: 1;
  overflow-y: auto;
  padding: 24px 18px 12px;
  width: 100%;
}

.landing__hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--accent);
}

.landing__sub {
  margin: 0 0 22px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
}

.stat__value {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.stat__label {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pref-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.pref-card h2 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.pref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.field__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.select {
  width: 100%;
  appearance: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b95a8'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff4d00);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #ff5500);
}

.btn--xl {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn--cta {
  background: linear-gradient(135deg, var(--cta), #be185d);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 29, 143, 0.35);
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--cta-hover), #db2777);
}

.btn--block {
  width: 100%;
  padding: 14px 16px;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--outline {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--sm {
  padding: 7px 12px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.btn--send {
  width: 56px;
  height: 56px;
  min-width: 56px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 4px 14px rgba(255, 107, 44, 0.35);
}

.btn--send svg {
  width: 22px;
  height: 22px;
}

.btn--send-mix {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.legal {
  margin: 14px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer__sep {
  opacity: 0.4;
}

/* â”€â”€ Connecting â”€â”€ */

.connecting {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px calc(24px + var(--safe-bottom));
  padding-top: calc(24px + var(--safe-top));
  text-align: center;
}

.connecting__ring {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 22px;
}

.connecting__spinner {
  position: absolute;
  inset: 0;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.connecting__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.connecting h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-family: "Nunito", var(--font);
  font-weight: 800;
  line-height: 1.25;
  max-width: 280px;
}

.connecting__status {
  margin: 0 0 16px;
  color: #a5b4fc;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 1.4em;
  max-width: 300px;
  line-height: 1.45;
}

.connecting__match-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.connecting__dots {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.connecting__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1.2s ease infinite;
}

.connecting__dots span:nth-child(2) { animation-delay: 0.15s; }
.connecting__dots span:nth-child(3) { animation-delay: 0.3s; }

.connecting__prefs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 320px;
}

.connecting__prefs .tag {
  padding: 9px 16px;
  font-size: 0.9rem;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tag--boy {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.tag--girl {
  border-color: rgba(236, 72, 153, 0.6);
  background: rgba(236, 72, 153, 0.2);
  color: #fbcfe8;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.2);
}

.tag--neutral {
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(167, 139, 250, 0.15);
  color: #ddd6fe;
  font-weight: 700;
}

.tag--accent {
  color: var(--accent);
  border-color: rgba(255, 107, 44, 0.4);
}

.tag--arrow {
  border: none;
  background: none;
  padding: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* â”€â”€ Chat â”€â”€ */

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: calc(8px + var(--safe-top)) 14px 8px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(10px);
}

.chat-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header__status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.chat-header__title {
  font-weight: 600;
  font-size: 0.9rem;
}

.chat-header__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chat-header__actions {
  display: flex;
  gap: 8px;
}

#screen-chat {
  position: fixed;
}

#screen-chat .cam-toast {
  position: absolute;
  top: calc(52px + var(--safe-top));
  left: 12px;
  right: 12px;
  z-index: 30;
}

.chat-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.video-panel {
  flex-shrink: 0;
  background: #000;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(36dvh, 280px);
  background: #111;
  overflow: hidden;
}

.video-frame__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a1020 0%, #0d1520 50%, #101828 100%);
}

.video-frame__silhouette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 50% 35%, rgba(255, 180, 200, 0.25), transparent),
    radial-gradient(circle at 50% 30%, rgba(255, 140, 180, 0.15), transparent 50%);
  filter: blur(8px);
  transform: scale(1.05);
  transition: filter 1.2s ease, transform 1.2s ease;
}

.video-frame--live .video-frame__silhouette {
  filter: blur(2px);
  transform: scale(1);
  animation: subtleMove 6s ease-in-out infinite;
}

.video-frame__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.video-frame__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.video-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-status--live {
  color: #fff;
  background: rgba(220, 38, 38, 0.85);
  animation: pulse 2s ease infinite;
}

.video-frame__you {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 88px;
  height: 66px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px dashed rgba(251, 146, 60, 0.7);
  background: #1a1f2b;
  z-index: 3;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  animation: camPipPulse 2.5s ease-in-out infinite;
}

.video-frame__you--failed {
  border-color: rgba(239, 68, 68, 0.85);
  border-style: solid;
  animation: none;
}

.video-frame__you--connecting {
  border-color: rgba(59, 130, 246, 0.8);
  border-style: solid;
  animation: none;
}

.video-frame__you-tag {
  position: absolute;
  bottom: 3px;
  left: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.video-frame__you-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2px 4px;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background: rgba(239, 68, 68, 0.88);
  z-index: 2;
}

.video-frame__you-cam {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(135deg, #2a3142, #1a1f2b);
}

.video-frame__you-hint {
  font-size: 0.48rem;
  font-weight: 600;
  color: #fb923c;
  text-align: center;
  line-height: 1.2;
  padding: 0 4px;
}

.cam-icon {
  color: #fb923c;
  opacity: 0.95;
}

.video-frame__you--failed .cam-icon {
  color: #f87171;
}

.video-frame__you--failed .video-frame__you-hint {
  color: #f87171;
}

.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid var(--border);
}

.vctrl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
  padding: 8px 10px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.vctrl:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vctrl--cam {
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: #fdba74;
  animation: camBtnPulse 2.5s ease-in-out infinite;
}

.vctrl--cam.vctrl--failed {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.45);
  color: #fca5a5;
  animation: none;
}

.vctrl--cam.vctrl--connecting {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  animation: none;
}

.vctrl__icon-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vctrl__icon--on {
  display: none;
}

.vctrl__icon--off {
  display: block;
}

.vctrl__spinner {
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(147, 197, 253, 0.25);
  border-top-color: #93c5fd;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.vctrl__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cam-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(30, 20, 20, 0.96);
  border: 1px solid rgba(239, 68, 68, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.35s ease;
}

.cam-toast__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.cam-toast__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cam-toast__body strong {
  font-size: 0.88rem;
  color: #fecaca;
}

.cam-toast__body span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}

@keyframes camPipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.35); }
  50% { box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15); }
}

@keyframes camBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(251, 146, 60, 0); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--bg);
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: fadeUp 0.3s ease;
}

.msg--system {
  justify-content: center;
}

.msg__system {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 5px 12px;
  border-radius: 999px;
}

.msg--user {
  justify-content: flex-end;
}

.msg__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  border: 2px solid var(--border);
}

.msg__bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.msg__bubble--stranger {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.msg__bubble--user {
  background: var(--stranger);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.typing {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0 14px 8px;
}

.typing__bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.typing__bubble span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: bounce 1s ease infinite;
}

.typing__bubble span:nth-child(2) { animation-delay: 0.15s; }
.typing__bubble span:nth-child(3) { animation-delay: 0.3s; }

.cta-panel {
  padding: 0 14px 10px;
  animation: fadeUp 0.4s ease;
}

.cta-panel p {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.chat-input-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 14px calc(12px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.chat-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  min-height: 56px;
  line-height: 1.35;
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.15);
}

.sticky-cta {
  flex-shrink: 0;
  padding: 10px 14px calc(12px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: rgba(11, 13, 18, 0.98);
  backdrop-filter: blur(8px);
}

body[data-screen="chat"] .sticky-cta:not(.hidden) {
  display: block;
}

.hidden {
  display: none !important;
}

/* â”€â”€ Animations â”€â”€ */

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.08), 0 0 40px rgba(225,29,143,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 0 55px rgba(255,107,44,0.5); }
}

@keyframes orbitBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.orbit-avatar--1,
.orbit-avatar--4 {
  animation-name: orbitBobCenter;
}

@keyframes orbitBobCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes gradientShift {
  to { background-position: 200% center; }
}

@keyframes gradientBtn {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(225,29,143,0.45), 0 0 0 0 rgba(255,107,44,0.3); }
  50% { box-shadow: 0 8px 40px rgba(225,29,143,0.6), 0 0 0 8px rgba(255,107,44,0); }
}

@keyframes btnShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-4px) rotate(10deg); }
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes tickerFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-5px); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes subtleMove {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.02) translateY(-3px); }
}

/* â”€â”€ Mobile-only tuning â”€â”€ */

.topbar {
  padding-left: 14px;
  padding-right: 14px;
}

.logo--fun {
  font-size: 1rem;
}

.logo__icon {
  font-size: 1.15rem;
}

.btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--sm {
  min-height: 40px;
  padding: 8px 14px;
}

.msg__bubble {
  max-width: 85%;
  font-size: 0.95rem;
}

/* Short phones (iPhone SE, small Android) */
@media (max-height: 680px) {
  .live-preview__orbit {
    width: 118px;
    height: 118px;
    margin-bottom: 6px;
  }

  .live-preview__core {
    width: 62px;
    height: 62px;
  }

  .orbit-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .landing__hero--fun h1 {
    font-size: 1.65rem;
  }

  .hero-badge {
    margin-bottom: 6px;
    padding: 5px 12px;
  }

  .stats-row--fun {
    margin-bottom: 10px;
  }

  .stat--fun {
    padding: 10px 4px 8px;
  }

  .pref-card--fun {
    padding: 14px;
    margin-bottom: 12px;
  }

  .btn--start-fun__content {
    padding: 14px 20px;
    font-size: 1.05rem;
  }

  .trust-row {
    margin-top: 10px;
    gap: 8px;
  }

  .legal {
    margin-top: 8px;
  }
}

/* Very narrow phones */
@media (max-width: 360px) {
  .pill {
    font-size: 0.72rem;
    padding: 12px 2px;
  }

  .live-pill--fun {
    font-size: 0.68rem;
  }

  .stats-row {
    gap: 6px;
  }
}

/* Wider screens: phone shell only (still mobile layout) */
@media (min-width: 431px) {
  body {
    background: #050508;
  }

  body::before {
    opacity: 0.15;
  }
}

/* ==========================================================================
   MIX THEME (--mix)
   ========================================================================== */

.topbar--mix {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding-top: calc(10px + var(--safe-top));
  padding-left: 14px;
  padding-right: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 20, 0.8);
  backdrop-filter: blur(10px);
}

.logo--mix {
  font-family: "Nunito", var(--font);
  font-weight: 800;
  font-size: 1.2rem;
}

.live-pill--mix {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 10px;
}

.landing--mix {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 6px 16px calc(16px + var(--safe-bottom));
}

.landing__hero--mix {
  text-align: center;
  margin-bottom: 16px;
  padding-top: 10px;
}

.hero-badge--mix {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  font-weight: 700;
  border-radius: 999px;
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.landing__hero--mix h1 {
  margin: 0 0 10px;
  font-family: "Nunito", var(--font);
  font-size: clamp(1.8rem, 6.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
}

.gradient-text-mix {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.activity-ticker--mix {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.stats-row--mix {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.stat--mix {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat--mix .stat__emoji {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.stat--mix .stat__value {
  font-size: 1.05rem;
  font-weight: 700;
}

.stat--mix .stat__label {
  font-size: 0.7rem;
  color: #a1a1aa;
}

.pref-card--mix {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.pref-card--mix h2 {
  font-family: "Nunito", var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px;
  text-align: center;
}

.pill--mix {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 600;
}

.pill--mix.pill--active {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-color: transparent;
  color: #fff;
}

.fun-toggle--mix {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.fun-toggle--mix input:checked ~ .fun-toggle__track {
  background: #8b5cf6;
}

.btn--start-mix {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-row--mix {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 0.8rem;
}

.chat-header--mix {
  background: rgba(10, 12, 20, 0.9);
  backdrop-filter: blur(10px);
}

.chat-header__status--mix {
  background: #8b5cf6;
  box-shadow: 0 0 8px #8b5cf6;
}

.chat-input--mix {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.connecting--mix .connecting__ring--mix {
  border-color: rgba(139, 92, 246, 0.2);
}

.connecting--mix .connecting__spinner--mix {
  border-top-color: #8b5cf6;
}

/* ── Themed scrollbars (chat log + landing) ── */
.chat-log,
.landing,
.landing--fun,
.landing--mix {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.chat-log::-webkit-scrollbar,
.landing::-webkit-scrollbar,
.landing--fun::-webkit-scrollbar,
.landing--mix::-webkit-scrollbar {
  width: 8px;
}
.chat-log::-webkit-scrollbar-track,
.landing::-webkit-scrollbar-track,
.landing--fun::-webkit-scrollbar-track,
.landing--mix::-webkit-scrollbar-track {
  background: transparent;
}
.chat-log::-webkit-scrollbar-thumb,
.landing::-webkit-scrollbar-thumb,
.landing--fun::-webkit-scrollbar-thumb,
.landing--mix::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 8px;
}
.chat-log::-webkit-scrollbar-thumb:hover,
.landing::-webkit-scrollbar-thumb:hover,
.landing--fun::-webkit-scrollbar-thumb:hover,
.landing--mix::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ── Live chat: media messages, voice notes, photo attach ── */
.btn--attach {
  width: 46px;
  height: 56px;
  min-width: 46px;
  flex-shrink: 0;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn--attach:hover { color: var(--accent); }
.chat-file-input { display: none; }

.msg__bubble.msg__media {
  padding: 4px;
  overflow: hidden;
  line-height: 0;
}
.msg__img,
.msg__video {
  display: block;
  max-width: 230px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.voice-note {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  max-width: 270px;
}
.voice-note__btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.voice-note__wave {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 26px;
  overflow: hidden;
}
.voice-note__wave i {
  flex: 1;
  min-width: 2px;
  background: var(--text-muted);
  opacity: 0.45;
  border-radius: 2px;
}
.voice-note__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 4px;
  transition: width 0.15s linear;
  pointer-events: none;
}
.voice-note__time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 30px;
  text-align: right;
}
