* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --obsidian: #0B0B0D;
  --graphite: #1A1B1F;
  --graphite-soft: #23242A;
  --violet: #6E5CFF;
  --violet-light: #9D6BFF;
  --cyan: #37D7FF;
  --message-blue: #5FA8FF;
  --event-gold: #D8B56D;
  --ice: #F6F7FB;
  --chrome: #C4C8D4;
  --chrome-dark: #7F8492;
  --premium-gradient: linear-gradient(135deg, #6E5CFF 0%, #9D6BFF 45%, #37D7FF 100%);
  --primary-dark: var(--obsidian);
  --secondary-dark: var(--graphite);
  --tertiary-dark: var(--graphite-soft);
  --gold: var(--violet);
  --gold-light: var(--violet-light);
  --red: var(--violet);
  --red-dark: #5B3EE8;
  --green: var(--cyan);
  --text-light: var(--ice);
  --text-muted: #9DA1AE;
  --border-dark: rgba(246, 247, 251, 0.1);
  --browser-nav-clearance: 78px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  overflow: hidden;
}

.desktop-layout {
  display: flex;
  width: 100vw;
  height: 100vh;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #111 100%);
  align-items: center;
  overflow: auto;
}

/* ============ SIDEBARS ============ */
.sidebar {
  width: 280px;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 30px 20px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* Left Sidebar */
.left-sidebar {
  margin-right: auto;
}

.sidebar-branding {
  text-align: center;
  margin-bottom: 30px;
}

.logo-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.tagline {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
}

.heart-icon {
  text-align: center;
  font-size: 48px;
  margin: 20px 0;
  filter: drop-shadow(0 0 8px rgba(231, 76, 60, 0.4));
}

.discover-section {
  margin-bottom: 40px;
}

.discover-section h3 {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.discover-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discover-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.discover-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.discover-item .icon {
  font-size: 18px;
}

.discover-item .badge {
  margin-left: auto;
  background: var(--red);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.discover-item .badge.new {
  background: rgba(231, 76, 60, 0.3);
  border: 1px solid var(--red);
  color: var(--red);
}

.filters-section {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filters-header h3 {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

.filter-icon {
  font-size: 16px;
  cursor: pointer;
}

.filter-item {
  margin-bottom: 20px;
}

.filter-item label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.distance-labels,
.age-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.slider {
  width: 100%;
  height: 4px;
  background: var(--tertiary-dark);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.body-type-icons {
  display: flex;
  gap: 8px;
}

.body-icon {
  flex: 1;
  padding: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.body-icon:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.looking-for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s;
}

.tag:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.apply-filters-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.apply-filters-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* Right Sidebar */
.right-sidebar {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.match-panel {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.match-header {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.match-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  border: 2px solid var(--gold);
}

.heart-divider {
  font-size: 32px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.match-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.match-btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.match-btn.primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.match-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.match-btn.secondary {
  background: rgba(212, 175, 55, 0.1);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.match-btn.secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.premium-panel {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.premium-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.premium-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
}

.premium-features {
  list-style: none;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-light);
}

.premium-features li {
  padding: 6px 0;
}

.upgrade-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.online-panel {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.online-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.see-all {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.3s;
}

.see-all:hover {
  color: var(--gold);
}

.online-avatars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.online-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  border: 2px solid var(--gold);
  transition: all 0.3s;
}

.online-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 2px solid var(--secondary-dark);
  border-radius: 50%;
}

.online-avatar:hover {
  transform: scale(1.1);
}

/* ============ PHONE FRAME ============ */
.phone-frame {
  width: 420px;
  height: min(820px, calc(100vh - 40px));
  min-height: 620px;
  background: #000;
  border: 12px solid #1a1a1a;
  border-radius: 50px;
  box-shadow: 
    0 0 0 1px #333,
    0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 25px;
  background: #000;
  border-radius: 0 0 30px 30px;
  border: 1px solid #333;
  z-index: 10;
}

.phone-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--primary-dark);
  margin-top: 12px;
  position: relative;
}

/* App Header */
.app-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(0, 0, 0, 0.5);
}

.header-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
}

.header-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.logo-gold {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Tabs */
.tabs-container {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-dark);
}

.tab {
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.tab:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.tab.active {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: var(--red);
  color: white;
}

.premium-tab {
  margin-left: auto;
}

.premium-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: var(--gold);
  color: #000;
}

/* Main App Area */
.app-main {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px;
  padding-bottom: 92px;
  background: var(--primary-dark);
}

.app-main::-webkit-scrollbar {
  width: 4px;
}

.app-main::-webkit-scrollbar-track {
  background: transparent;
}

.app-main::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* Profile Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 4px;
}

.profile-card {
  position: relative;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  group: "card";
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(231, 76, 60, 0.2));
  z-index: 1;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.profile-card:hover::before {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(231, 76, 60, 0.3));
}

.profile-card.is-locked {
  cursor: not-allowed;
  filter: saturate(0.75);
}

.profile-card.is-locked::before {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.55), rgba(231, 76, 60, 0.18));
}

