/* Wall display chrome */

html, body { width: 100%; height: 100%; overflow: hidden; }
body { background: var(--color-bg); }

.cc-wall {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,96,42,0.08), transparent 60%),
    var(--color-bg);
}

.cc-wall-stage {
  flex: none;
  box-shadow: 0 0 0 1px var(--color-line);
  overflow: hidden;
  background: var(--color-bg);
}

/* ---------- Floating chrome ---------- */
.cc-wall-chrome {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 1000;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: opacity 400ms ease, transform 400ms ease;
}
.cc-wall-chrome.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.cc-wall-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-fg);
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(58,38,20,0.10);
  transition: background var(--motion-fast), border-color var(--motion-fast);
}
.cc-wall-chip:hover { background: var(--color-panel-2); }

.cc-wall-menu {
  display: flex; flex-direction: column;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 6px;
  min-width: 280px;
  box-shadow: 0 12px 32px rgba(58,38,20,0.18);
  backdrop-filter: blur(12px);
  animation: cc-menu-in 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes cc-menu-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cc-wall-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-fg);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background var(--motion-fast);
}
.cc-wall-menu-item:hover { background: var(--color-hover); }
.cc-wall-menu-item.active {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.cc-wall-menu-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--color-subtle);
  background: var(--color-panel-2);
  border: 1px solid var(--color-line);
  border-radius: 3px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-wall-menu-item.active .cc-wall-menu-key {
  border-color: var(--color-accent-ring);
  color: var(--color-accent);
}
.cc-wall-menu-sep {
  border: 0;
  height: 1px;
  background: var(--color-line);
  margin: 4px 6px;
}
