* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  overflow: hidden;
  background: #050010;
  font-family: system-ui, -apple-system, sans-serif;
  color: #e0e0e0;
  cursor: default;
}

/* ── Room container = viewport = front face of box ── */
#room {
  position: fixed;
  inset: 0;
  perspective: 800px;
  perspective-origin: 50% 50%;
  overflow: hidden;
}

#box {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}
#box > * {
  pointer-events: auto;
}

/* ── Walls ───────────────────────────────────────── */
.wall {
  position: absolute;
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Back wall — gradient wallpaper with subtle grid */
.wall-back {
  inset: 0;
  transform: translateZ(calc(var(--depth) * -1));
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(80,100,200,0.06) 79px, rgba(80,100,200,0.06) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(80,100,200,0.06) 79px, rgba(80,100,200,0.06) 80px),
    radial-gradient(ellipse at 30% 20%, rgba(60, 0, 160, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 60, 180, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(40, 0, 120, 0.2) 0%, transparent 70%),
    linear-gradient(180deg, #0c0028 0%, #0a0030 30%, #060028 60%, #040020 100%);
}

/* Left wall — cooler tone */
.wall-left {
  top: 0; bottom: 0; left: 0;
  width: calc(var(--depth) + 2px);
  transform-origin: left center;
  transform: rotateY(90deg);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(60,80,200,0.05) 79px, rgba(60,80,200,0.05) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(60,80,200,0.05) 79px, rgba(60,80,200,0.05) 80px),
    radial-gradient(ellipse at 70% 40%, rgba(0, 40, 160, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #080030 0%, #060040 50%, #040028 100%);
}

/* Right wall — warmer purple */
.wall-right {
  top: 0; bottom: 0; right: 0;
  width: calc(var(--depth) + 2px);
  transform-origin: right center;
  transform: rotateY(-90deg);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(80,60,200,0.05) 79px, rgba(80,60,200,0.05) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(80,60,200,0.05) 79px, rgba(80,60,200,0.05) 80px),
    radial-gradient(ellipse at 30% 60%, rgba(80, 0, 160, 0.3) 0%, transparent 60%),
    linear-gradient(225deg, #0a0030 0%, #080040 50%, #040028 100%);
}

/* Floor — polished dark surface with reflection gradient */
.wall-floor {
  left: 0; right: 0; bottom: 0;
  height: calc(var(--depth) + 2px);
  transform-origin: center bottom;
  transform: rotateX(90deg);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(40,80,200,0.08) 79px, rgba(40,80,200,0.08) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(40,80,200,0.08) 79px, rgba(40,80,200,0.08) 80px),
    radial-gradient(ellipse at 50% 10%, rgba(80, 120, 255, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 20, 80, 0.3) 0%, transparent 70%),
    linear-gradient(180deg, #020010 0%, #030020 40%, #040030 100%);
}

/* Ceiling — ambient glow from above */
.wall-ceiling {
  left: 0; right: 0; top: 0;
  height: calc(var(--depth) + 2px);
  transform-origin: center top;
  transform: rotateX(-90deg);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(50,40,160,0.04) 79px, rgba(50,40,160,0.04) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(50,40,160,0.04) 79px, rgba(50,40,160,0.04) 80px),
    radial-gradient(ellipse at 50% 80%, rgba(100, 80, 220, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(40, 0, 100, 0.15) 0%, transparent 70%),
    linear-gradient(0deg, #050018 0%, #030010 100%);
}

/* ── Subtle edge lines where walls meet ──────────── */

.wall-back::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,140,255,0.3), transparent);
}
.wall-back::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80,100,200,0.2), transparent);
}
.wall-back {
  box-shadow:
    inset 1px 0 8px -2px rgba(80, 60, 180, 0.25),
    inset -1px 0 8px -2px rgba(80, 60, 180, 0.25);
}

.wall-left::before {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(80,100,255,0.3), transparent);
}
.wall-left::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60,80,200,0.2), transparent);
}

.wall-right::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(100,80,255,0.3), transparent);
}
.wall-right::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80,60,200,0.2), transparent);
}

.wall-floor::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60,120,255,0.3), transparent);
}
.wall-floor::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(60,120,255,0.2), transparent);
}

.wall-ceiling::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60,40,160,0.2), transparent);
}
.wall-ceiling::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(60,40,160,0.2), transparent);
}