.profile-card.is-locked .profile-gradient {
  filter: blur(3px) brightness(0.55);
  transform: scale(1.03);
}

.profile-card.is-locked:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.profile-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--graphite) 58%, var(--violet) 140%);
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 2;
  color: white;
}

.profile-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.profile-distance {
  font-size: 11px;
  color: var(--text-muted);
}

.profile-status {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid white;
  z-index: 3;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}

.profile-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.profile-heart:hover {
  animation: heartBeat 0.6s;
}

.profile-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Bottom Navigation */
.app-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 8px 10px;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-dark);
  gap: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 78px;
  z-index: 1200;
  flex-shrink: 0;
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.72);
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 9px;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s;
  position: relative;
  padding: 8px 2px;
  min-width: 0;
  height: 58px;
}

.nav-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-label {
  font-size: 7.5px;
  letter-spacing: 0.4px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-btn:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
}

.nav-btn.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.nav-btn:hover .nav-icon,
.nav-btn.active .nav-icon {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 9px rgba(var(--nav-rgb, 110, 92, 255), 0.68));
}

.nav-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--red);
  color: white;
  font-size: 7px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Functional prototype screens */
.screen-panel,
.chat-screen,
.live-connected {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-panel {
  padding: 4px;
}

.screen-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.screen-title {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.screen-copy,
.muted-line {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.conversation-list,
.event-list,
.premium-list,
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conversation-item,
.feed-item,
.event-card,
.safety-card,
.reveal-card,
.premium-status,
.settings-card,
.outcome-table,
.text-live-card {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.activity-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(231, 76, 60, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.activity-summary strong {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 16px;
}

.activity-summary span {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
}

.activity-summary button,
.feed-actions button {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.activity-summary button {
  padding: 8px 9px;
}

.feed-item {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.feed-item.is-unread {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.1);
}

.feed-main {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px 8px;
  border: none;
  background: transparent;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
}

.feed-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 23px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.feed-body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.feed-topline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.feed-topline strong {
  color: var(--gold);
  font-size: 13px;
}

.feed-topline em {
  color: var(--text-muted);
  font-size: 10px;
  font-style: normal;
  white-space: nowrap;
}

.feed-text {
  color: var(--text-light);
  font-size: 12px;
}

.feed-detail {
  color: var(--text-muted);
  font-size: 10.5px;
  line-height: 1.35;
}

.feed-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.7);
}

.feed-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 10px 10px 64px;
}

.feed-actions button {
  padding: 7px 4px;
}

.conversation-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--text-light);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
}

.conversation-item:hover,
.pill-button:hover,
.mode-button:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.14);
}

.conversation-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.conversation-avatar-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.reaction-mini {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(246, 247, 251, 0.18);
  background: rgba(11, 11, 13, 0.88);
  color: var(--ice);
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 0 12px rgba(110, 92, 255, 0.28);
}

.reaction-mini.is-corner {
  position: absolute;
  right: -3px;
  bottom: -2px;
  z-index: 2;
}

.reaction-mini.is-large {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  font-size: 13px;
  background: linear-gradient(135deg, rgba(110, 92, 255, 0.34), rgba(55, 215, 255, 0.14));
  box-shadow: 0 0 18px rgba(110, 92, 255, 0.36);
}

.conversation-reaction-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  margin-top: 3px;
  color: var(--violet-light);
}

.conversation-reaction-line .reaction-mini {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  font-size: 8px;
}

.conversation-reaction-line small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
}

.conversation-body {
  min-width: 0;
  flex: 1;
}

.conversation-topline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.conversation-topline em,
.conversation-preview {
  color: var(--text-muted);
  font-size: 11px;
  font-style: normal;
}

.conversation-preview {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
}

.online-dot.is-online {
  background: var(--green);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
}

.chat-screen {
  padding: 0;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dark);
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header small {
  color: var(--text-muted);
  font-size: 10px;
}

.chat-identity {
  min-width: 0;
  flex: 1;
}

