:root {
  color-scheme: light;
  --bg: #f5f8f8;
  --surface: #ffffff;
  --surface-soft: #eef7f6;
  --text: #18212f;
  --muted: #607083;
  --subtle: #8a98a8;
  --border: #dce5e8;
  --border-strong: #c8d6dc;
  --teal: #087f92;
  --teal-strong: #006d7f;
  --teal-soft: #dff5f1;
  --blue: #4d62d9;
  --amber: #b47a00;
  --amber-soft: #fff2cc;
  --coral: #d9363e;
  --coral-soft: #fff0f1;
  --green: #138a49;
  --green-soft: #e4f8e9;
  --shadow: 0 16px 42px rgba(24, 33, 47, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.45;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 248, 248, 0.98) 300px),
    var(--bg);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.app-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: linear-gradient(135deg, #2fc9c4, #087f92);
  font-size: 17px;
  font-weight: 850;
}

.sidebar-collapse {
  margin-left: auto;
}

.nav-section {
  padding: 18px 12px 4px;
}

.nav-section h2 {
  margin: 0 8px 10px;
  color: #556274;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.event-card,
.side-link,
.text-link,
.room-button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.event-card {
  display: grid;
  gap: 4px;
  margin-bottom: 6px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
}

.event-card:hover,
.event-card.active {
  background: var(--surface-soft);
}

.event-card span {
  font-weight: 680;
}

.event-card small,
.side-link {
  color: var(--muted);
}

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.side-link:hover,
.side-link.active {
  color: var(--text);
  background: #eef5f6;
}

.side-link span {
  width: 21px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
}

.text-link {
  width: auto;
  padding: 9px 8px;
  color: var(--teal);
  font-weight: 650;
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px 12px 18px;
  border-top: 1px solid var(--border);
}

.workspace {
  display: flex;
  min-width: 0;
  min-height: 100vh;
  flex-direction: column;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 70px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.event-title {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.event-title h1 {
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 780;
}

.event-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mode-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mode-button,
.button,
.icon-button {
  min-height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  font-weight: 670;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mode-button {
  padding: 0 14px;
}

.mode-button:hover,
.button:hover,
.icon-button:hover {
  border-color: #9db7bf;
}

.mode-button.active,
.button.primary {
  border-color: var(--teal-strong);
  color: #fff;
  background: var(--teal);
}

.mode-button:active,
.button:active,
.icon-button:active {
  transform: translateY(1px);
}

.account-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: #18212f;
  font-size: 11px;
  font-weight: 800;
}

.icon-button {
  min-width: 36px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
}

.tabbar {
  display: flex;
  gap: 24px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.tab {
  position: relative;
  min-height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.tab.active {
  color: var(--text);
}

.tab.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
  content: "";
}

.count-badge {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border-radius: 999px;
  color: var(--text);
  background: #edf1f4;
  font-size: 12px;
}

.screen {
  flex: 1;
  padding: 16px 18px 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 394px;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.main-column,
.side-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.85fr);
  gap: 16px;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.panel-header.compact {
  padding: 14px 16px;
}

.panel-header h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 780;
}

.panel-header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
}

.button.small {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

.button.ghost {
  color: var(--text);
  background: #fbfcfd;
}

.button.muted {
  color: var(--muted);
}

.button.danger {
  border-color: #f0b7bc;
  color: var(--coral);
  background: var(--coral-soft);
}

.activity-table {
  display: grid;
}

.activity-row {
  display: grid;
  grid-template-columns: 46px minmax(260px, 1fr) 92px 90px minmax(190px, auto);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.activity-row.heading {
  min-height: 42px;
  color: #687789;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  background: #fbfcfd;
}

.activity-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.activity-row small {
  color: var(--muted);
  font-size: 12px;
}

.row-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.type-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  font-weight: 850;
}

.type-icon.poll {
  color: var(--blue);
  background: #eef0ff;
}

.type-icon.qna {
  color: #d95900;
  background: #fff0e5;
}

.type-icon.quiz {
  color: var(--teal);
  background: #e5f7f6;
}

.type-icon.survey {
  color: var(--amber);
  background: #fff5d9;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 740;
  white-space: nowrap;
}

.status-pill.live {
  color: var(--green);
  background: var(--green-soft);
}

.status-pill.locked {
  border-color: #eed483;
  color: var(--amber);
  background: var(--amber-soft);
}

.status-pill.idle {
  border-color: var(--border);
  color: var(--muted);
  background: #f7f9fa;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--subtle);
}

.dot.live {
  background: var(--green);
}

.quick-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 13px;
}

.quick-controls > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
}

.metric {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  font-size: 24px;
  line-height: 1;
}

.metric small,
.positive,
.negative {
  font-size: 12px;
  font-weight: 690;
}

.positive {
  color: var(--green);
}

.negative {
  color: var(--coral);
}

.line-chart {
  position: relative;
  display: flex;
  height: 170px;
  align-items: end;
  gap: 11px;
  margin: 0 14px 16px;
  padding: 18px 10px 0;
  border-top: 1px solid var(--border);
  background-image: linear-gradient(to top, #edf2f4 1px, transparent 1px);
  background-size: 100% 34px;
}

.line-chart span {
  position: relative;
  flex: 1;
  max-width: 26px;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #0f9eb2, #61bfd0);
}

.line-chart span::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(-50%);
  content: "";
}

.select {
  height: 34px;
  min-width: 132px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 13px;
}

.feed-list {
  display: grid;
}

.feed-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.feed-item strong {
  display: block;
  font-size: 13px;
}

.feed-item small,
.feed-item time {
  color: var(--muted);
  font-size: 12px;
}

.join-box {
  display: grid;
  gap: 8px;
  margin: 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fcfdfd;
}

.join-box span {
  color: var(--muted);
  font-size: 13px;
}

.join-box > strong {
  color: var(--teal);
  font-size: 20px;
}

.qr-wrap {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(9, 1fr);
  width: 104px;
  height: 104px;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
}

.qr-code i {
  border-radius: 1px;
  background: #17202d;
}

.qr-code i:nth-child(3n) {
  background: transparent;
}

.qr-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-wrap strong {
  color: var(--text);
}

.room-access {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  color: var(--muted);
}

.phone-preview {
  margin: 14px 16px 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 8px #fbfcfd;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 740;
}

.mini-tabs,
.participant-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  border-bottom: 1px solid var(--border);
}