/* ── Desktop icons ───────────────────────────────── */
#desktop-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.desktop-icon {
  position: absolute;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 6px;
  border-radius: 10px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.15s;
  pointer-events: auto;
}
.desktop-icon:hover {
  background: rgba(255, 255, 255, 0.06);
}
.element-clone {
  pointer-events: none !important;
}

.desktop-icon-trash-hover {
  background: rgba(255, 80, 80, 0.2) !important;
  border: 1px solid rgba(255, 80, 80, 0.4);
  margin: -1px;
}

.desktop-icon-selected {
  background: rgba(100, 160, 255, 0.15) !important;
  border: 1px solid rgba(100, 160, 255, 0.3);
  margin: -1px;
  z-index: 10;
}

/* Selection rectangle */
.selection-rect {
  position: fixed;
  border: 1px solid rgba(100, 160, 255, 0.5);
  background: rgba(100, 160, 255, 0.08);
  z-index: 50;
  pointer-events: none;
}

.desktop-icon-img {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.desktop-icon-img svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.desktop-icon-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Menu bar (on back wall) ─────────────────────── */
#menubar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(10, 10, 30, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 6;
  font-size: 13px;
  font-family: system-ui, -apple-system, sans-serif;
}
.menubar-left, .menubar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menubar-logo {
  opacity: 0.7;
  display: flex;
  align-items: center;
}

.menubar-logo svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.menubar-app {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.menubar-item {
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  transition: color 0.15s;
}
.menubar-item:hover {
  color: rgba(255, 255, 255, 0.8);
}
.menubar-menu {
  cursor: default;
}
.menubar-menu:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  margin: -2px -6px;
}

/* Menu dropdowns */
.menubar-dropdown {
  position: fixed;
  z-index: 100;
  min-width: 200px;
  background: rgba(15, 15, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-size: 13px;
}
.menubar-dropdown .ctx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
  transition: background 0.1s;
}
.menubar-dropdown .ctx-item:hover:not(.ctx-disabled) {
  background: rgba(100, 160, 255, 0.2);
  color: #fff;
}
.menu-shortcut {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 24px;
}

/* Shortcut help rows */
.shortcut-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.shortcut-row:last-of-type { border-bottom: none; }
.shortcut-key {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}
.menubar-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: background 0.15s;
  color: rgba(255,255,255,0.5);
}
.menubar-search:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.menubar-search svg { stroke: currentColor; }

.menubar-toggle {
  background: rgba(60, 180, 100, 0.25);
  border: 1px solid rgba(60, 180, 100, 0.4);
  cursor: pointer;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
  color: rgba(60, 200, 100, 0.9);
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menubar-toggle svg {
  stroke: currentColor;
}
.menubar-toggle:hover {
  background: rgba(60, 180, 100, 0.35);
}
.menubar-toggle-off {
  background: rgba(200, 60, 60, 0.2);
  border-color: rgba(200, 60, 60, 0.35);
  color: rgba(220, 80, 80, 0.8);
}
.menubar-toggle-off:hover {
  background: rgba(200, 60, 60, 0.3);
}

/* ── Context menu ────────────────────────────────── */
#context-menu {
  display: none;
  position: fixed;
  z-index: 100;
  min-width: 180px;
  background: rgba(15, 15, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-size: 13px;
}
.ctx-item {
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
  transition: background 0.1s;
}
.ctx-item:hover:not(.ctx-disabled) {
  background: rgba(100, 160, 255, 0.2);
  color: #fff;
}
.ctx-disabled {
  color: rgba(255, 255, 255, 0.25);
}
.ctx-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}