.chat-reaction-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  margin-top: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(110, 92, 255, 0.26);
  background: rgba(110, 92, 255, 0.1);
  color: var(--ice);
}

.chat-reaction-copy {
  min-width: 0;
}

.chat-reaction-card strong,
.chat-reaction-card small {
  display: block;
}

.chat-reaction-card strong {
  font-size: 11px;
}

.chat-reaction-card small {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.3;
}

.signal-reply-panel,
.signal-reply-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.signal-reply-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-reply-btn,
.signal-reply-state {
  border-radius: 10px;
  border: 1px solid rgba(246, 247, 251, 0.1);
  background: rgba(246, 247, 251, 0.055);
  color: var(--ice);
}

.signal-reply-btn {
  min-height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
}

.signal-reply-btn:hover {
  transform: translateY(-1px);
  background: rgba(110, 92, 255, 0.14);
  border-color: rgba(110, 92, 255, 0.42);
}

.signal-reply-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.signal-reply-icon.is-yes {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.13);
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.28);
}

.signal-reply-icon.is-maybe {
  color: #ffb057;
  background: rgba(255, 176, 87, 0.13);
  box-shadow: 0 0 12px rgba(255, 176, 87, 0.28);
}

.signal-reply-icon.is-no {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.13);
  box-shadow: 0 0 12px rgba(231, 76, 60, 0.26);
}

.signal-reply-btn small {
  color: var(--ice);
  font-size: 9px;
  font-weight: 800;
}

.signal-reply-state {
  min-height: 34px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  padding: 6px 8px;
}

.signal-reply-state small {
  color: var(--text-light);
  font-weight: 800;
}

.icon-button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  cursor: pointer;
}

.message-thread {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 2px;
}

.message-row {
  display: flex;
}

.message-row span {
  max-width: 74%;
  padding: 8px 11px;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.35;
}

.message-row.is-you {
  justify-content: flex-end;
}

.message-row.is-you span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
}

.message-row.is-other span {
  background: rgba(212, 175, 55, 0.11);
  color: var(--text-light);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.message-composer {
  display: flex;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px solid var(--border-dark);
}

.message-composer input {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 9px;
  background: rgba(212, 175, 55, 0.06);
  color: var(--text-light);
}

.message-composer button,
.primary-action,
.live-start-button {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.message-composer button {
  padding: 0 13px;
}

.event-card {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.event-card h3 {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 4px;
}

.event-card p,
.event-card small,
.premium-list p,
.outcome-table p {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.event-card button,
.pill-button,
.mode-button,
.secondary-action,
.danger-action,
.reveal-card button,
.live-actions button {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 9px;
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.event-card button {
  padding: 8px 12px;
  min-width: 70px;
}

.event-card button.joined,
.premium-status.is-premium {
  border-color: var(--green);
  color: var(--green);
  background: rgba(46, 204, 113, 0.12);
}

.pill-row,
.mode-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill-button {
  padding: 7px 10px;
  font-size: 11px;
}

.pill-button.active,
.mode-button.active {
  color: #000;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.control-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-light);
  font-size: 12px;
}

.control-row.compact {
  gap: 5px;
}

.control-row strong {
  color: var(--gold);
  font-size: 12px;
}

.range-card,
.privacy-toggle,
.blocked-preview,
.privacy-explain-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.range-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.range-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.range-card strong,
.blocked-preview strong,
.privacy-explain-card strong {
  color: var(--gold);
  font-size: 12px;
}

.range-card span,
.blocked-preview p,
.privacy-explain-card p {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.privacy-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
}

.privacy-toggle input {
  accent-color: var(--gold);
}

.access-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.access-chip.allowed {
  color: var(--green);
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.38);
}

.access-chip.blocked {
  color: var(--red);
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.38);
}

.primary-action,
.secondary-action,
.danger-action,
.live-start-button {
  width: 100%;
  padding: 11px;
  font-size: 12px;
}

.danger-action {
  border-color: rgba(231, 76, 60, 0.6);
  color: var(--red);
  background: rgba(231, 76, 60, 0.12);
}

.profile-detail {
  text-align: center;
}

.profile-detail-hero {
  min-height: 230px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.profile-detail-hero span {
  font-size: 72px;
}

.profile-detail-hero.photo-hero {
  padding: 0;
  overflow: hidden;
  background: #050506;
}

.profile-detail-hero.photo-hero img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.profile-visit-actions {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: start;
  margin: -8px 0 16px;
}

.profile-icon-action,
.profile-intent-hold {
  border: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(26, 27, 31, 0.88);
  color: var(--ice);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.045),
    0 12px 28px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.profile-icon-action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 18px;
}

.profile-icon-action:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 92, 255, 0.52);
  background: rgba(110, 92, 255, 0.12);
}

.profile-icon-action.is-danger:hover {
  border-color: rgba(231, 76, 60, 0.55);
  background: rgba(231, 76, 60, 0.12);
  color: var(--red);
}

.profile-intent-wrap {
  position: relative;
  min-width: 0;
}

.profile-intent-hold {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

.profile-intent-hold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--premium-gradient);
  box-shadow: 0 0 12px rgba(110, 92, 255, 0.72);
}

