:root {
  --bg-color: #111111;
  --bg-card: #1b1b1b;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-active: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --red-reject: #ef4444;
  --green-accept: #10b981;
  --pink-heart: #f43f5e;
  --font-main: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Subtle ambient spotlight in background */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   RECORDING STUDIO CONTROLS (Sticky Sidebar - Centered in Middle)
   ========================================================================== */
.studio-controls {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px 20px;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: none;
}

.studio-controls::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   GLOBAL SWIPE TRACKER (Directly on Screen - No Container, No Icons, Reduced Compact Size)
   ========================================================================== */
.global-swipe-tracker {
  position: fixed;
  left: 32px;
  bottom: 24px;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0;
  border-radius: 0 !important;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 3px;
  user-select: none;
}

.raw-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #71717a;
  line-height: 1.2;
}

.raw-count-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
}

.tracker-number {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), color 0.18s ease;
}

.tracker-number.bump-like {
  transform: scale(1.1);
  color: #34d399;
}

.tracker-number.bump-pass {
  transform: scale(1.1);
  color: #f87171;
}

.raw-label {
  font-size: 11.5px;
  color: #a1a1aa;
  font-weight: 500;
}

.tracker-plus-one {
  position: absolute;
  left: 30px;
  top: -6px;
  font-size: 11px;
  font-weight: 800;
  color: #10b981;
  opacity: 0;
  transform: translateY(3px);
  pointer-events: none;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.tracker-plus-one.pop {
  opacity: 1;
  transform: translateY(-6px);
}

.raw-stats-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #a1a1aa;
  margin-top: 1px;
}

.raw-stats-row strong {
  color: #ffffff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.raw-sep {
  color: #52525b;
}

.raw-ticker-text {
  font-size: 10.5px;
  color: #71717a;
  margin-top: 1px;
}

.controls-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.controls-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #d4d4d8;
}

.controls-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.control-btn.primary {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.35);
}

.control-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.5);
}

.control-btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.controls-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #a1a1aa;
  cursor: pointer;
}

.toggle-item input[type="checkbox"] {
  accent-color: #f43f5e;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.sound-preview-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.sound-test-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #d4d4d8;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.sound-test-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.sound-test-btn:active {
  transform: scale(0.96);
}

.sound-test-btn.test-nope:hover {
  border-color: rgba(239, 68, 68, 0.45);
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
}

.sound-test-btn.test-like:hover {
  border-color: rgba(244, 63, 94, 0.45);
  color: #fb7185;
  background: rgba(244, 63, 94, 0.12);
}

.controls-gender-switch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gender-switch-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a1a1aa;
}

.gender-btn-group {
  display: flex;
  gap: 8px;
}

.gender-quick-btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #d4d4d8;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.gender-quick-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.gender-quick-btn.active {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  border-color: #f43f5e;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
}

/* ==========================================================================
   GENDER ONBOARDING MODAL
   ========================================================================== */
.gender-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.gender-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gender-modal-card {
  width: 100%;
  max-width: 330px;
  background: linear-gradient(180deg, rgba(30, 30, 35, 0.95) 0%, rgba(18, 18, 22, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px 22px 28px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(244, 63, 94, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gender-modal-flame {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.18) 0%, rgba(225, 29, 72, 0.08) 100%);
  border: 1px solid rgba(244, 63, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f43f5e;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 16px rgba(244, 63, 94, 0.4));
  animation: pulseFlame 2.2s infinite ease-in-out;
}

@keyframes pulseFlame {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.gender-modal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.gender-modal-subtitle {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.45;
  margin: 0 0 24px 0;
  max-width: 250px;
}

.gender-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gender-option-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.gender-option-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 63, 94, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.2);
}

.gender-option-card:active {
  transform: scale(0.98);
}

.gender-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.female-avatar {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(219, 39, 119, 0.1) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.male-avatar {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.gender-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gender-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.gender-sub {
  font-size: 11.5px;
  color: #a1a1aa;
}

.gender-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

/* ==========================================================================
   APP VIEWPORT (Mobile Canvas)
   ========================================================================== */
.app-viewport {
  position: relative;
  width: 395px;
  height: 825px;
  background-color: #121212;
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.app-viewport.without-frame {
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.app-viewport.without-frame .phone-status-bar,
.app-viewport.without-frame .phone-home-bar {
  display: none;
}

/* Phone Status Bar (Authentic iOS Dynamic Island look) */
.phone-status-bar {
  position: relative;
  height: 48px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  z-index: 50;
}

.status-time {
  font-variant-numeric: tabular-nums;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.2px;
  color: #ffffff;
}

.status-island {
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  width: 104px;
  height: 26px;
  background: #000000;
  border-radius: 20px;
  pointer-events: none;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
}

.status-icon {
  display: block;
  color: #ffffff;
}

.pill-fire-icon {
  color: #f43f5e;
  filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.5));
}

/* ==========================================================================
   HEADER (UGCPilot matching pill style)
   ========================================================================== */
.app-header {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
}

.header-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-fire {
  font-size: 14px;
}

.pill-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #f4f4f5;
}

.header-action-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.header-action-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-accept);
  box-shadow: 0 0 8px var(--green-accept);
}