.mini-tabs span,
.participant-tabs button {
  position: relative;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 710;
}

.mini-tabs .active,
.participant-tabs button.active {
  color: var(--teal);
}

.mini-tabs .active::after,
.participant-tabs button.active::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
  content: "";
}

.phone-preview h3 {
  margin: 18px 0 12px;
  font-size: 15px;
  line-height: 1.3;
}

.result-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
}

.bar {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f3;
}

.bar > span {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #8bc5ff);
}

.statusbar {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 13px;
}

.statusbar span:first-child {
  color: var(--text);
}

.participant-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 290px;
  gap: 18px;
  max-width: 1100px;
  margin: 28px auto;
}

.participant-card,
.participant-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.participant-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.participant-header h2 {
  margin: 12px 0 4px;
  font-size: 24px;
}

.participant-header p {
  margin: 0;
  color: var(--muted);
}

.participant-header > strong {
  color: var(--teal);
  font-size: 20px;
}

.participant-card .participant-tabs {
  margin-top: 0;
}

.participant-tabs button {
  cursor: pointer;
}

.participant-pane {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.participant-pane h3 {
  margin: 0;
  font-size: 22px;
}

.participant-pane p {
  margin: 0;
  color: var(--muted);
}

.choice-list,
.quiz-options {
  display: grid;
  gap: 10px;
}

.choice-button,
.quiz-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
  cursor: pointer;
  text-align: left;
}