.profile-intent-hold.is-holding::after {
  width: 100%;
  transition: width 0.42s linear;
}

.profile-intent-hold:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 92, 255, 0.52);
  background: rgba(110, 92, 255, 0.12);
}

.intent-orb {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--premium-gradient);
  color: var(--ice);
  box-shadow: 0 0 18px rgba(110, 92, 255, 0.34);
  font-size: 12px;
}

.profile-intent-hold strong,
.profile-intent-hold small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-intent-hold strong {
  font-size: 11px;
}

.profile-intent-hold small {
  color: var(--text-muted);
  font-size: 9px;
}

.profile-intent-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  z-index: 30;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(110, 92, 255, 0.34);
  background: rgba(11, 11, 13, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6), 0 0 24px rgba(110, 92, 255, 0.18);
  backdrop-filter: blur(18px);
}

.profile-intent-menu.active {
  display: grid;
}

.profile-intent-menu button {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 10px;
  border: 1px solid rgba(246, 247, 251, 0.1);
  background: rgba(246, 247, 251, 0.055);
  color: var(--ice);
  cursor: pointer;
}

.profile-intent-menu button:hover {
  border-color: rgba(110, 92, 255, 0.54);
  background: rgba(110, 92, 255, 0.16);
}

.profile-intent-menu button span {
  font-size: 18px;
}

.profile-intent-menu button strong {
  font-size: 10px;
}

.profile-intent-menu button small {
  color: var(--text-muted);
  font-size: 8px;
}

.profile-public-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 14px 0 4px;
}

.profile-public-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(246, 247, 251, 0.045);
}

.profile-public-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-public-photo figcaption {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  padding: 3px 4px;
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.72);
  color: var(--ice);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.profile-stat-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 10px;
  text-align: left;
}

.profile-stat-item {
  min-width: 0;
  padding: 9px 8px;
  border-radius: 10px;
  border: 1px solid rgba(110, 92, 255, 0.22);
  background: linear-gradient(135deg, rgba(246, 247, 251, 0.055), rgba(110, 92, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.045);
}

.profile-stat-item span,
.profile-stat-item strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-stat-item span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-stat-item strong {
  margin-top: 3px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 900;
}

.profile-detail h2 {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}

.profile-bio {
  color: var(--text-light);
  text-align: left;
  font-size: 13px;
  line-height: 1.55;
  margin: 18px 0;
}

.stack-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mode-button {
  min-height: 70px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
}

.safety-card,
.reveal-card,
.premium-status,
.settings-card,
.outcome-table,
.text-live-card {
  padding: 12px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.45;
}

.live-start-button {
  margin-top: auto;
  min-height: 54px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.live-searching {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.live-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 11px;
}

.live-statusbar strong {
  color: var(--gold);
}

.live-stage {
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.voice-orb {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
  animation: pulse 1.5s infinite;
}

.video-placeholder {
  width: 100%;
  min-height: 250px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(231, 76, 60, 0.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
}

.video-placeholder span {
  font-size: 64px;
}

.video-placeholder.is-hidden span {
  filter: blur(7px);
  opacity: 0.65;
}

.reveal-card strong,
.reveal-card p {
  display: block;
  margin-bottom: 5px;
}

.reveal-card p {
  color: var(--text-muted);
  font-size: 11px;
}

.reveal-card button {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
}

.live-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.live-actions button {
  padding: 9px 2px;
  font-size: 10px;
}

.outcome-table {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.outcome-table p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.outcome-table strong {
  color: var(--text-light);
}

.profile-self-hero {
  width: 112px;
  height: 112px;
  margin: 0 auto 8px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.25);
}

.profile-self-hero span {
  font-size: 54px;
}

.profile-self-hero.has-photo {
  padding: 0;
  overflow: hidden;
  background: #050506;
}

.profile-self-hero.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-hero-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
}

.profile-hero-row .profile-self-hero {
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 22px;
}

.profile-hero-row .profile-self-hero span {
  font-size: 42px;
}

.profile-hero-copy {
  min-width: 0;
}

.profile-top-photo-panel {
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(110, 92, 255, 0.12), rgba(55, 215, 255, 0.045));
  border: 1px solid rgba(110, 92, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.045),
    0 12px 32px rgba(0, 0, 0, 0.34);
}

.advanced-profile-screen {
  gap: 10px;
}

.profile-settings-group {
  padding: 12px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.065);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-visitor-preview {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(110, 92, 255, 0.24);
  background: linear-gradient(135deg, rgba(110, 92, 255, 0.12), rgba(95, 211, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.045),
    0 12px 32px rgba(0, 0, 0, 0.32);
}

.profile-visitor-preview .profile-stat-panel {
  margin-bottom: 0;
}

.settings-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.settings-heading strong,
.settings-subtitle {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.settings-heading span {
  color: var(--text-muted);
  font-size: 10px;
  text-align: right;
}

.profile-input-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
}

.profile-input-row input,
.profile-input-row textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text-light);
  padding: 9px 10px;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.profile-input-row textarea {
  min-height: 72px;
  resize: vertical;
}

.measurement-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(110, 92, 255, 0.24);
  background: rgba(246, 247, 251, 0.045);
}

.measurement-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.measurement-head strong {
  color: var(--ice);
  font-size: 12px;
}

.measurement-head label {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
}

.measurement-head input {
  width: 64px;
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 9px;
  background: rgba(11, 11, 13, 0.78);
  color: var(--ice);
  padding: 7px 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  outline: none;
}

.measurement-card small {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
}

.profile-photo-manager {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.profile-photo-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10px;
}

.profile-photo-toolbar strong {
  color: var(--ice);
  font-size: 11px;
}

.profile-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.profile-photo-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(246, 247, 251, 0.045);
}

