:root {
  color-scheme: light;
  --brand-950: oklch(0.255 0.052 185);
  --brand-50: oklch(0.982 0.011 183);
  --brand-800: oklch(0.38 0.082 184);
  --brand-700: oklch(0.47 0.098 183);
  --brand-600: oklch(0.56 0.105 182);
  --brand-100: oklch(0.94 0.03 181);
  --accent: oklch(0.76 0.13 77);
  --accent-dark: oklch(0.43 0.082 57);
  --accent-soft: oklch(0.965 0.027 78);
  --ink: oklch(0.225 0.022 185);
  --ink-soft: oklch(0.405 0.019 185);
  --muted: oklch(0.48 0.016 185);
  --line: oklch(0.9 0.011 184);
  --control-border: oklch(0.81 0.017 184);
  --surface: oklch(1 0 0);
  --surface-soft: oklch(0.976 0.005 185);
  --map-floor: oklch(0.956 0.009 185);
  --danger: oklch(0.58 0.18 28);
  --focus: oklch(0.55 0.13 183);
  --state-selected-bg: oklch(0.945 0.032 183);
  --state-finished-bg: oklch(0.93 0.008 185);
  --sponsor-surface: oklch(0.95 0.035 249);
  --sponsor-surface-strong: oklch(0.9 0.055 249);
  --sponsor-border: oklch(0.52 0.12 249);
  --sponsor-ink: oklch(0.26 0.08 252);
  --sponsor-ink-soft: oklch(0.36 0.075 252);
  --text-on-brand: oklch(1 0 0);
  --overlay: oklch(0.15 0.02 185 / 0.52);
  --shadow-small: 0 2px 5px oklch(0.22 0.025 185 / 0.08);
  --shadow-floating: 0 5px 12px oklch(0.22 0.025 185 / 0.12);
  --shadow-modal: 0 14px 34px oklch(0.16 0.02 185 / 0.24);
  --radius-small: 9px;
  --radius-control: 12px;
  --radius-panel: 16px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --motion-fast: 200ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-sticky: 20;
  --z-modal-backdrop: 40;
  --z-modal: 50;
  --z-toast: 60;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 112.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface-soft);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: var(--z-toast);
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
  min-height: 100dvh;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