.choice-button:hover,
.choice-button.selected,
.quiz-button:hover,
.quiz-button.selected {
  border-color: #8abdc8;
  background: #f0fbfa;
}

.question-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 670;
}

textarea,
input {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 14px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px;
}

input {
  height: 40px;
  padding: 0 12px;
}

textarea:focus,
input:focus,
button:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.22);
  outline-offset: 2px;
}

.form-note {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
  font-size: 13px;
}

.qna-list {
  display: grid;
  gap: 10px;
}

.qna-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
}

.qna-item strong {
  display: block;
  margin-bottom: 4px;
}

.qna-item small {
  color: var(--muted);
}

.vote-button {
  min-width: 58px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-weight: 760;
}

.participant-aside {
  align-self: start;
  padding: 18px;
}

.participant-aside h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.room-button {
  min-height: 42px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
  font-weight: 680;
}

.room-button.active {
  border-color: #91c8d1;
  color: var(--teal);
  background: #edf9f7;
}

.external-link {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}

.present-screen {
  padding: 0;
  background: #0b151f;
}

body[data-mode="present"] .app-shell {
  grid-template-columns: 1fr;
}

body[data-mode="present"] .sidebar,
body[data-mode="present"] .topbar,
body[data-mode="present"] .tabbar,
body[data-mode="present"] .statusbar {
  display: none;
}

.present-stage {
  display: grid;
  min-height: 100vh;
  gap: 32px;
  padding: clamp(24px, 5vw, 64px);
  color: #f4fbff;
  background:
    linear-gradient(180deg, rgba(9, 27, 35, 0.9), rgba(10, 21, 31, 1)),
    #0b151f;
}

.present-top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: start;
}

.present-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.present-exit {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  color: #ecfbff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
}

.present-exit:hover {
  background: rgba(255, 255, 255, 0.14);
}

.present-top h2 {
  max-width: 900px;
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
}

.present-join {
  display: grid;
  min-width: 220px;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.present-join span {
  color: #bfd4dd;
  font-size: 14px;
}

.present-join strong {
  color: #74e0df;
  font-size: 24px;
}

.present-results {
  display: grid;
  gap: 16px;
  align-self: center;
}

.present-result {
  display: grid;
  grid-template-columns: minmax(170px, 300px) 1fr 72px;
  gap: 20px;
  align-items: center;
  font-size: 22px;
  font-weight: 730;
}

.present-result .bar {
  height: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.present-result .bar > span {
  background: linear-gradient(90deg, #74e0df, #5c75ef);
}

.present-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.present-bottom section {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.present-bottom h3 {
  margin: 0 0 14px;
  color: #c5dbe3;
  font-size: 15px;
  text-transform: uppercase;
}

.present-qna {
  display: grid;
  gap: 12px;
}

.present-qna div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.leaderboard {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
}

.leaderboard li {
  padding: 7px 0;
  color: #eef9ff;
  font-size: 18px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .sidebar .nav-section,
  .sidebar-footer {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr;
    padding: 14px 18px;
  }

  .mode-switcher,
  .account-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dashboard-grid,
  .lower-grid,
  .participant-layout,
  .present-bottom {
    grid-template-columns: 1fr;
  }

  .side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .brand {
    min-height: 60px;
  }

  .screen {
    padding: 12px;
  }

  .tabbar {
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px;
  }

  .dashboard-grid,
  .lower-grid,
  .side-column {
    grid-template-columns: 1fr;
  }

  .activity-row {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .activity-row.heading {
    display: none;
  }

  .activity-row > span:nth-child(3),
  .activity-row > span:nth-child(4),
  .activity-row > span:nth-child(5) {
    grid-column: 2;
  }

  .row-actions,
  .quick-controls,
  .present-top,
  .participant-header {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-controls > div {
    justify-content: stretch;
  }

  .quick-controls .button,
  .mode-button {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statusbar {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 14px;
  }

  .present-result {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .present-join {
    min-width: 0;
  }
}

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