.profile-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo-tile.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  color: rgba(246, 247, 251, 0.34);
  font-size: 11px;
  font-weight: 900;
}

.profile-photo-tile.is-primary-slot {
  border-color: rgba(110, 92, 255, 0.46);
  background: rgba(110, 92, 255, 0.09);
}

.profile-photo-tile em {
  position: absolute;
  left: 4px;
  bottom: 4px;
  padding: 3px 5px;
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.72);
  color: var(--ice);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.photo-delete-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(246, 247, 251, 0.2);
  background: rgba(5, 5, 6, 0.72);
  color: var(--ice);
  font-size: 10px;
  cursor: pointer;
}

.photo-upload-tile {
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed rgba(110, 92, 255, 0.56);
  background: rgba(110, 92, 255, 0.1);
  color: var(--ice);
  cursor: pointer;
}

.photo-upload-tile input {
  display: none;
}

.photo-upload-tile > span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--premium-gradient);
  font-size: 20px;
  font-weight: 900;
}

.photo-upload-tile strong {
  font-size: 11px;
}

.photo-upload-tile small {
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.3;
}

.photo-upload-tile.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  border-style: solid;
}

.compact-card {
  padding: 10px;
  box-shadow: none;
}

.setting-choice {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.profile-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.setting-chip {
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
}

.setting-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.setting-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border-color: var(--gold);
}

.setting-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
}

.setting-toggle strong,
.setting-toggle small {
  display: block;
}

.setting-toggle strong {
  color: var(--text-light);
  font-size: 11px;
  margin-bottom: 2px;
}

.setting-toggle small {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.35;
}

.setting-toggle em {
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(231, 76, 60, 0.14);
  color: var(--red);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.setting-toggle.active {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.1);
}

.setting-toggle.active em {
  background: rgba(46, 204, 113, 0.14);
  color: var(--green);
}

.premium-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.premium-status strong {
  color: var(--gold);
  font-size: 12px;
}

.premium-status span {
  color: var(--text-muted);
  font-size: 11px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.06);
  text-align: center;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--gold);
  font-size: 16px;
}

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

.screen-toast {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 82px;
  z-index: 200;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  font-size: 12px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s;
}

.screen-toast.active {
  opacity: 1;
  transform: translateY(0);
}

.body-icon.selected,
.looking-for-tags .tag.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border-color: var(--gold);
}

.online-avatar {
  padding: 0;
  color: #000;
}

/* App Main - adjust for bottom nav */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-bottom: 10px;
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  background: var(--secondary-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* ============ VYROO OBSIDIAN BRAND SYSTEM ============ */
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(110, 92, 255, 0.16), transparent 34%),
    var(--obsidian);
}