.topbar {
  position: sticky;
  z-index: var(--z-sticky);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 10px max(16px, env(safe-area-inset-left)) 10px max(16px, env(safe-area-inset-right));
  background: var(--brand-950);
  color: white;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.schedule-controls {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.day-tabs {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.day-tabs::-webkit-scrollbar {
  display: none;
}

.day-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  min-height: 46px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.day-tab strong {
  color: var(--ink);
  font-size: 1rem;
}

.day-tab[aria-pressed="true"] {
  border-color: var(--brand-800);
  background: var(--brand-800);
  color: var(--text-on-brand);
}

.day-tab[aria-pressed="true"] strong {
  color: var(--text-on-brand);
}

.time-control {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 116px;
  padding: 5px 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
}

.time-control span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.time-control select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.map-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.map-frame {
  position: relative;
  background: var(--map-floor);
}

.map-viewport {
  height: min(58dvh, 560px);
  min-height: 430px;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.map-viewport:active {
  cursor: grabbing;
}

.map-zoom-shell {
  position: relative;
}

.venue-map {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transform-origin: top left;
}

.rooms-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.room {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  overflow: hidden;
  border: 2px solid var(--brand-700);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 1px 3px oklch(0.22 0.025 185 / 0.1);
  transition: border-color var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.room.is-selected {
  z-index: 2;
  border-color: var(--brand-950);
  background: var(--state-selected-bg);
  box-shadow: 0 0 0 4px oklch(0.48 0.13 183 / 0.24);
}

.room:disabled {
  border-color: var(--control-border);
  background: var(--surface-soft);
  color: var(--muted);
  box-shadow: none;
  opacity: 0.76;
}

.room__topline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.room__number {
  color: var(--brand-800);
  font-size: 0.8rem;
  font-weight: 900;
}

.room__time {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.room__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.17;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.room__venue {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}

.room--main {
  border-color: var(--brand-950);
  background: var(--brand-950);
  color: white;
}

.room--main .room__number,
.room--main .room__time,
.room--main .room__venue {
  color: oklch(0.91 0.04 184);
}

.room--talent {
  border-style: dashed;
  background: oklch(0.975 0.02 184);
}

.entrance {
  position: absolute;
  z-index: 5;
  right: 54px;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--brand-950);
  font-size: 0.76rem;
}

.entrance strong {
  font-size: 0.82rem;
}

.entrance__arrow {
  margin-bottom: 3px;
  color: var(--brand-700);
  font-size: 1.6rem;
  line-height: 1;
}

.map-controls {
  position: absolute;
  z-index: 12;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 650;
  transition: background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.map-controls button:last-child {
  border-bottom: 0;
}

.map-controls button:focus-visible {
  outline-offset: -4px;
}

.map-controls button:active:not(:disabled) {
  transform: scale(0.97);
}

.map-controls button:disabled {
  color: var(--muted);
  opacity: 0.55;
}

.map-key {
  position: absolute;
  z-index: 12;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 12px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: oklch(1 0 0 / 0.97);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 650;
  box-shadow: var(--shadow-small);
}

.map-key span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.map-key__dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.map-key__dot--active {
  background: var(--brand-600);
}

.preview-badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.session-item {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.session-item__room {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--brand-100);
  color: var(--brand-950);
  font-size: 0.72rem;
  font-weight: 900;
}

.session-item__text strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.79rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.session-item__text span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.data-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.sheet {
  width: min(520px, calc(100% - 24px));
  max-height: min(720px, calc(100dvh - 24px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-panel);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-modal);
}

.sheet::backdrop {
  background: var(--overlay);
}

.sheet__content {
  position: relative;
  padding: 26px;
  overflow-y: auto;
}

.sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 1.35rem;
}

.sheet h2 {
  max-width: 19ch;
  margin: 0 48px 10px 0;
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sheet p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.text-button:active {
  transform: scale(0.985);
}

.text-button {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  border: 0;
  background: transparent;
  color: var(--brand-800);
  font-size: 0.83rem;
  font-weight: 700;
  transition: background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.room-sheet__topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 4px 48px 10px 0;
}

.room-sheet__number,
.room-sheet__time {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.room-sheet__number {
  background: var(--brand-100);
  color: var(--brand-950);
}

.room-sheet__time {
  background: var(--surface-soft);
  color: var(--ink-soft);
}

.sheet .room-sheet__speaker {
  margin: 0 0 14px;
  color: var(--brand-800);
  font-weight: 700;
}

.room-sheet__description {
  margin-bottom: 16px;
}

.room-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.room-details div {
  padding: 11px;
  border-radius: var(--radius-control);
  background: var(--surface-soft);
}

.room-details dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.room-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: var(--z-toast);
  right: 16px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  left: 16px;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 15px;
  border-radius: var(--radius-control);
  background: var(--brand-950);
  color: white;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: center;
  box-shadow: 0 7px 18px oklch(0.1 0.02 185 / 0.2);
}

@media (max-width: 560px) {
  .schedule-controls {
    align-items: center;
  }

  .day-tab {
    min-height: 46px;
    padding: 7px 10px;
  }

  .time-control {
    min-width: 103px;
  }

  .map-key {
    max-width: calc(100% - 82px);
    gap: 8px;
  }

  .sheet {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 20px);
    margin: auto 0 0;
    border-radius: 16px 16px 0 0;
  }

  .sheet__content {
    padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* App shell: mapa em tela cheia, cronograma em uma segunda tela. */

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.app-shell {
  display: grid;
  grid-template-rows: calc(64px + env(safe-area-inset-top)) minmax(0, 1fr) calc(64px + env(safe-area-inset-bottom));
  width: 100%;
  height: 100dvh;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--surface-soft);
}

.topbar {
  position: relative;
  z-index: var(--z-sticky);
  top: auto;
  min-height: 0;
  padding: calc(8px + env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) 8px max(14px, env(safe-area-inset-left));
  border-bottom: 1px solid oklch(0.5 0.045 184 / 0.35);
  background: var(--brand-950);
  box-shadow: 0 1px 4px oklch(0.16 0.03 185 / 0.12);
}

.app-title {
  min-width: 0;
}

.app-title h1 {
  margin: 0;
  overflow: hidden;
  color: var(--surface);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-title h1 span {
  color: oklch(0.88 0.04 183);
  font-weight: 550;
}

.app-title p {
  margin: 3px 0 0;
  color: oklch(0.78 0.035 183);
  font-size: 0.68rem;
  font-weight: 550;
  line-height: 1;
}

.app-views {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.app-view {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
}

.app-view[hidden] {
  display: none;
}

.app-view--map,
.map-panel,
.map-frame,
.map-viewport {
  width: 100%;
  height: 100%;
}

.map-panel {
  border: 0;
  border-radius: 0;
  background: var(--map-floor);
}

.map-frame {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.map-top-controls {
  display: grid;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  background: oklch(0.99 0.003 185);
  box-shadow: 0 1px 4px oklch(0.22 0.025 185 / 0.045);
}

.map-viewport {
  height: auto;
  min-height: 0;
  padding: 0;
}

.current-schedule {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: none;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  transition: border-color var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.current-schedule:active {
  transform: translateY(1px);
}

.current-schedule[hidden] {
  display: none;
}

.current-schedule__mode {
  padding: 4px 6px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.current-schedule__label {
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.current-schedule__arrow {
  color: var(--brand-600);
  font-size: 1.15rem;
  font-weight: 800;
}

.map-controls {
  top: auto;
  right: 12px;
  bottom: 12px;
}

.map-key {
  bottom: 12px;
  left: 12px;
}

.app-view--schedule {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--surface-soft);
}

.schedule-screen {
  width: min(800px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.schedule-screen__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.schedule-screen__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.schedule-screen__header p {
  margin: 4px 0 0;
  color: var(--brand-800);
  font-size: 0.78rem;
  font-weight: 700;
}

.schedule-screen .preview-badge {
  margin-top: 3px;
}

.auto-schedule-note {
  margin: 0 0 12px;
  padding: 9px 11px;
  border-radius: var(--radius-control);
  background: var(--brand-100);
  color: var(--brand-950);
  font-size: 0.72rem;
  font-weight: 650;
}

.schedule-screen .schedule-controls {
  margin-bottom: 20px;
}

.schedule-screen__summary {
  margin-bottom: 9px;
}

.schedule-screen__summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.schedule-screen__summary p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.schedule-screen .session-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
  box-shadow: 0 2px 6px oklch(0.22 0.025 185 / 0.07);
}

.schedule-screen .session-item {
  padding: 13px 12px;
}

.schedule-screen .session-item:last-child {
  border-bottom: 0;
}

.schedule-screen .data-note {
  margin: 14px 3px 0;
}

.bottom-nav {
  position: relative;
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 5px max(12px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 -2px 6px oklch(0.22 0.025 185 / 0.045);
}

.bottom-nav__item {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 650;
  transition: background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.bottom-nav__item.is-active {
  background: var(--brand-50);
  color: var(--brand-800);
}

.bottom-nav__item:active {
  transform: scale(0.97);
}

.bottom-nav__icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 19px;
  color: currentColor;
}

.bottom-nav__icon--map {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.bottom-nav__icon--map::before,
.bottom-nav__icon--map::after {
  position: absolute;
  top: -2px;
  width: 2px;
  height: 19px;
  background: currentColor;
  content: "";
}

.bottom-nav__icon--map::before {
  left: 5px;
  transform: rotate(10deg);
}

.bottom-nav__icon--map::after {
  right: 5px;
  transform: rotate(-10deg);
}

.bottom-nav__icon--schedule {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.bottom-nav__icon--schedule::before {
  position: absolute;
  top: 4px;
  right: 3px;
  left: 3px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  content: "";
}

@media (max-width: 520px) {
  .app-title h1 {
    font-size: 0.88rem;
  }

  .app-title p {
    font-size: 0.68rem;
  }

  .map-key {
    max-width: calc(100% - 80px);
  }

  .schedule-screen .schedule-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-screen .time-control {
    width: 100%;
  }

  .schedule-screen .day-tab span {
    display: inline;
  }
}

@media (min-width: 700px) {
  .map-top-controls {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: center;
  }
}

@media (min-width: 900px) {
  .app-shell {
    grid-template-rows: 68px minmax(0, 1fr) 68px;
  }

  .topbar {
    padding-inline: 24px;
  }

  .app-title h1 {
    font-size: 1rem;
  }

  .map-top-controls {
    grid-template-columns: minmax(0, 520px) minmax(260px, 360px);
    align-items: center;
    justify-content: start;
    gap: 12px;
    padding: 12px 18px;
  }

  .map-controls {
    right: 18px;
    bottom: 18px;
  }

  .map-key {
    bottom: 18px;
    left: 18px;
  }

  .bottom-nav {
    width: 100%;
    padding-inline: calc((100% - 520px) / 2);
  }

  .schedule-screen {
    padding-top: 28px;
  }
}

/* Cronograma atualizado em tempo real. */

.schedule-controls[hidden] {
  display: none;
}

.current-schedule[data-moment="live"] .current-schedule__mode,
.preview-badge[data-moment="live"] {
  background: var(--brand-100);
  color: var(--brand-950);
}

.current-schedule[data-moment="upcoming"] .current-schedule__mode,
.preview-badge[data-moment="upcoming"] {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.current-schedule[data-moment="finished"] .current-schedule__mode,
.preview-badge[data-moment="finished"] {
  background: var(--state-finished-bg);
  color: var(--ink-soft);
}

.auto-schedule-note:not([hidden]) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auto-schedule-note::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-600);
  content: "";
}

.schedule-screen .session-item {
  grid-template-columns: 44px minmax(0, 1fr) auto;
  cursor: default;
}

.session-item__locate {
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid oklch(0.76 0.045 183);
  border-radius: var(--radius-control);
  background: var(--brand-50);
  color: var(--brand-800);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.session-item__locate:active {
  transform: translateY(1px);
}

@media (hover: hover) {
  .day-tab:hover:not([aria-pressed="true"]),
  .current-schedule:hover,
  .bottom-nav__item:hover,
  .sheet__close:hover,
  .text-button:hover {
    background: var(--brand-50);
  }

  .room:hover:not(:disabled):not(.is-selected):not(.is-idle) {
    border-color: var(--brand-950);
    box-shadow: 0 4px 8px oklch(0.22 0.025 185 / 0.14);
    transform: translateY(-2px);
  }

  .map-controls button:hover:not(:disabled) {
    background: var(--brand-50);
    color: var(--brand-800);
  }

  .session-item__locate:hover {
    background: var(--brand-100);
  }

}

@media (max-width: 620px) {
  .schedule-screen .session-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .session-item__locate {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
}

/* Planta oficial do evento: salas, centro de exposições e patrocinadores. */

.map-secondary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
}

.map-layer-toggle {
  display: flex;
  min-width: 116px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.map-layer-toggle__dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.map-layer-toggle[aria-pressed="true"] {
  border-color: var(--sponsor-border);
  background: var(--sponsor-surface);
  color: var(--sponsor-ink);
}

.map-layer-toggle[aria-pressed="true"] .map-layer-toggle__dot {
  background: currentColor;
}

.map-layer-toggle:active {
  transform: translateY(1px);
}

.schedule-break {
  display: grid;
  justify-items: center;
  padding: 28px 18px 22px;
  color: var(--ink);
  text-align: center;
}

.schedule-break__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.schedule-break strong {
  font-size: 0.96rem;
}

.schedule-break p {
  max-width: 440px;
  margin: 5px 0 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.schedule-break .text-button {
  width: auto;
  padding-inline: 14px;
}

.data-note--empty {
  margin: 0;
  padding: 24px 18px;
  text-align: center;
}

.session-item--no-location {
  grid-template-columns: 44px minmax(0, 1fr) !important;
}

.schedule-screen .session-item__text strong {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

@media (hover: hover) {
  .map-layer-toggle:hover {
    border-color: var(--sponsor-border);
    background: var(--sponsor-surface);
    color: var(--sponsor-ink);
  }

  .sponsor-spot:hover {
    z-index: 3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-floating);
  }
}

@media (max-width: 420px) {
  .map-secondary-row {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .map-layer-toggle {
    min-width: 112px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }
}

/* Geometria canônica 1600 × 900 — planta oficial e circulação livre. */

.map-zoom-shell,
.venue-map {
  width: 1600px;
  height: 900px;
}

.venue-map {
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 70%, oklch(1 0 0 / 0.82), transparent 48%),
    linear-gradient(145deg, oklch(0.978 0.006 184), oklch(0.952 0.012 182));
}

.venue-map::before {
  position: absolute;
  display: block;
  inset: 8px;
  border: 1px solid oklch(0.62 0.025 184 / 0.72);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.72);
  content: "";
  pointer-events: none;
}

.venue-zone {
  position: absolute;
  z-index: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid oklch(0.76 0.018 184 / 0.82);
  border-radius: 10px;
  background: oklch(0.984 0.004 184);
  pointer-events: none;
}

.venue-zone--exhibition {
  top: 8px;
  left: 9px;
  width: 510px;
  height: 884px;
  background:
    linear-gradient(180deg, oklch(0.982 0.01 78), oklch(0.968 0.012 78));
}

.venue-zone--exhibition strong {
  position: absolute;
  top: 240px;
  right: 84px;
  color: oklch(0.42 0.04 63);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.venue-zone--lounge {
  top: 15px;
  left: 14px;
  display: grid;
  width: 250px;
  height: 117px;
  place-items: center;
  border-color: oklch(0.69 0.04 183 / 0.78);
  background: linear-gradient(145deg, var(--brand-50), oklch(0.965 0.025 181));
}

.venue-zone--lounge strong {
  color: var(--brand-950);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.venue-zone--convention {
  top: 220px;
  left: 512px;
  width: 1079px;
  height: 672px;
  background: linear-gradient(180deg, oklch(0.988 0.003 184), oklch(0.973 0.007 184));
}

.venue-zone--convention strong {
  position: absolute;
  top: 9px;
  left: 16px;
  color: var(--brand-800);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.circulation-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.circulation-area {
  position: absolute;
  background:
    repeating-linear-gradient(135deg, oklch(0.74 0.018 184 / 0.045) 0 1px, transparent 1px 16px),
    oklch(0.99 0.003 184 / 0.72);
}

.circulation-area--expo {
  top: 189px;
  left: 460px;
  width: 67px;
  height: 442px;
  border-radius: 8px 8px 0 0;
}

.circulation-area--hall {
  top: 245px;
  left: 1271px;
  width: 48px;
  height: 386px;
}

.circulation-area--south {
  top: 631px;
  left: 264px;
  width: 1171px;
  height: 261px;
  border-radius: 0 0 10px 10px;
  background:
    radial-gradient(circle at 55% 48%, oklch(1 0 0 / 0.86), transparent 62%),
    repeating-linear-gradient(135deg, oklch(0.74 0.018 184 / 0.04) 0 1px, transparent 1px 18px);
}

.rooms-layer {
  z-index: 4;
}

.room,
.room.is-idle,
.room--hall,
.room--talent {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  overflow: hidden;
  border: 1px solid oklch(0.58 0.07 183 / 0.86);
  border-radius: 8px;
  background: linear-gradient(145deg, oklch(0.975 0.025 182), oklch(0.945 0.04 182));
  color: var(--ink);
  text-align: center;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.72), 0 2px 7px oklch(0.24 0.04 184 / 0.08);
  opacity: 1;
}

.room.has-activity {
  border-color: oklch(0.49 0.092 183 / 0.92);
  background: linear-gradient(145deg, oklch(0.965 0.038 182), oklch(0.92 0.055 182));
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.66), 0 3px 9px oklch(0.24 0.055 184 / 0.12);
}

.room__topline {
  width: 100%;
  justify-self: stretch;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
}

.room__number {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  padding: var(--space-1) 6px;
  border: 1px solid oklch(0.56 0.07 183 / 0.28);
  border-radius: 6px;
  background: oklch(0.985 0.012 182 / 0.82);
  color: var(--brand-950);
  font-size: 0.7rem;
  font-weight: 850;
}

.room__time {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--brand-800);
  font-size: 0.64rem;
  font-weight: 750;
}

.room__name {
  display: -webkit-box;
  width: 100%;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
  margin-inline: auto;
  color: var(--brand-950);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.room__activity {
  display: flex;
  inline-size: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  justify-self: stretch;
  gap: var(--space-1);
  overflow: hidden;
  padding-top: calc(var(--space-2) + 3px);
  border-top: 1px solid oklch(0.55 0.055 183 / 0.25);
  text-align: center;
}

.room__workshop,
.room__speaker {
  display: -webkit-box;
  width: 100%;
  flex: 0 0 auto;
  align-self: stretch;
  overflow: hidden;
  margin-inline: auto;
  text-align: center;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
}

.room__workshop {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.14;
  -webkit-line-clamp: 3;
}

.room__speaker {
  color: var(--brand-800);
  font-size: 0.63rem;
  font-weight: 720;
  line-height: 1.14;
  -webkit-line-clamp: 2;
}

.room__hint {
  display: none;
}

.room.is-idle .room__time,
.room--talent .room__time,
.room--map-micro .room__time {
  display: none;
}

.room--map-tall .room__name {
  font-size: 0.94rem;
}

.room--map-tall .room__workshop {
  font-size: 0.78rem;
  -webkit-line-clamp: 5;
}

.room--map-tall .room__speaker {
  font-size: 0.69rem;
  -webkit-line-clamp: 3;
}

.room--map-compact {
  padding: 7px var(--space-2);
}

.room--map-compact .room__name {
  font-size: 0.78rem;
}

.room--map-compact .room__workshop {
  font-size: 0.62rem;
}

.room--map-compact .room__speaker {
  font-size: 0.57rem;
}

.room--map-low:not(.room--map-micro) {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 3px;
  padding: 6px var(--space-2);
}

.room--map-low:not(.room--map-micro) .room__number {
  min-height: 18px;
  padding: 2px var(--space-1);
  font-size: 0.62rem;
}

.room--map-low:not(.room--map-micro) .room__name {
  font-size: 0.74rem;
  line-height: 1.05;
  -webkit-line-clamp: 1;
}

.room--map-low:not(.room--map-micro) .room__activity {
  justify-content: center;
  gap: 2px;
  padding-top: 6px;
}

.room--map-low:not(.room--map-micro) .room__workshop {
  font-size: 0.6rem;
  line-height: 1.08;
  -webkit-line-clamp: 2;
}

.room--map-low:not(.room--map-micro) .room__speaker {
  font-size: 0.54rem;
  line-height: 1.08;
  -webkit-line-clamp: 2;
}

.room--map-micro {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 3px;
  padding: 6px;
}

.room--map-micro .room__number {
  min-height: 19px;
  padding: 2px var(--space-1);
  font-size: 0.57rem;
}

.room--map-micro .room__name {
  font-size: 0.64rem;
  -webkit-line-clamp: 2;
}

.room--map-micro .room__activity {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding-top: 5px;
}

.room--map-micro .room__workshop {
  font-size: 0.52rem;
  line-height: 1.1;
  -webkit-line-clamp: 2;
}

.room--map-micro .room__speaker {
  font-size: 0.49rem;
  line-height: 1.1;
  -webkit-line-clamp: 1;
}

.room--main,
.room--main.is-idle,
.room--main.has-activity,
.room--main.is-selected {
  border-color: oklch(0.42 0.09 183);
  background: linear-gradient(145deg, oklch(0.94 0.055 182), oklch(0.89 0.072 182));
  color: var(--ink);
}

.room--main .room__number,
.room--main .room__time,
.room--main .room__name,
.room--main .room__workshop,
.room--main .room__speaker,
.room--main .room__hint {
  color: var(--brand-950);
}

.room.is-idle {
  border-color: oklch(0.7 0.012 185 / 0.9);
  background: linear-gradient(145deg, oklch(0.96 0.005 185), oklch(0.91 0.008 185));
  color: oklch(0.39 0.014 185);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.72), 0 1px 3px oklch(0.24 0.018 185 / 0.08);
}

.room.is-idle .room__number {
  border-color: oklch(0.7 0.012 185 / 0.48);
  background: oklch(0.975 0.003 185 / 0.92);
  color: oklch(0.4 0.014 185);
}

.room.is-idle .room__name {
  color: oklch(0.36 0.014 185);
}

.room.is-idle .room__activity {
  border-top-color: oklch(0.72 0.01 185 / 0.58);
}

.room.is-idle .room__workshop,
.room.is-idle .room__speaker {
  color: var(--muted);
}

.room--talent {
  border-style: dashed;
}

.room.room--label-only,
.room.room--label-only.is-idle {
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: var(--space-2);
}

.room--label-only .room__name--only {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  align-self: center;
  justify-content: center;
  justify-self: center;
  overflow: visible;
  font-size: 0.64rem;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-line-clamp: unset;
}

.room[data-room-id="carvalho-3"],
.room[data-room-id="amoreira-3"] {
  border-radius: 8px 8px 2px 2px;
}

.room[data-room-id="carvalho-2"],
.room[data-room-id="amoreira-2"] {
  border-radius: 2px;
}

.room[data-room-id="carvalho-1"],
.room[data-room-id="amoreira-1"] {
  border-radius: 2px 2px 8px 8px;
}

.room[data-room-id="jequitiba"] {
  border-radius: 2px;
}

.room[data-room-id="hall-amoreira"] {
  border-radius: 8px;
}

.room.is-selected,
.room--main.is-selected {
  z-index: 3;
  border-color: var(--brand-950);
  box-shadow: 0 0 0 4px oklch(0.52 0.1 183 / 0.24), 0 5px 14px oklch(0.22 0.04 184 / 0.15);
}

.sponsors-layer {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.sponsors-layer[hidden] {
  display: none;
}

.sponsor-spot,
.sponsor-spot--lounge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  gap: 2px;
  padding: var(--space-1);
  border: 1px solid var(--sponsor-border);
  border-radius: 7px;
  background: linear-gradient(145deg, var(--sponsor-surface), var(--sponsor-surface-strong));
  color: var(--sponsor-ink);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.72), 0 2px 5px oklch(0.18 0.06 252 / 0.1);
  pointer-events: auto;
  text-align: center;
  transition: opacity var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.sponsor-spot__code {
  position: static;
  color: var(--sponsor-ink);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
}

.sponsor-spot:not(.is-short) .sponsor-spot__code {
  min-width: 28px;
  padding: 2px 4px;
  border: 1px solid oklch(0.62 0.09 249 / 0.28);
  border-radius: 5px;
  background: oklch(0.985 0.016 249 / 0.86);
}

.sponsor-spot strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--sponsor-ink-soft);
  font-size: 0.57rem;
  font-weight: 720;
  line-height: 1.04;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sponsor-spot.is-narrow {
  padding-inline: 2px;
}

.sponsor-spot.is-narrow .sponsor-spot__code {
  font-size: 0.58rem;
}

.sponsor-spot.is-narrow strong {
  font-size: 0.49rem;
  letter-spacing: -0.02em;
}

.sponsor-spot.is-short:not(.is-narrow) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding-inline: 6px;
  text-align: center;
}

.sponsor-spot.is-short:not(.is-narrow) strong {
  font-size: 0.55rem;
  text-align: center;
}

.sponsor-spot[data-sponsor-id="l1"] strong {
  font-size: 0.52rem;
  -webkit-line-clamp: 3;
}

.sponsor-spot[data-sponsor-id="s9"] {
  padding-inline: 3px;
}

.sponsor-spot[data-sponsor-id="s9"] .sponsor-spot__code {
  font-size: 0.56rem;
}

.sponsor-spot[data-sponsor-id="s9"] strong {
  overflow-wrap: anywhere;
  font-size: 0.42rem;
  line-height: 1;
  -webkit-line-clamp: 4;
}

.sponsor-spot[data-sponsor-id="s16a"] strong {
  overflow-wrap: anywhere;
  font-size: 0.42rem;
  line-height: 1;
  -webkit-line-clamp: 3;
}

.sponsor-spot.has-logo,
.sponsor-spot.has-logo.is-narrow,
.sponsor-spot.has-logo.is-short:not(.is-narrow) {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.sponsor-spot.has-logo .sponsor-spot__code,
.sponsor-spot.has-logo:not(.is-short) .sponsor-spot__code {
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid oklch(0.62 0.09 249 / 0.28);
  border-radius: 5px;
  background: oklch(0.985 0.016 249 / 0.92);
  line-height: 1;
}

.sponsor-spot__logo {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.sponsor-spot.has-logo[data-sponsor-id="l4"],
.sponsor-spot.has-logo[data-sponsor-id="l5"] {
  padding: 5px;
}

.sponsor-spot[data-sponsor-id="s2"] .sponsor-spot__logo,
.sponsor-spot[data-sponsor-id="s3"] .sponsor-spot__logo {
  transform: translateY(5px);
}

.sponsor-spot[data-sponsor-id="s14"] .sponsor-spot__logo {
  max-width: 56px;
  margin-inline: auto;
}

.sponsor-spot.is-selected {
  border-color: var(--sponsor-ink);
  background: linear-gradient(145deg, oklch(0.92 0.06 249), oklch(0.84 0.082 249));
  box-shadow: 0 0 0 4px oklch(0.46 0.12 249 / 0.18), 0 4px 10px oklch(0.18 0.06 252 / 0.13);
}

.venue-map[data-detail-level="overview"] .room {
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: var(--space-2);
}

.venue-map[data-detail-level="overview"] .room__time,
.venue-map[data-detail-level="overview"] .room__activity,
.venue-map[data-detail-level="overview"] .room__hint {
  display: none;
}

.venue-map[data-detail-level="overview"] .room__name {
  align-self: center;
  font-size: 0.9rem;
  -webkit-line-clamp: 3;
}

.venue-map[data-detail-level="overview"] .room--map-compact .room__name,
.venue-map[data-detail-level="overview"] .room--map-micro .room__name {
  font-size: 0.7rem;
}

.venue-map[data-detail-level="overview"] .room.room--label-only {
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: var(--space-2);
}

.venue-map[data-detail-level="overview"] .room--label-only .room__name--only {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  -webkit-line-clamp: unset;
}

.entrance {
  top: 804px;
  right: auto;
  bottom: auto;
  left: 850px;
  width: 156px;
  min-height: 54px;
  justify-content: center;
  gap: 2px;
  padding: 7px var(--space-3);
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 999px;
  background: var(--brand-950);
  color: var(--surface);
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 5px 14px oklch(0.22 0.04 184 / 0.18);
}

.entrance strong {
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.1;
}

.entrance__arrow {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 1rem;
}

.map-key__dot--sponsor {
  border-radius: 2px;
  background: var(--sponsor-border);
}

.sponsor-sheet .room-sheet__number {
  background: var(--sponsor-surface);
  color: var(--sponsor-ink);
}

.sponsor-sheet .room-sheet__speaker {
  color: var(--sponsor-ink);
}

.map-key {
  top: auto;
  right: auto;
  bottom: var(--space-4);
  left: var(--space-4);
}

@media (max-width: 600px) {
  .map-key {
    display: none;
  }

  .current-schedule__arrow {
    display: none;
  }
}

@media (hover: hover) {
  .room:hover:not(.is-selected):not(.is-idle) {
    border-color: var(--brand-950);
    box-shadow: 0 4px 12px oklch(0.22 0.045 184 / 0.15);
    transform: translateY(-1px);
  }

  .room.is-idle:hover:not(.is-selected) {
    border-color: oklch(0.56 0.014 185);
    box-shadow: 0 3px 7px oklch(0.22 0.018 185 / 0.1);
    transform: translateY(-1px);
  }

  .sponsor-spot:hover {
    border-color: var(--sponsor-ink);
    background: var(--sponsor-surface-strong);
    box-shadow: 0 4px 10px oklch(0.18 0.06 252 / 0.13);
    transform: translateY(-1px);
  }
}