/* About OS dialog */
.about-os-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-os-box {
  background: rgba(20, 20, 50, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.about-os-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-os-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.about-os-title { font-size: 20px; font-weight: 700; color: #fff; }
.about-os-version { font-size: 12px; color: rgba(255,255,255,0.4); margin: 4px 0 12px; }
.about-os-desc { font-size: 14px; color: rgba(255,255,255,0.6); }
.about-os-tech { font-size: 11px; color: rgba(255,255,255,0.3); margin: 8px 0 16px; }
.about-os-close {
  padding: 6px 24px;
  background: rgba(100, 160, 255, 0.2);
  border: 1px solid rgba(100, 160, 255, 0.3);
  border-radius: 6px;
  color: rgba(100, 180, 255, 0.9);
  font-size: 13px;
  cursor: pointer;
}
.about-os-close:hover { background: rgba(100, 160, 255, 0.3); }

/* ── Intro / boot screen ─────────────────────────── */
#boot-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #050010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.boot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.boot-logo {
  width: 80px; height: 80px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
  margin-bottom: 8px;
}
.boot-name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.boot-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.boot-camera-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.boot-camera-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.boot-camera-buttons {
  display: flex;
  gap: 10px;
}
.boot-btn {
  padding: 8px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.boot-btn:active { transform: scale(0.97); }
.boot-btn-primary {
  background: rgba(100, 160, 255, 0.25);
  color: rgba(100, 180, 255, 1);
  border: 1px solid rgba(100, 160, 255, 0.3);
}
.boot-btn-primary:hover { background: rgba(100, 160, 255, 0.35); }
.boot-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.boot-btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }
.boot-camera-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin: 4px 0 0;
}

/* ── Particles canvas ────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Awards ticker (ceiling) ─────────────────────── */
.awards-ticker {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 24px;
  pointer-events: none;
}
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-content {
  font-size: 12px;
  color: rgba(180, 160, 255, 0.25);
  letter-spacing: 0.5px;
  font-family: system-ui, -apple-system, sans-serif;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Spotlight search ────────────────────────────── */
.spotlight-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  padding-top: 20vh;
}
@keyframes spotlightIn {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.spotlight-box {
  width: 520px;
  max-height: 400px;
  animation: spotlightIn 0.15s ease-out;
  background: rgba(20, 20, 50, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spotlight-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spotlight-input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  outline: none;
  font-family: system-ui, -apple-system, sans-serif;
}
.spotlight-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.spotlight-results {
  overflow-y: auto;
  max-height: 320px;
}
.spotlight-item {
  padding: 10px 16px;
  cursor: default;
  transition: background 0.1s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.spotlight-item:hover {
  background: rgba(100, 160, 255, 0.15);
}
.spotlight-item-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.spotlight-item-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* ── System monitor ──────────────────────────────── */
.sysmon { font-size: 12px; }
.sysmon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sysmon-uptime {
  font-family: 'SF Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.sysmon-metric {
  margin-bottom: 10px;
}
.sysmon-metric-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sysmon-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sysmon-metric-val {
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
}
.sysmon-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 6px;
}
.sysmon-stat {
  text-align: center;
}
.sysmon-stat-num {
  display: block;
  font-family: 'SF Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.sysmon-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Notification center ─────────────────────────── */
.notif-panel {
  position: absolute;
  top: 36px;
  right: -320px;
  width: 300px;
  max-height: 80vh;
  background: rgba(15, 15, 40, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 50;
  overflow-y: auto;
  transition: right 0.2s ease;
}
.notif-panel-open { right: 8px; }
.notif-header {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.notif-item {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  align-items: flex-start;
}
.notif-item:last-child { border-bottom: none; }
.notif-icon { flex-shrink: 0; padding-top: 2px; }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.notif-desc { font-size: 11px; color: rgba(255, 255, 255, 0.35); margin-top: 2px; }
.notif-time { font-size: 10px; color: rgba(255, 255, 255, 0.2); flex-shrink: 0; white-space: nowrap; }

/* ── Overlay UI (hidden by default) ──────────────── */
#webcam-container { display: none; }
#webcam { display: none; }
#status { display: none; }
#debug { display: none; }

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  body {
    touch-action: manipulation;
  }

  /* Hide menubar entirely on mobile */
  #menubar {
    display: none !important;
  }

  /* Floating camera toggle for mobile */
  .mobile-camera-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 50;
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 11px;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
  }
  .mobile-camera-toggle svg {
    stroke: currentColor;
  }
  .mobile-camera-on {
    color: rgba(60, 200, 100, 0.9);
    border-color: rgba(60, 180, 100, 0.3);
  }
  .mobile-camera-off {
    color: rgba(255, 255, 255, 0.4);
  }

  /* Desktop icons on mobile floor */
  .desktop-icon {
    width: 72px;
    padding: 8px 4px 4px;
  }
  .desktop-icon-img svg {
    width: 32px;
    height: 32px;
  }
  .desktop-icon-label {
    font-size: 10px;
    max-width: 64px;
  }

  /* Hide window resize handle — too small for touch */
  .window-resize-handle {
    display: none;
  }

  /* Spotlight box fits mobile */
  .spotlight-box {
    width: calc(100vw - 32px);
    max-width: 520px;
  }
}