.desktop-layout {
  background:
    radial-gradient(circle at 50% 12%, rgba(110, 92, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #070709 0%, var(--obsidian) 48%, #111217 100%);
}

.sidebar,
.match-panel,
.premium-panel,
.online-panel,
.modal-content {
  background: rgba(26, 27, 31, 0.78);
  border-color: rgba(246, 247, 251, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.68);
}

.brand-mark {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ice);
  border: 1px solid rgba(246, 247, 251, 0.26);
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 247, 251, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(110, 92, 255, 0.28), rgba(55, 215, 255, 0.08));
  box-shadow: 0 0 26px rgba(110, 92, 255, 0.34);
  font-size: 15px;
  line-height: 1;
}

.brand-mark.small {
  width: 20px;
  height: 20px;
  margin: 0;
  font-size: 9px;
  box-shadow: 0 0 16px rgba(110, 92, 255, 0.34);
}

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

.logo-text,
.logo-gold {
  color: var(--ice);
  text-shadow:
    0 0 18px rgba(110, 92, 255, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.16);
}

.logo-text {
  letter-spacing: 4px;
}

.tagline,
.premium-title,
.premium-features,
.screen-copy,
.muted-line {
  color: rgba(246, 247, 251, 0.68);
}

.heart-icon {
  position: relative;
  height: 54px;
  margin: 18px 0 24px;
  font-size: 0;
  filter: none;
}

.heart-icon::before {
  content: "◉";
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--ice);
  background:
    linear-gradient(135deg, rgba(26, 27, 31, 0.8), rgba(35, 36, 42, 0.54)),
    var(--premium-gradient);
  border: 1px solid rgba(246, 247, 251, 0.16);
  box-shadow: 0 0 36px rgba(110, 92, 255, 0.32);
  font-size: 17px;
}

.discover-section h3,
.filters-header h3,
.online-header,
.screen-kicker,
.screen-title,
.event-card h3,
.profile-detail h2,
.settings-heading strong,
.settings-subtitle,
.range-card strong,
.blocked-preview strong,
.privacy-explain-card strong,
.premium-status strong,
.stats-grid strong {
  color: var(--ice);
}

.screen-kicker,
.filters-header h3,
.discover-section h3,
.online-header {
  color: var(--violet-light);
}

.discover-item,
.body-icon,
.tag,
.conversation-item,
.feed-item,
.event-card,
.safety-card,
.reveal-card,
.premium-status,
.settings-card,
.outcome-table,
.text-live-card,
.range-card,
.privacy-toggle,
.blocked-preview,
.privacy-explain-card,
.profile-settings-group,
.stats-grid div {
  background: rgba(26, 27, 31, 0.78);
  border-color: rgba(246, 247, 251, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.045),
    0 12px 34px rgba(0, 0, 0, 0.38);
}

.discover-item:hover,
.body-icon:hover,
.tag:hover,
.conversation-item:hover,
.pill-button:hover,
.mode-button:hover,
.setting-chip:hover,
.setting-toggle.active {
  background: rgba(110, 92, 255, 0.12);
  border-color: rgba(110, 92, 255, 0.48);
  color: var(--ice);
}

.slider::-webkit-slider-thumb,
.slider::-moz-range-thumb {
  background: var(--violet);
  box-shadow: 0 0 18px rgba(110, 92, 255, 0.58);
}

.apply-filters-btn,
.upgrade-btn,
.message-composer button,
.primary-action,
.live-start-button,
.pill-button.active,
.mode-button.active,
.setting-chip.active,
.body-icon.selected,
.looking-for-tags .tag.selected {
  background: var(--premium-gradient);
  color: var(--ice);
  border-color: rgba(246, 247, 251, 0.18);
  box-shadow: 0 14px 34px rgba(110, 92, 255, 0.28);
}

.premium-badge,
.premium-tab.active,
.premium-status.is-premium,
.premium-list p {
  color: var(--chrome);
}

.premium-tab.active,
.premium-status.is-premium {
  background: linear-gradient(135deg, rgba(196, 200, 212, 0.16), rgba(127, 132, 146, 0.08));
  border-color: rgba(196, 200, 212, 0.38);
}

.match-header {
  color: var(--violet-light);
}

.match-btn.primary {
  background: var(--premium-gradient);
  box-shadow: 0 14px 34px rgba(110, 92, 255, 0.28);
}

