.app-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.booth-page {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  min-height: 100dvh;
  align-items: stretch;
}

.result-page {
  display: block;
  min-height: 100vh;
}

.result-sidebar {
  width: min(760px, 100%);
  margin: 0 auto;
}

.hero-panel,
.camera-panel,
.result-summary {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

body.result-themed .result-summary {
  background: var(--result-surface);
}

.hero-panel,
.result-summary {
  padding: 24px;
}

@media (max-width: 1100px) {
  .booth-page,
  .result-page {
    grid-template-columns: 1fr;
  }

  .app-shell {
    width: min(100% - 24px, 760px);
    padding: 14px 0 24px;
  }

  .result-sidebar {
    width: 100%;
  }
}