/* ==========================================================================
   CARD STACK CONTAINER
   ========================================================================== */
.card-stack-container {
  flex: 1;
  position: relative;
  margin: 6px 20px 10px 20px;
  perspective: 1000px;
}

/* SWIPE CARD */
.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  cursor: grab;
  will-change: transform, opacity;
  transform-origin: 50% 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.swipe-card.dragging {
  cursor: grabbing;
  transition: none !important;
}

/* Stack depth styling */
.swipe-card:nth-last-child(1) {
  z-index: 3;
  transform: translateY(0) scale(1);
}

.swipe-card:nth-last-child(2) {
  z-index: 2;
  transform: translateY(12px) scale(0.96);
  opacity: 0.85;
}

.swipe-card:nth-last-child(3) {
  z-index: 1;
  transform: translateY(24px) scale(0.92);
  opacity: 0.65;
}

.card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Dark gradient overlay on bottom of card */
.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0) 75%
  );
  pointer-events: none;
}

/* Card Content Overlay */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.card-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3.5px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.card-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.card-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.card-age {
  font-size: 23px;
  font-weight: 400;
  color: #f4f4f5;
}

.card-verified {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  color: #38bdf8;
}

.card-subtitle {
  font-size: 13.5px;
  font-weight: 500;
  color: #d4d4d8;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
}

.card-bio {
  font-size: 13.5px;
  font-weight: 400;
  color: #f4f4f5;
  line-height: 1.4;
  margin-top: 2px;
}

/* STAMPS / BADGES (LIKE & NOPE) */
.stamp-badge {
  position: absolute;
  top: 36px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.stamp-badge.nope {
  right: 24px;
  color: var(--red-reject);
  border: 4px solid var(--red-reject);
  transform: rotate(18deg) scale(0.85);
}

.stamp-badge.like {
  left: 24px;
  color: var(--green-accept);
  border: 4px solid var(--green-accept);
  transform: rotate(-18deg) scale(0.85);
}

/* ==========================================================================
   REVEAL CONTAINER (Transition screen)
   ========================================================================== */
.reveal-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  text-align: center;
  background-color: #121212;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 25;
}

.reveal-container.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.reveal-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: 30%;
  pointer-events: none;
}

.reveal-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #fb7185;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.reveal-headline {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
}

.reveal-subheadline {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.45;
  max-width: 280px;
  margin-bottom: 24px;
}

.reveal-metric-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 28px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-num {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.metric-lbl {
  font-size: 10.5px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.reveal-cta {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  transition: transform 0.2s ease;
  font-family: inherit;
}

.reveal-cta:hover {
  transform: scale(1.02);
}

.reveal-secondary-btn {
  background: none;
  border: none;
  color: #71717a;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.reveal-secondary-btn:hover {
  color: #e4e4e7;
}

/* ==========================================================================
   BOTTOM ACTION BUTTONS (UGCPilot circular glassmorphism style)
   ========================================================================== */
.app-footer {
  padding: 8px 36px 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 40;
}

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

.action-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.action-btn:hover {
  transform: scale(1.08);
  background: var(--glass-active);
}

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

.pass-btn {
  color: #fca5a5;
}

.pass-btn:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.like-btn {
  color: #fb7185;
}

.like-btn:hover {
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.3);
  color: #f43f5e;
}

/* Programmatic highlight effect during automated playback */
.action-btn.btn-active-glow-pass {
  transform: scale(1.15) !important;
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.6) !important;
  color: #ef4444 !important;
}

.action-btn.btn-active-glow-like {
  transform: scale(1.15) !important;
  background: rgba(244, 63, 94, 0.25) !important;
  border-color: #f43f5e !important;
  box-shadow: 0 0 35px rgba(244, 63, 94, 0.6) !important;
  color: #f43f5e !important;
}

.action-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #71717a;
  letter-spacing: 0.2px;
}

/* Phone Home Indicator Bar */
.phone-home-bar {
  width: 130px;
  height: 4.5px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin: 0 auto 8px auto;
  z-index: 50;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .studio-controls {
    position: static;
    transform: none;
    width: 395px;
    margin-bottom: 20px;
  }

  .global-swipe-tracker {
    position: static;
    width: 395px;
    margin-top: 16px;
    margin-bottom: 20px;
  }

  body {
    flex-direction: column;
    padding: 20px 0;
    overflow-y: auto;
  }
}