.match-btn.secondary,
.secondary-action,
.event-card button,
.pill-button,
.mode-button,
.danger-action,
.reveal-card button,
.live-actions button,
.activity-summary button,
.feed-actions button,
.icon-button,
.setting-chip {
  background: rgba(246, 247, 251, 0.055);
  border-color: rgba(246, 247, 251, 0.12);
  color: var(--ice);
}

.conversation-avatar,
.feed-avatar,
.avatar,
.online-avatar,
.profile-self-hero,
.activity-summary strong,
.voice-orb {
  background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-soft) 54%, var(--violet) 145%);
  border-color: rgba(246, 247, 251, 0.16);
  color: var(--ice);
  box-shadow: 0 12px 28px rgba(110, 92, 255, 0.22);
}

.phone-frame {
  background: #050506;
  border-color: #17181D;
  box-shadow:
    0 0 0 1px rgba(246, 247, 251, 0.12),
    0 34px 90px rgba(0, 0, 0, 0.84),
    0 0 55px rgba(110, 92, 255, 0.12);
}

.phone-notch,
.phone-content {
  background: var(--obsidian);
}

.app-header,
.tabs-container,
.app-nav {
  background: rgba(11, 11, 13, 0.86);
  border-color: rgba(246, 247, 251, 0.08);
  backdrop-filter: blur(20px);
}

.header-btn:hover {
  background: rgba(110, 92, 255, 0.14);
  color: var(--violet-light);
}

.tab {
  background: rgba(246, 247, 251, 0.045);
  border-color: rgba(246, 247, 251, 0.08);
}

.tab:hover,
.tab.active {
  background: rgba(110, 92, 255, 0.16);
  border-color: rgba(110, 92, 255, 0.54);
  color: var(--ice);
}

.profile-card {
  border: 1px solid rgba(246, 247, 251, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.045),
    0 16px 40px rgba(0, 0, 0, 0.56);
}

.profile-card::before {
  background: linear-gradient(135deg, rgba(110, 92, 255, 0.22), rgba(55, 215, 255, 0.06));
}

.profile-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.08),
    0 18px 44px rgba(110, 92, 255, 0.24);
}

.profile-card:hover::before {
  background: linear-gradient(135deg, rgba(110, 92, 255, 0.34), rgba(55, 215, 255, 0.1));
}

.profile-overlay {
  background: linear-gradient(to top, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.04));
}

.profile-heart {
  filter: drop-shadow(0 0 10px rgba(110, 92, 255, 0.62));
}

.profile-status,
.online-avatar::after,
.online-dot.is-online {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(55, 215, 255, 0.76);
}

.profile-lock {
  border-color: rgba(110, 92, 255, 0.38);
  color: var(--violet-light);
}

.app-nav {
  box-shadow:
    0 -18px 42px rgba(0, 0, 0, 0.76),
    inset 0 1px 0 rgba(246, 247, 251, 0.05);
}

.nav-btn:nth-child(1) { --nav-rgb: 110, 92, 255; }
.nav-btn:nth-child(2) { --nav-rgb: 216, 181, 109; }
.nav-btn:nth-child(3) { --nav-rgb: 95, 168, 255; }
.nav-btn:nth-child(4) { --nav-rgb: 55, 215, 255; }
.nav-btn:nth-child(5) { --nav-rgb: 246, 247, 251; }

.nav-btn:hover,
.nav-btn.active {
  color: rgb(var(--nav-rgb));
  background: rgba(var(--nav-rgb), 0.12);
  text-shadow: 0 0 10px rgba(var(--nav-rgb), 0.5);
  border-radius: 12px;
}

.nav-btn.active::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 20px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgb(var(--nav-rgb));
  box-shadow: 0 0 12px rgba(var(--nav-rgb), 0.72);
}

.message-row.is-you span {
  background: linear-gradient(135deg, var(--message-blue), var(--violet));
  color: var(--ice);
}

.message-row.is-other span,
.message-composer input,
.profile-input-row input,
.profile-input-row textarea,
.setting-toggle {
  background: rgba(246, 247, 251, 0.045);
  border-color: rgba(246, 247, 251, 0.12);
}

.event-card h3 {
  color: var(--event-gold);
}

.event-card button.joined {
  border-color: rgba(216, 181, 109, 0.5);
  color: var(--event-gold);
  background: rgba(216, 181, 109, 0.12);
}

.live-statusbar strong,
.video-placeholder span {
  color: var(--cyan);
}

.spinner {
  border-color: rgba(55, 215, 255, 0.18);
  border-top-color: var(--cyan);
}

.voice-orb {
  background: linear-gradient(135deg, #102129, var(--cyan));
  box-shadow: 0 0 38px rgba(55, 215, 255, 0.34);
}

.video-placeholder {
  border-color: rgba(55, 215, 255, 0.22);
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.92), rgba(55, 215, 255, 0.08));
}

.screen-toast {
  background: rgba(26, 27, 31, 0.94);
  border-color: rgba(110, 92, 255, 0.38);
  color: var(--ice);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 24px rgba(110, 92, 255, 0.2);
}

.auth-screen {
  min-height: 100%;
  justify-content: center;
  gap: 14px;
  padding: 14px 6px 96px;
}

.auth-brand-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(110, 92, 255, 0.22), transparent 58%),
    rgba(26, 27, 31, 0.82);
  border: 1px solid rgba(246, 247, 251, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(246, 247, 251, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.auth-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ice);
  border: 1px solid rgba(246, 247, 251, 0.28);
  background: var(--premium-gradient);
  box-shadow: 0 0 28px rgba(110, 92, 255, 0.38);
}

.auth-brand-card strong {
  color: var(--ice);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
}

.auth-brand-card small,
.auth-note {
  color: rgba(246, 247, 251, 0.62);
  font-size: 10.5px;
  line-height: 1.4;
}

.auth-provider-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-provider {
  min-height: 43px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(246, 247, 251, 0.055);
  color: var(--ice);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  text-align: left;
  transition: all 0.25s;
}

.auth-provider span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--ice);
  background: rgba(246, 247, 251, 0.08);
  font-weight: 900;
}

.auth-provider:hover {
  border-color: rgba(110, 92, 255, 0.48);
  background: rgba(110, 92, 255, 0.12);
  box-shadow: 0 12px 28px rgba(110, 92, 255, 0.16);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  color: rgba(246, 247, 251, 0.52);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(246, 247, 251, 0.1);
}

.ghost-action {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid rgba(246, 247, 251, 0.14);
  background: transparent;
  color: rgba(246, 247, 251, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.ghost-action:hover {
  color: var(--ice);
  border-color: rgba(55, 215, 255, 0.34);
  background: rgba(55, 215, 255, 0.07);
}

.onboarding-screen {
  min-height: 100%;
  justify-content: center;
  gap: 14px;
  padding: 14px 6px 96px;
}

.auth-brand-card.compact {
  min-height: 104px;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.onboarding-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.12);
}

.onboarding-progress span.active {
  background: var(--premium-gradient);
  box-shadow: 0 0 14px rgba(110, 92, 255, 0.4);
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(55, 215, 255, 0.14), transparent 60%),
    rgba(26, 27, 31, 0.82);
  border: 1px solid rgba(246, 247, 251, 0.12);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.05);
}

.location-card strong {
  color: var(--ice);
  font-size: 13px;
}

.location-card span {
  color: rgba(246, 247, 251, 0.62);
  font-size: 10.5px;
  line-height: 1.4;
}

.onboarding-chip-grid {
  gap: 8px;
}

.onboarding-chip-grid .setting-chip {
  min-height: 38px;
  padding-inline: 12px;
}

::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb,
.app-main::-webkit-scrollbar-thumb {
  background: rgba(110, 92, 255, 0.45);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(110, 92, 255, 0.68);
}

/* Responsive */
@media (max-width: 1400px) {
  .desktop-layout {
    flex-direction: column;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
    max-width: none;
  }

  .phone-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    min-height: 100dvh;
    overflow: hidden;
  }

  .desktop-layout {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .phone-frame {
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: 0;
    height: 100dvh;
    min-height: 0;
  }

  .phone-content {
    height: 100%;
    border-radius: 0;
  }

  .app-main {
    padding-bottom: calc(176px + env(safe-area-inset-bottom, 0px));
  }

  .app-nav {
    left: 12px;
    right: 12px;
    bottom: calc(var(--browser-nav-clearance) + env(safe-area-inset-bottom, 0px));
    width: auto;
    height: 72px;
    padding: 7px 8px 9px;
    border: 1px solid rgba(246, 247, 251, 0.1);
    border-radius: 20px;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.62),
      0 0 30px rgba(110, 92, 255, 0.14),
      inset 0 1px 0 rgba(246, 247, 251, 0.07);
  }

  .screen-toast {
    bottom: calc(var(--browser-nav-clearance) + 86px + env(safe-area-inset-bottom, 0px));
  }

  .sidebar {
    display: none;
  }
}
