/* src/styles.css */
:root {
  --bg: #040507;
  --bg-soft: #0b0d12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --card-border: rgba(228, 247, 238, 0.13);
  --text: #f4f7f9;
  --muted: #a9b3be;
  --accent: #dff7ee;
  --accent-strong: #c6f1df;
  --accent-2: #e347ba;
  --accent-2-soft: #f38cd7;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(223, 247, 238, 0.15),
      transparent 20rem),
    radial-gradient(
      circle at 85% 20%,
      rgba(227, 71, 186, 0.16),
      transparent 22rem),
    radial-gradient(
      circle at 60% 80%,
      rgba(227, 71, 186, 0.08),
      transparent 24rem),
    linear-gradient(
      180deg,
      #090a0e 0%,
      #040507 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.018) 25%,
      transparent 25%),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.018) 25%,
      transparent 25%);
  background-size: 48px 48px;
  mask-image:
    radial-gradient(
      circle at center,
      black 50%,
      transparent 100%);
  opacity: .25;
}
a {
  color: inherit;
}
.app-shell {
  min-height: 100vh;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(20px);
  background: rgba(4, 5, 7, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.brand-copy {
  display: grid;
  gap: .15rem;
}
.brand-copy strong {
  font-size: 1rem;
  letter-spacing: .03em;
}
.brand-copy small {
  color: var(--muted);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 2px rgba(223, 247, 238, 0.08), 0 0 30px rgba(227, 71, 186, .16);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: .72rem .96rem;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a.active,
.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.login-pill {
  border: 1px solid rgba(227, 71, 186, .35);
  background:
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .06),
      rgba(227, 71, 186, .12));
}
.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 2rem;
  align-items: center;
  min-height: 72vh;
}
.hero h1,
.page-heading h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: .95;
  margin: 0 0 1.2rem;
  letter-spacing: -0.06em;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.72;
  max-width: 68ch;
}
.eyebrow,
.tag {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 800;
}
.actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent) 10%,
      var(--accent-2-soft) 90%);
  box-shadow: 0 18px 35px rgba(227, 71, 186, .18);
}
.button.secondary {
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  border: 1px solid var(--card-border);
}
.button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
.glass,
.card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .04));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card {
  border-radius: var(--radius);
  padding: 1.45rem;
}
.accent-card {
  position: relative;
  overflow: hidden;
}
.accent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      140deg,
      rgba(223, 247, 238, .08),
      transparent 30%,
      rgba(227, 71, 186, .07));
}
.profile-card {
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.hero-visual {
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}
.avatar-stage {
  position: relative;
  width: min(20rem, 75vw);
  aspect-ratio: 1;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
}
.avatar-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(227, 71, 186, .2));
}
.avatar-photo {
  width: 64%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.stats {
  display: grid;
  gap: .7rem;
  margin-top: 1.5rem;
}
.stats span {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, .05);
  border-radius: 1rem;
  padding: .75rem .9rem;
  color: var(--muted);
}
.stats strong {
  color: var(--text);
}
.hero-pills {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.hero-pills span {
  padding: .52rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .07);
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 1rem;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.card h2,
.card h3 {
  margin-top: 0;
}
.card p,
.clean-list {
  color: var(--muted);
  line-height: 1.65;
}
.channel-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.channel-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}
.channel-footer a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}
.quiz-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}
.form-preview {
  display: grid;
  gap: .8rem;
  margin: 1.2rem 0;
}
.form-preview label {
  color: var(--muted);
  display: grid;
  gap: .35rem;
}
.form-preview input,
.active-form select {
  border: 1px solid var(--card-border);
  background: rgba(0, 0, 0, .24);
  border-radius: 1rem;
  padding: .8rem;
  color: var(--text);
}
.active-form select option {
  color: #111;
}
.join-code {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: .08em;
  padding: 1rem 0;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title {
  margin: 0 0 1rem;
}
.timeline {
  display: grid;
  gap: .8rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--card-border);
}
.timeline-item span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .9rem;
  background:
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .2),
      rgba(227, 71, 186, .28));
  font-weight: 900;
}
.timeline-item h3 {
  margin: 0 0 .25rem;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.clean-list {
  padding-left: 1.1rem;
}
.creator-panel,
.auth-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}
.info-card {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.permission-list {
  display: grid;
  gap: .75rem;
}
.permission-list div {
  display: grid;
  gap: .2rem;
  padding: .9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--card-border);
}
.permission-list span,
small {
  color: var(--muted);
  line-height: 1.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.big-stat span {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -.06em;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.big-stat p {
  margin-bottom: 0;
}
.question-table {
  overflow: hidden;
  padding: 0;
}
.table-row {
  display: grid;
  grid-template-columns: 1fr .6fr .8fr 2fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--card-border);
  color: var(--muted);
}
.table-row:last-child {
  border-bottom: 0;
}
.table-head {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
}
@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .hero,
  .grid.three,
  .grid.two,
  .quiz-layout,
  .creator-panel,
  .auth-layout,
  .stats-grid,
  .table-row {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: unset;
    padding-top: 4rem;
  }
  .brand-copy small {
    display: none;
  }
}
.premium-heading {
  position: relative;
}
.premium-heading::after {
  content: "";
  display: block;
  width: min(22rem, 70vw);
  height: 4px;
  margin-top: 1.4rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-2));
  box-shadow: 0 0 35px rgba(227, 71, 186, .25);
}
.archive-list {
  display: grid;
  gap: 1rem;
}
.show-event-card {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, .36fr);
  gap: 1.2rem;
  align-items: stretch;
}
.show-event-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  letter-spacing: -.04em;
  margin: .35rem 0 .75rem;
}
.event-main p:last-child {
  margin-bottom: 0;
}
.event-meta {
  display: grid;
  gap: .7rem;
  align-content: center;
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .08);
}
.event-meta span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.event-meta strong {
  color: var(--text);
}
.back-link {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 800;
}
.detail-hero .lead {
  max-width: 100%;
}
.participant-list {
  display: grid;
  gap: .75rem;
}
.participant-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: .9rem;
  align-items: center;
  padding: .9rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
}
.participant-row .place {
  display: grid;
  place-items: center;
  min-height: 2.7rem;
  border-radius: .9rem;
  font-weight: 950;
  color: #080a0d;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
}
.participant-row small {
  display: block;
  margin-top: .15rem;
}
.result-grid {
  display: grid;
  gap: 1rem;
}
.result-card h3 {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  letter-spacing: -.03em;
}
.result-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1rem;
}
.result-facts span {
  display: grid;
  gap: .25rem;
  padding: .9rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, .18);
  color: var(--muted);
}
.result-facts strong {
  color: var(--text);
}
.empty-state {
  padding: 2rem;
}
.button.ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 820px) {
  .show-event-card,
  .result-facts {
    grid-template-columns: 1fr;
  }
}
.content-home,
.past-section {
  width: calc(100% - 10em);
  max-width: none;
}
.content-home {
  padding-top: 2rem;
}
.content-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}
.compact-header h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7.4vw, 5.8rem);
  line-height: .86;
  letter-spacing: -.08em;
  font-weight: 950;
  background:
    linear-gradient(
      135deg,
      var(--text) 10%,
      var(--accent) 48%,
      var(--accent-2-soft) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.past-header h1 {
  font-size: clamp(2.35rem, 6.2vw, 5.05rem);
}
.planner-week {
  padding: 1.1rem;
  border-radius: var(--radius);
}
.calendar-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: .55rem;
  border-radius: 1.4rem;
  background: rgba(0, 0, 0, .16);
  border: 1px solid rgba(255, 255, 255, .07);
}
.calendar-title {
  display: grid;
  place-items: center;
  gap: .15rem;
  text-align: center;
}
.calendar-title span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .18em;
  font-weight: 900;
}
.calendar-title strong {
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  letter-spacing: -.035em;
}
.arrow-button {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  color: var(--text);
  background:
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .08),
      rgba(227, 71, 186, .11));
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.arrow-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(227, 71, 186, .14);
}
.arrow-button:disabled {
  opacity: .32;
  cursor: not-allowed;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(8.7rem, 1fr));
  gap: .38rem;
  overflow-x: auto;
  padding-bottom: .15rem;
}
.calendar-grid {
  min-height: 24rem;
}
.day-column {
  min-height: 24rem;
  padding: .72rem;
  border-radius: 1.1rem;
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .075);
}
.day-column.today {
  border-color: rgba(223, 247, 238, .62);
  box-shadow: inset 0 0 0 1px rgba(227, 71, 186, .2), 0 0 34px rgba(223, 247, 238, .08);
}
.day-head {
  display: grid;
  gap: .16rem;
  padding-bottom: .62rem;
  margin-bottom: .62rem;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}
.day-head strong {
  font-size: 1.1rem;
}
.day-head span {
  color: var(--muted);
  font-size: .86rem;
}
.day-head em {
  display: none;
}
.day-entries {
  display: grid;
  gap: .42rem;
}
.plan-entry {
  position: relative;
  display: block;
  min-height: 5.05rem;
  padding: .62rem 2.05rem .62rem .76rem;
  border-radius: .78rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
}
.plan-entry::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
}
.plan-entry.youtube {
  background:
    linear-gradient(
      90deg,
      rgba(255, 0, 51, .22),
      rgba(255, 0, 51, .13));
}
.plan-entry.twitch {
  background:
    linear-gradient(
      90deg,
      rgba(145, 70, 255, .24),
      rgba(145, 70, 255, .13));
}
.plan-entry.short {
  background:
    linear-gradient(
      90deg,
      rgba(37, 244, 238, .2),
      rgba(254, 44, 85, .14));
}
.plan-entry.youtube::before {
  background: #ff0033;
}
.plan-entry.twitch::before {
  background: #9146ff;
}
.plan-entry.short::before {
  background:
    linear-gradient(
      180deg,
      #25f4ee,
      #fe2c55);
}
.platform-icon {
  position: absolute;
  top: .58rem;
  right: .58rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: .42rem;
  font-size: .76rem;
  font-weight: 950;
  background: rgba(255, 255, 255, .1);
}
.plan-entry.youtube .platform-icon {
  background: #ff0033;
  color: white;
}
.plan-entry.twitch .platform-icon {
  background: #9146ff;
  color: white;
}
.plan-entry.short .platform-icon {
  background:
    linear-gradient(
      135deg,
      #25f4ee,
      #fe2c55);
  color: #ffffff;
}
.entry-time {
  display: block;
  font-size: .98rem;
  color: var(--text);
  font-weight: 800;
  margin-bottom: .34rem;
}
.plan-entry strong {
  display: block;
  max-width: 13.5rem;
  line-height: 1.18;
  font-size: .95rem;
}
.plan-entry small,
.empty-day {
  color: var(--muted);
  line-height: 1.35;
}
.plan-entry small {
  display: block;
  margin-top: .16rem;
}
.history-entry b {
  display: inline-flex;
  margin-top: .42rem;
  color: var(--accent-strong);
  font-size: .78rem;
}
.empty-day {
  margin: 0;
  font-size: .9rem;
}
.past-section {
  padding-top: 1.35rem;
}
.history-calendar .day-column {
  min-height: 21rem;
}
@media (max-width: 1250px) {
  .content-home,
  .past-section {
    width: min(1120px, calc(100% - 2rem));
  }
  .week-grid {
    grid-template-columns: repeat(7, minmax(9.2rem, 1fr));
  }
}
@media (max-width: 820px) {
  .content-header {
    align-items: start;
    flex-direction: column;
  }
  .calendar-toolbar {
    grid-template-columns: auto 1fr auto;
  }
  .week-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .day-column,
  .history-calendar .day-column {
    min-height: unset;
  }
}
html,
body {
  height: 100%;
  overflow: hidden;
}
.app-shell {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.topbar {
  position: relative;
  flex: 0 0 auto;
}
main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(227, 71, 186, .78) rgba(255, 255, 255, .045);
}
main::-webkit-scrollbar,
.week-grid::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
main::-webkit-scrollbar-track,
.week-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .045);
  border-left: 1px solid rgba(255, 255, 255, .055);
}
main::-webkit-scrollbar-thumb,
.week-grid::-webkit-scrollbar-thumb {
  border: 3px solid rgba(8, 8, 11, .96);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--accent-2-soft));
  box-shadow: 0 0 18px rgba(227, 71, 186, .28);
}
main::-webkit-scrollbar-thumb:hover,
.week-grid::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      var(--accent-2));
}
.week-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(227, 71, 186, .78) rgba(255, 255, 255, .045);
}
.channels-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
}
.channels-heading {
  margin-bottom: 1.35rem;
}
.channel-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.channel-tile {
  position: relative;
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .055);
  box-shadow: var(--shadow);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}
.channel-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .5);
}
.channel-glow {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  filter: blur(30px);
  opacity: .6;
  pointer-events: none;
}
.channel-tile.youtube {
  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 51, .26),
      rgba(18, 18, 18, .92) 56%);
}
.channel-tile.youtube .channel-glow {
  background: #ff0033;
}
.channel-tile.youtube-shorts {
  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 51, .2),
      rgba(227, 71, 186, .13),
      rgba(18, 18, 18, .93) 62%);
}
.channel-tile.youtube-shorts .channel-glow {
  background:
    linear-gradient(
      90deg,
      #ff0033,
      var(--accent-2));
}
.channel-tile.twitch {
  background:
    linear-gradient(
      135deg,
      rgba(145, 70, 255, .3),
      rgba(18, 18, 18, .93) 58%);
}
.channel-tile.twitch .channel-glow {
  background: #9146ff;
}
.channel-tile.tiktok {
  background:
    linear-gradient(
      135deg,
      rgba(37, 244, 238, .17),
      rgba(254, 44, 85, .2),
      rgba(18, 18, 18, .93) 62%);
}
.channel-tile.tiktok .channel-glow {
  background:
    linear-gradient(
      90deg,
      #25f4ee,
      #fe2c55);
}
.channel-tile.discord {
  background:
    linear-gradient(
      135deg,
      rgba(88, 101, 242, .28),
      rgba(18, 18, 18, .93) 58%);
}
.channel-tile.discord .channel-glow {
  background: #5865f2;
}
.channel-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 950;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .13);
}
.channel-tile.youtube .channel-icon,
.channel-tile.youtube-shorts .channel-icon {
  background: #ff0033;
}
.channel-tile.twitch .channel-icon {
  background: #9146ff;
}
.channel-tile.tiktok .channel-icon {
  background:
    linear-gradient(
      135deg,
      #25f4ee,
      #fe2c55);
}
.channel-tile.discord .channel-icon {
  background: #5865f2;
}
.channel-content,
.channel-bottom {
  position: relative;
  z-index: 1;
}
.channel-content small {
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 900;
}
.channel-content h2 {
  margin: .6rem 0 .35rem;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.channel-content p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
}
.channel-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .74);
}
.channel-bottom strong {
  color: var(--text);
}
@media (max-width: 1250px) {
  .channels-page {
    width: min(1120px, calc(100% - 2rem));
  }
  .channel-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .channel-showcase {
    grid-template-columns: 1fr;
  }
  .channel-tile {
    min-height: 14rem;
  }
}
.page-title-block {
  display: inline-grid;
  gap: .9rem;
  margin-bottom: 1.25rem;
}
.page-title-block h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7.2vw, 5.9rem);
  line-height: .86;
  letter-spacing: -.08em;
  font-weight: 950;
  background:
    linear-gradient(
      135deg,
      var(--text) 10%,
      var(--accent) 48%,
      var(--accent-2-soft) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-title-block .title-line {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-2));
  box-shadow: 0 0 35px rgba(227, 71, 186, .25);
}
.past-title h1 {
  font-size: clamp(2.35rem, 6.2vw, 5.05rem);
}
.channels-heading,
.shows-title {
  margin-bottom: 1.35rem;
}
.shows-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.shows-list {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 0;
}
.show-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  padding: 1rem;
}
.show-filters label {
  display: grid;
  gap: .45rem;
}
.show-filters span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.show-filters select {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  background: rgba(0, 0, 0, .26);
  color: var(--text);
  padding: .85rem .95rem;
  outline: none;
}
.show-filters select:focus {
  border-color: rgba(227, 71, 186, .55);
  box-shadow: 0 0 0 3px rgba(227, 71, 186, .11);
}
.show-filters option {
  color: #111;
}
.show-event-card {
  border-radius: calc(var(--radius) + 4px);
}
.show-event-card h2 {
  margin-top: .2rem;
}
.premium-heading::after {
  width: 100%;
}
@media (max-width: 1250px) {
  .shows-page,
  .shows-list {
    width: min(1120px, calc(100% - 2rem));
  }
}
@media (max-width: 820px) {
  .page-title-block h1 {
    font-size: clamp(2.55rem, 14vw, 4.6rem);
  }
  .show-filters {
    grid-template-columns: 1fr;
  }
}
.login-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
}
.login-heading {
  margin-bottom: 1.35rem;
}
.login-card {
  width: min(32rem, 100%);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}
.login-card label {
  display: grid;
  gap: .45rem;
}
.login-card label span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.login-card input {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  background: rgba(0, 0, 0, .26);
  color: var(--text);
  padding: .95rem 1rem;
  outline: none;
  font: inherit;
}
.login-card input:focus {
  border-color: rgba(227, 71, 186, .55);
  box-shadow: 0 0 0 3px rgba(227, 71, 186, .11);
}
.login-card .button {
  margin-top: .25rem;
  width: 100%;
}
@media (max-width: 1250px) {
  .login-page {
    width: min(1120px, calc(100% - 2rem));
  }
}
.creator-space-link {
  border: 1px solid rgba(223, 247, 238, .22);
  background:
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .08),
      rgba(227, 71, 186, .11));
}
.login-error {
  margin: 0;
  color: #ffb7d9 !important;
  border: 1px solid rgba(227, 71, 186, .35);
  background: rgba(227, 71, 186, .1);
  border-radius: 1rem;
  padding: .85rem 1rem;
}
.creator-space-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
}
.creator-space-heading {
  margin-bottom: 1.35rem;
}
.creator-welcome {
  width: min(44rem, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  margin-bottom: 1rem;
}
.creator-welcome small,
.creator-space-card small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.creator-welcome h2 {
  margin: .2rem 0 0;
}
.creator-welcome > span {
  border-radius: 999px;
  padding: .7rem .95rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-weight: 900;
}
.creator-space-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.creator-space-card {
  min-height: 15rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}
.creator-space-card h2 {
  margin: .35rem 0 .2rem;
}
.creator-space-card p {
  margin: 0;
}
.disabled-card {
  opacity: .68;
}
@media (max-width: 1250px) {
  .creator-space-page {
    width: min(1120px, calc(100% - 2rem));
  }
  .creator-space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .creator-welcome {
    align-items: flex-start;
    flex-direction: column;
  }
  .creator-space-grid {
    grid-template-columns: 1fr;
  }
}
.question-catalog-page,
.question-table-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
}
.question-catalog-heading,
.question-table-heading {
  margin-bottom: 1.35rem;
}
.question-pool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.question-pool-card {
  min-height: 18rem;
  display: grid;
  align-content: space-between;
  gap: 1.05rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}
.question-pool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 71, 186, .45);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48), 0 0 0 1px rgba(227, 71, 186, .14);
}
.pool-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.pool-card-head small,
.question-table-overview small,
.question-structure small,
.question-row-side span,
.question-answer span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.pool-card-head h2 {
  margin: .3rem 0 .25rem;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  letter-spacing: -.04em;
}
.pool-card-head p {
  margin: 0;
  color: var(--muted);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
}
.pool-card-head > span {
  border-radius: 999px;
  padding: .65rem .85rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-weight: 850;
  white-space: nowrap;
}
.pool-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.pool-stats div {
  display: grid;
  gap: .25rem;
  min-height: 5.2rem;
  align-content: center;
  border-radius: 1.1rem;
  padding: .8rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--card-border);
}
.pool-stats strong {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pool-stats span,
.pool-description {
  color: var(--muted);
  line-height: 1.45;
}
.pool-description {
  margin: 0;
}
.no-access-card {
  width: min(42rem, 100%);
}
.question-table-overview {
  display: grid;
  grid-template-columns: 1.2fr 1fr .65fr .8fr;
  gap: .75rem;
  padding: 1rem;
  margin-bottom: .85rem;
}
.question-table-overview div {
  display: grid;
  gap: .35rem;
  padding: .9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--card-border);
}
.question-table-overview strong {
  font-size: 1.05rem;
}
.question-structure {
  display: grid;
  gap: .75rem;
  margin-bottom: .85rem;
}
.question-structure > div {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.question-structure span {
  border-radius: 999px;
  padding: .55rem .75rem;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--card-border);
}
.question-list {
  display: grid;
  gap: .85rem;
}
.question-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: 1rem;
  border-left: 4px solid var(--accent-2);
}
.question-row.played {
  border-left-color: var(--accent);
  opacity: .86;
}
.question-row h2 {
  margin: .25rem 0 .85rem;
  letter-spacing: -.035em;
}
.question-answer,
.question-row-side div {
  display: grid;
  gap: .25rem;
  border-radius: 1rem;
  padding: .8rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--card-border);
}
.question-answer strong {
  line-height: 1.45;
}
.question-row-side {
  display: grid;
  gap: .65rem;
  align-content: start;
}
.question-row-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 1250px) {
  .question-catalog-page,
  .question-table-page {
    width: min(1120px, calc(100% - 2rem));
  }
}
@media (max-width: 920px) {
  .question-pool-grid,
  .question-row,
  .question-table-overview {
    grid-template-columns: 1fr;
  }
  .pool-card-head {
    flex-direction: column;
  }
  .pool-stats {
    grid-template-columns: 1fr;
  }
}
.question-editor {
  display: grid;
  gap: 1rem;
  margin-bottom: .85rem;
}
.question-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.question-editor-head small,
.dynamic-question-form label > span,
.dynamic-question-form label > small,
.question-data-grid span,
.save-message {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.question-editor-head h2 {
  margin: .25rem 0 0;
  letter-spacing: -.04em;
}
.dynamic-question-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.dynamic-question-form label {
  display: grid;
  gap: .4rem;
  padding: .85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--card-border);
}
.dynamic-question-form label > span {
  color: var(--accent-2-soft);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
}
.dynamic-question-form input,
.dynamic-question-form textarea,
.dynamic-question-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .26);
  border-radius: .9rem;
  padding: .8rem .85rem;
  color: var(--text);
  outline: none;
  font: inherit;
}
.dynamic-question-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}
.dynamic-question-form input:focus,
.dynamic-question-form textarea:focus,
.dynamic-question-form select:focus {
  border-color: rgba(227, 71, 186, .65);
  box-shadow: 0 0 0 3px rgba(227, 71, 186, .12);
}
.dynamic-question-form select option {
  color: #111;
}
.full-field,
.form-actions {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.compact-button {
  padding: .72rem 1rem;
  font-size: .9rem;
}
.save-message {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.question-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.question-data-grid div {
  display: grid;
  gap: .25rem;
  border-radius: 1rem;
  padding: .72rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--card-border);
}
.question-data-grid strong {
  line-height: 1.35;
  overflow-wrap: anywhere;
}
@media (max-width: 920px) {
  .dynamic-question-form,
  .question-data-grid {
    grid-template-columns: 1fr;
  }
  .question-editor-head {
    flex-direction: column;
  }
}
.clean-pool-head {
  align-items: center;
}
.clean-pool-head h2 {
  margin: 0;
}
.question-pool-card {
  min-height: 14.5rem;
}
.question-detail-topline {
  margin: .2rem 0 .65rem;
}
.question-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.question-title-row .question-table-heading {
  margin-bottom: 0;
}
.compact-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-overview div {
  min-height: 5.4rem;
  align-content: center;
}
.compact-overview strong {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.question-row {
  position: relative;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, .6fr);
  padding-top: 3.35rem;
}
.edit-question-button {
  position: absolute;
  top: .95rem;
  right: .95rem;
  min-width: 7.4rem;
  justify-content: center;
  border-color: rgba(227, 71, 186, .34);
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.edit-question-button:hover {
  border-color: rgba(227, 71, 186, .7);
  box-shadow: 0 12px 28px rgba(227, 71, 186, .12);
}
.question-row-side {
  padding-top: .15rem;
  padding-right: 8.1rem;
}
.question-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, .64);
  backdrop-filter: blur(14px);
}
.question-modal {
  width: min(74rem, calc(100vw - 2.5rem));
  max-height: min(48rem, calc(100vh - 2.5rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  overflow: hidden;
  border-color: rgba(227, 71, 186, .36);
}
.modal-head {
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--card-border);
}
.modal-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}
.modal-close {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover {
  border-color: rgba(227, 71, 186, .7);
}
.modal-form {
  min-height: 0;
  overflow: auto;
  padding-right: .25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}
.modal-form label {
  padding: .72rem;
}
.modal-form textarea {
  min-height: 4.8rem;
  max-height: 8.2rem;
}
.modal-form input,
.modal-form textarea,
.modal-form select {
  padding: .7rem .8rem;
}
.modal-actions {
  position: sticky;
  bottom: 0;
  padding-top: .85rem;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(10, 10, 14, .92) 24%);
}
@media (max-width: 920px) {
  .question-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .compact-overview,
  .modal-form {
    grid-template-columns: 1fr;
  }
  .question-row-side {
    padding-right: 0;
  }
  .edit-question-button {
    position: static;
    order: -1;
    width: max-content;
    margin-left: auto;
  }
  .question-row {
    padding-top: 1.45rem;
  }
}
.show-lobby-page {
  width: calc(100% - 10em);
  max-width: none;
  padding-top: 2rem;
}
.show-lobby-heading {
  margin-bottom: 1.35rem;
}
.show-lobby-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, .32fr);
  gap: .85rem;
  align-items: stretch;
  margin-bottom: .85rem;
}
.wide-join-card,
.active-shows-card,
.show-lobby-filter-block {
  padding: 1.2rem;
}
.compact-head {
  margin-bottom: .9rem;
}
.lobby-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.lobby-card-head small,
.show-lobby-form label span,
.join-code-form label span,
.prepared-meta span,
.active-code-list small,
.joined-show-box small,
.show-lobby-filter-block label span,
.modal-head small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.lobby-card-head h2,
.modal-head h2 {
  margin: .2rem 0 0;
  letter-spacing: -.04em;
}
.wide-join-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: end;
}
.join-code-form label,
.show-lobby-form label,
.show-lobby-filter-block label {
  display: grid;
  gap: .45rem;
}
.show-lobby-form input,
.show-lobby-form textarea,
.show-lobby-form select,
.join-code-form input,
.show-lobby-filter-block select {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  background: rgba(0, 0, 0, .26);
  color: var(--text);
  padding: .85rem .95rem;
  outline: none;
  font: inherit;
}
.show-lobby-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}
.show-lobby-form select option,
.show-lobby-filter-block select option {
  color: #111;
}
.show-lobby-form input:focus,
.show-lobby-form textarea:focus,
.show-lobby-form select:focus,
.join-code-form input:focus,
.show-lobby-filter-block select:focus {
  border-color: rgba(227, 71, 186, .55);
  box-shadow: 0 0 0 3px rgba(227, 71, 186, .11);
}
.joined-show-box,
.active-code-list {
  display: grid;
  gap: .45rem;
  padding: .9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--card-border);
}
.compact-result {
  margin-top: .85rem;
}
.joined-show-box h3 {
  margin: 0;
}
.joined-show-box p,
.active-code-list p {
  margin: 0;
  color: var(--muted);
}
.active-code-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .65rem .75rem;
  border-radius: .85rem;
  background: rgba(0, 0, 0, .2);
}
.active-code-list span {
  color: var(--muted);
}
.active-code-list strong {
  letter-spacing: .08em;
  color: var(--text);
}
.show-lobby-command-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin: .95rem 0;
}
.lobby-message {
  margin: 1rem 0 0;
  padding: .8rem .95rem;
  border-radius: 1rem;
  background: rgba(223, 247, 238, .08);
  border: 1px solid rgba(223, 247, 238, .2);
  color: var(--accent-strong) !important;
  font-weight: 800;
}
.inline-message {
  margin: 0;
}
.lobby-message.error {
  color: #ffb7d9 !important;
  background: rgba(227, 71, 186, .1);
  border-color: rgba(227, 71, 186, .35);
}
.show-lobby-filter-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: .8rem;
}
.show-status-tabs {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}
.show-status-tabs button {
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--muted);
  padding: .72rem 1rem;
  font-weight: 900;
  cursor: pointer;
}
.show-status-tabs button.active,
.show-status-tabs button:hover {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  border-color: transparent;
}
.prepared-show-list {
  display: grid;
  gap: .85rem;
}
.prepared-show-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, .85fr) auto;
  gap: 1rem;
  align-items: center;
  border-left: 4px solid rgba(255, 255, 255, .18);
}
.prepared-show-card.active-show {
  border-left-color: var(--accent-2);
}
.prepared-show-card.finished-show {
  border-left-color: rgba(223, 247, 238, .65);
  opacity: .88;
}
.prepared-main h2 {
  margin: .55rem 0 .35rem;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  letter-spacing: -.045em;
}
.prepared-main p {
  margin: 0;
  color: var(--muted);
}
.show-status-pill {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: .45rem .7rem;
  font-size: .78rem;
  font-weight: 900;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--card-border);
}
.show-status-pill.status-active {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
}
.show-status-pill.status-finished {
  color: var(--accent-strong);
  background: rgba(223, 247, 238, .07);
  border-color: rgba(223, 247, 238, .2);
}
.prepared-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}
.prepared-meta div {
  display: grid;
  gap: .25rem;
  padding: .75rem;
  border-radius: .95rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--card-border);
}
.prepared-meta strong {
  overflow-wrap: anywhere;
}
.prepared-actions {
  display: grid;
  gap: .55rem;
  min-width: 9rem;
}
.empty-show-card {
  min-height: 9rem;
  display: grid;
  place-items: center;
}
.show-lobby-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, .66);
  backdrop-filter: blur(14px);
}
.show-lobby-modal {
  width: min(980px, calc(100vw - 2rem));
  max-height: min(760px, calc(100vh - 3rem));
  overflow: auto;
  padding: 1.25rem;
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.modal-close {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.modal-show-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.full-field {
  grid-column: 1 / -1;
}
.show-lobby-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1250px) {
  .show-lobby-page {
    width: min(1120px, calc(100% - 2rem));
  }
  .show-lobby-top-grid,
  .prepared-show-card {
    grid-template-columns: 1fr;
  }
  .prepared-actions {
    grid-template-columns: repeat(2, max-content);
  }
}
@media (max-width: 720px) {
  .wide-join-form,
  .show-lobby-filter-block,
  .modal-show-form,
  .prepared-meta {
    grid-template-columns: 1fr;
  }
  .show-lobby-actions,
  .prepared-actions {
    grid-template-columns: 1fr;
  }
  .show-lobby-modal-backdrop {
    padding: .75rem;
  }
}
.prepared-meta-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.show-filter-field {
  display: grid;
  gap: .8rem;
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  padding: .9rem;
  background: rgba(255, 255, 255, .035);
}
.show-filter-field legend {
  padding: 0 .35rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.choice-grid,
.usage-toggle-grid {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}
.choice-chip {
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--muted);
  padding: .68rem .9rem;
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
}
.choice-chip:hover,
.choice-chip.active {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  border-color: transparent;
}
.big-choice {
  border-radius: 1rem;
  min-height: 3rem;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: .7rem;
}
.range-grid label {
  display: grid;
  gap: .45rem;
  padding: .8rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, .2);
  border: 1px solid var(--card-border);
}
.range-grid label span,
.range-grid label strong {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .13em;
  font-weight: 900;
}
.range-grid label strong {
  color: var(--text);
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.range-grid input[type=range] {
  padding: 0;
  accent-color: var(--accent-2);
}
@media (max-width: 1250px) {
  .prepared-meta-expanded,
  .range-grid {
    grid-template-columns: 1fr;
  }
}
.helper-text {
  margin: .75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.inline-number-field {
  margin-top: .85rem;
  max-width: 18rem;
}
.inline-number-field input {
  max-width: 100%;
}
.show-lobby-modal {
  width: min(1280px, calc(100vw - 40em));
  max-height: min(860px, calc(100vh - 3rem));
}
.notes-field textarea {
  min-height: 9rem;
}
.generated-questions-panel {
  display: grid;
  gap: .9rem;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .035);
}
.generated-questions-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.generated-questions-head small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 950;
}
.generated-questions-head h3 {
  margin: .25rem 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.04em;
}
.generated-actions {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.generated-actions span {
  display: inline-flex;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  padding: .65rem .85rem;
  color: var(--muted);
  font-weight: 900;
}
.generated-question-list {
  display: grid;
  gap: .7rem;
  max-height: 30rem;
  overflow: auto;
  padding-right: .35rem;
}
.generated-question-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr) auto;
  gap: .75rem;
  align-items: end;
  padding: .9rem;
  border-radius: 1.05rem;
  border: 1px solid var(--card-border);
  background:
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .045),
      rgba(227, 71, 186, .055));
}
.generated-question-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  color: var(--muted);
}
.generated-question-meta strong,
.generated-question-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
  font-size: .78rem;
  font-weight: 900;
}
.generated-question-meta strong {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
}
.generated-question-card label {
  display: grid;
  gap: .35rem;
}
.generated-question-card label span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .14em;
  font-weight: 950;
}
.question-remove-button {
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  padding: .8rem 1rem;
  font-weight: 900;
  cursor: pointer;
}
.question-remove-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .1);
}
.generated-empty-state {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px dashed var(--card-border);
  color: var(--muted);
  background: rgba(0, 0, 0, .16);
}
.generated-empty-state h3 {
  margin: 0 0 .35rem;
  color: var(--text);
}
.generated-empty-state p {
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1500px) {
  .show-lobby-modal {
    width: min(1180px, calc(100vw - 4rem));
  }
}
@media (max-width: 900px) {
  .generated-questions-head,
  .generated-actions,
  .generated-question-card {
    grid-template-columns: 1fr;
  }
  .generated-questions-head {
    display: grid;
  }
  .question-remove-button {
    width: max-content;
  }
}
.show-room-page {
  width: min(1280px, calc(100% - 5rem));
}
.back-link {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
}
.back-link:hover {
  color: var(--text);
}
.room-heading h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -.06em;
  margin: 0;
  text-transform: uppercase;
}
.room-summary-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}
.room-info-card,
.room-start-card,
.room-settings-card,
.room-preview-card,
.room-state-card {
  display: grid;
  gap: .8rem;
}
.room-info-card small,
.room-start-card small,
.room-card-head small,
.room-section-head small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 950;
}
.room-info-card h2,
.room-start-card h2,
.room-card-head h2,
.room-section-head h2 {
  margin: 0;
  letter-spacing: -.04em;
}
.room-info-card p,
.room-start-card p,
.room-helper,
.moderator-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.room-code-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .055);
}
.room-code-line span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 950;
}
.room-code-line strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: .08em;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.room-start-card.started {
  border-color: rgba(223, 247, 238, .28);
}
.room-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  margin-top: 1rem;
}
.room-settings-form {
  display: grid;
  gap: .85rem;
}
.room-settings-form label {
  display: grid;
  gap: .35rem;
}
.room-settings-form label span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 950;
}
.room-settings-form input,
.room-settings-form select {
  border: 1px solid var(--card-border);
  background: rgba(0, 0, 0, .24);
  border-radius: 1rem;
  padding: .9rem;
  color: var(--text);
}
.room-settings-form select option {
  color: #111;
}
.device-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.camera-preview {
  min-height: 24rem;
  display: grid;
  place-content: center;
  gap: .45rem;
  text-align: center;
  border-radius: 1.4rem;
  border: 1px solid rgba(223, 247, 238, .18);
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(223, 247, 238, .13),
      transparent 14rem),
    linear-gradient(
      135deg,
      rgba(223, 247, 238, .065),
      rgba(227, 71, 186, .08));
}
.camera-preview.disabled {
  background: rgba(0, 0, 0, .22);
  border-style: dashed;
}
.camera-preview span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 950;
}
.camera-preview strong {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.06em;
}
.camera-preview small {
  color: var(--muted);
}
.room-participants-section {
  margin-top: 1rem;
}
.room-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.room-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.room-section-head > span {
  color: var(--muted);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: .6rem .8rem;
  background: rgba(255, 255, 255, .055);
  font-weight: 900;
}
.room-participant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.participant-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
}
.participant-card.moderator-card {
  border-color: rgba(227, 71, 186, .32);
}
.participant-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  font-weight: 950;
}
.participant-card h3 {
  margin: 0;
}
.participant-card p {
  margin: .15rem 0 0;
  color: var(--muted);
}
.participant-devices {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.participant-devices span {
  border: 1px solid rgba(223, 247, 238, .18);
  border-radius: 999px;
  padding: .35rem .55rem;
  font-size: .72rem;
  font-weight: 950;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, .055);
}
.participant-devices span.off {
  color: var(--muted);
  opacity: .55;
}
@media (max-width: 1050px) {
  .show-room-page {
    width: min(1120px, calc(100% - 2rem));
  }
  .room-summary-grid,
  .room-layout,
  .room-participant-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .device-toggle-grid,
  .participant-card {
    grid-template-columns: 1fr;
  }
  .room-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
.room-preview-card {
  align-content: start;
}
.camera-preview {
  position: relative;
  overflow: hidden;
}
.camera-preview.has-video {
  background: #050609;
  border-color: rgba(223, 247, 238, .28);
}
.preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.preview-video.hidden {
  display: none;
}
.preview-placeholder {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .45rem;
}
.preview-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: .25rem;
  text-align: left;
  padding: .9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, .62),
      rgba(0, 0, 0, .32));
  backdrop-filter: blur(12px);
}
.preview-overlay strong {
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.preview-overlay small {
  color: var(--muted);
}
.microphone-preview {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .045);
}
.microphone-preview.disabled {
  opacity: .65;
  border-style: dashed;
}
.microphone-preview span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 950;
}
.microphone-preview strong {
  display: block;
  margin-top: .25rem;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.35;
}
.mic-meter {
  height: .8rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .28);
}
.mic-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-2-soft));
  transition: width .08s linear;
}
.media-error {
  border: 1px solid rgba(227, 71, 186, .35);
  border-radius: 1rem;
  padding: .8rem;
  background: rgba(227, 71, 186, .08);
}
.socket-pill {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .5rem .75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .055);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.socket-pill.connected {
  color: var(--accent-strong);
  border-color: rgba(223, 247, 238, .3);
  background: rgba(223, 247, 238, .075);
}
.avatar-upload input {
  padding: .75rem !important;
}
.camera-preview.has-avatar {
  background: #050609;
  border-color: rgba(227, 71, 186, .28);
}
.preview-avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-avatar {
  object-fit: cover;
  color: transparent;
}
.show-room-page.quizpoker-mode {
  width: calc(100% - 2rem);
  max-width: none;
  height: calc(100svh - 5.6rem);
  padding: .75rem 0;
  overflow: hidden;
}
.quizpoker-stage {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: .75rem;
}
.quizpoker-stage-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 .35rem;
}
.quizpoker-stage-head small,
.quizpoker-moderator-card small,
.quizpoker-question-card small,
.quizpoker-hint-grid small,
.quizpoker-solution-card small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: clamp(.58rem, .7vw, .75rem);
  letter-spacing: .16em;
  font-weight: 950;
}
.quizpoker-stage-head h1 {
  margin: .05rem 0 0;
  font-size: clamp(1.7rem, 3.4vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quizpoker-stage-head > span {
  flex: 0 0 auto;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: .55rem .85rem;
  background: rgba(255, 255, 255, .055);
  color: var(--muted);
  font-weight: 900;
}
.quizpoker-board {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(12rem, .95fr) minmax(20rem, 1.25fr) minmax(12rem, .95fr);
  gap: .85rem;
  align-items: stretch;
}
.quizpoker-side {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .65rem;
  overflow: hidden;
  padding: .85rem;
  border: 1px solid var(--card-border);
  border-radius: 1.55rem;
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(223, 247, 238, .08),
      transparent 15rem),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .052),
      rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}
.quizpoker-side.right {
  background:
    radial-gradient(
      circle at 70% 0%,
      rgba(227, 71, 186, .1),
      transparent 15rem),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .052),
      rgba(255, 255, 255, .025));
}
.quizpoker-player-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(2.4rem, 4vw, 4.8rem) minmax(0, 1fr);
  align-items: center;
  gap: .65rem;
  padding: clamp(.55rem, 1vh, .95rem);
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
}
.quizpoker-player-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7rem;
  bottom: .7rem;
  width: .22rem;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--accent-2-soft));
}
.quizpoker-player-card img,
.quiz-avatar {
  width: clamp(2.4rem, 4vw, 4.8rem);
  height: clamp(2.4rem, 4vw, 4.8rem);
  border-radius: 1rem;
  object-fit: cover;
}
.quiz-avatar {
  display: grid;
  place-items: center;
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 950;
}
.quizpoker-player-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.85rem, 1.3vw, 1.15rem);
}
.quizpoker-player-card small {
  display: block;
  margin-top: .15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: clamp(.68rem, .85vw, .85rem);
}
.seat-number {
  position: absolute;
  right: .55rem;
  top: .45rem;
  color: rgba(255, 255, 255, .32);
  font-size: .7rem;
  font-weight: 950;
}
.quizpoker-center {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: .7rem;
  padding: .85rem;
  border: 1px solid rgba(227, 71, 186, .24);
  border-radius: 1.65rem;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(227, 71, 186, .18),
      transparent 18rem),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quizpoker-moderator-card,
.quizpoker-question-card,
.quizpoker-hint-grid article,
.quizpoker-solution-card {
  border: 1px solid var(--card-border);
  border-radius: 1.15rem;
  background: rgba(0, 0, 0, .22);
  padding: clamp(.7rem, 1vw, 1rem);
  overflow: hidden;
}
.quizpoker-moderator-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.quizpoker-moderator-card > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  min-width: 0;
}
.quizpoker-moderator-card img,
.quizpoker-moderator-card span {
  width: clamp(2.2rem, 3vw, 3.2rem);
  height: clamp(2.2rem, 3vw, 3.2rem);
  border-radius: .9rem;
  object-fit: cover;
}
.quizpoker-moderator-card span {
  display: grid;
  place-items: center;
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  font-weight: 950;
}
.quizpoker-moderator-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quizpoker-question-card {
  display: grid;
  align-content: center;
  text-align: center;
}
.quizpoker-question-card h2 {
  margin: .3rem 0 0;
  font-size: clamp(1.25rem, 2.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.05em;
  overflow-wrap: anywhere;
}
.quizpoker-hint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.quizpoker-hint-grid strong,
.quizpoker-solution-card strong {
  display: block;
  margin-top: .25rem;
  font-size: clamp(.9rem, 1.25vw, 1.15rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
}
.quizpoker-solution-card {
  border-color: rgba(223, 247, 238, .2);
}
@media (max-width: 980px) {
  .show-room-page.quizpoker-mode {
    height: auto;
    overflow: visible;
  }
  .quizpoker-board {
    grid-template-columns: 1fr;
  }
  .quizpoker-side {
    max-height: none;
  }
  .quizpoker-center {
    order: -1;
  }
}
.show-room-page.quizpoker-mode {
  width: calc(100% - 3rem);
  max-width: none;
  height: calc(100vh - 5.2rem);
  padding: .65rem 0;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-stage {
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  gap: .45rem;
}
.show-room-page.quizpoker-mode .quizpoker-stage-head {
  min-height: 3.8rem;
  align-items: center;
  padding: 0 .15rem;
}
.show-room-page.quizpoker-mode .quizpoker-stage-head h1 {
  font-size: clamp(1.6rem, 3.1vw, 3.6rem);
}
.show-room-page.quizpoker-mode .quizpoker-board {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(16rem, .9fr) minmax(26rem, 1.18fr) minmax(16rem, .9fr);
  gap: .7rem;
}
.show-room-page.quizpoker-mode .quizpoker-side {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: .55rem;
  padding: .7rem;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-player-card {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(4.8rem, 1fr) auto auto auto;
  align-items: stretch;
  gap: .42rem;
  padding: .72rem;
  text-align: center;
}
.show-room-page.quizpoker-mode .quizpoker-player-card.active-turn {
  border-color: rgba(223, 247, 238, .72);
  box-shadow: 0 0 0 2px rgba(223, 247, 238, .08), 0 0 28px rgba(227, 71, 186, .16);
}
.show-room-page.quizpoker-mode .quiz-player-media {
  min-height: 0;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .22);
}
.show-room-page.quizpoker-mode .quiz-player-media img,
.show-room-page.quizpoker-mode .quiz-player-media .quiz-avatar {
  width: 100%;
  height: 100%;
  min-height: 4.8rem;
  max-height: 17vh;
  border-radius: 0;
  object-fit: cover;
}
.show-room-page.quizpoker-mode .quiz-player-media .quiz-avatar {
  display: grid;
  place-items: center;
  font-size: clamp(2.1rem, 4vw, 5.5rem);
}
.show-room-page.quizpoker-mode .quiz-estimate-input {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: .8rem;
  background: rgba(0, 0, 0, .28);
  color: var(--text);
  padding: .58rem .65rem;
  font-weight: 850;
  text-align: center;
  outline: none;
}
.show-room-page.quizpoker-mode .quiz-estimate-input:focus {
  border-color: rgba(227, 71, 186, .65);
  box-shadow: 0 0 0 3px rgba(227, 71, 186, .11);
}
.show-room-page.quizpoker-mode .quiz-chip-count {
  font-size: clamp(.9rem, 1.15vw, 1.2rem);
  color: var(--accent-strong);
}
.show-room-page.quizpoker-mode .quiz-player-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 950;
  font-size: clamp(.9rem, 1.2vw, 1.25rem);
}
.show-room-page.quizpoker-mode .quizpoker-center {
  height: 100%;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: .65rem;
  padding: .75rem;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  min-height: 4.25rem;
}
.show-room-page.quizpoker-mode .moderator-media-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-content: flex-end;
  min-width: 0;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card img,
.show-room-page.quizpoker-mode .quizpoker-moderator-card span {
  width: clamp(2.8rem, 4vw, 4.5rem);
  height: clamp(2.8rem, 4vw, 4.5rem);
  border-radius: 1rem;
  object-fit: cover;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-stack {
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: .55rem;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card {
  min-height: 0;
  display: grid;
  align-content: center;
  gap: .3rem;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 1.15rem;
  background: rgba(0, 0, 0, .22);
  padding: clamp(.55rem, 1vw, 1rem);
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card strong {
  display: block;
  font-size: clamp(1.05rem, 2.1vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card.hidden-content {
  color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .035);
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card.solution {
  border-color: rgba(223, 247, 238, .28);
}
.show-room-page.quizpoker-mode .quizpoker-action-zone {
  min-height: 5.25rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1.15rem;
  background: rgba(0, 0, 0, .18);
  padding: .55rem;
}
.show-room-page.quizpoker-mode .moderator-actions,
.show-room-page.quizpoker-mode .player-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  align-items: center;
}
.show-room-page.quizpoker-mode .moderator-actions .button,
.show-room-page.quizpoker-mode .player-actions .button {
  padding: .65rem .8rem;
  font-size: .82rem;
}
.show-room-page.quizpoker-mode .moderator-control-row {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: .55rem;
  margin-top: .55rem;
}
.show-room-page.quizpoker-mode .moderator-control-row label,
.show-room-page.quizpoker-mode .raise-box {
  display: grid;
  gap: .25rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .13em;
  font-weight: 900;
}
.show-room-page.quizpoker-mode .moderator-control-row select,
.show-room-page.quizpoker-mode .moderator-control-row input,
.show-room-page.quizpoker-mode .raise-box input {
  border: 1px solid var(--card-border);
  border-radius: .8rem;
  background: rgba(0, 0, 0, .25);
  color: var(--text);
  padding: .58rem .7rem;
  outline: none;
}
.show-room-page.quizpoker-mode .moderator-control-row option {
  color: #111;
}
.show-room-page.quizpoker-mode .raise-box {
  min-width: 8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .show-room-page.quizpoker-mode {
    height: auto;
    overflow: visible;
  }
  .show-room-page.quizpoker-mode .quizpoker-board {
    grid-template-columns: 1fr;
  }
  .show-room-page.quizpoker-mode .quizpoker-center {
    order: -1;
  }
  .show-room-page.quizpoker-mode .quizpoker-side {
    grid-auto-rows: auto;
  }
  .show-room-page.quizpoker-mode .quizpoker-player-card {
    grid-template-rows: minmax(8rem, 14rem) auto auto auto;
  }
}
.show-room-page.quizpoker-mode .quizpoker-board {
  grid-template-columns: minmax(24rem, 1.05fr) minmax(25rem, .9fr) minmax(24rem, 1.05fr);
}
.show-room-page.quizpoker-mode .quizpoker-side {
  align-items: stretch;
  justify-items: stretch;
}
.show-room-page.quizpoker-mode .quizpoker-player-card {
  width: 100%;
  max-width: none;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  justify-items: stretch;
}
.show-room-page.quizpoker-mode .quiz-player-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: min(28vh, 22rem);
}
.show-room-page.quizpoker-mode .quiz-player-media img,
.show-room-page.quizpoker-mode .quiz-player-media .quiz-avatar {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: .45rem;
  align-items: stretch;
  text-align: center;
  min-height: 0;
}
.show-room-page.quizpoker-mode .moderator-media-row {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 13vh;
  border-radius: .95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .24);
  display: grid;
  place-items: center;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card img,
.show-room-page.quizpoker-mode .quizpoker-moderator-card span {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card span {
  font-size: clamp(2rem, 4vw, 4.5rem);
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card strong {
  display: block;
  font-size: clamp(.85rem, 1vw, 1.05rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .show-room-page.quizpoker-mode .quizpoker-board {
    grid-template-columns: 1fr;
  }
  .show-room-page.quizpoker-mode .quiz-player-media {
    max-height: none;
  }
  .show-room-page.quizpoker-mode .moderator-media-row {
    max-height: none;
  }
}
.show-room-page.quizpoker-mode .quizpoker-board {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: stretch;
}
.show-room-page.quizpoker-mode .quizpoker-side {
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  align-items: start;
  justify-items: stretch;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-player-card {
  height: auto;
  min-height: 0;
  max-height: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  align-items: start;
  justify-items: stretch;
  padding: .65rem;
}
.show-room-page.quizpoker-mode .quiz-player-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  flex: none;
}
.show-room-page.quizpoker-mode .quiz-player-media img,
.show-room-page.quizpoker-mode .quiz-player-media .quiz-avatar {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}
.show-room-page.quizpoker-mode .quiz-estimate-input,
.show-room-page.quizpoker-mode .quiz-chip-count,
.show-room-page.quizpoker-mode .quiz-player-name {
  width: 100%;
  flex: none;
}
.show-room-page.quizpoker-mode .quizpoker-center {
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: .42rem;
  min-height: 0;
  padding: .65rem;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card > small,
.show-room-page.quizpoker-mode .quizpoker-moderator-card > strong {
  width: 100%;
  text-align: center;
}
.show-room-page.quizpoker-mode .moderator-media-row {
  width: min(50%, 28rem);
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .25);
  display: grid;
  place-items: center;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card img,
.show-room-page.quizpoker-mode .quizpoker-moderator-card span,
.show-room-page.quizpoker-mode .quiz-moderator-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card span {
  display: grid;
  place-items: center;
  font-size: clamp(1.8rem, 3vw, 4.2rem);
}
@media (max-width: 1100px) {
  .show-room-page.quizpoker-mode .quizpoker-board {
    grid-template-columns: 1fr;
  }
  .show-room-page.quizpoker-mode .moderator-media-row {
    width: min(100%, 28rem);
  }
}
.show-room-page.quizpoker-mode .quizpoker-side {
  grid-template-columns: minmax(0, 1fr);
  padding: .45rem;
}
.show-room-page.quizpoker-mode .quizpoker-player-card {
  inline-size: 100%;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  place-self: start stretch;
}
.show-room-page.quizpoker-mode .quiz-player-media {
  inline-size: 100%;
}
.show-room-page.quizpoker-mode .quizpoker-center {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card {
  display: grid;
  place-items: center;
  gap: .15rem;
  min-height: clamp(3.4rem, 7vh, 5.6rem);
  padding: .75rem 1rem;
  border: 1px solid rgba(227, 71, 186, .28);
  border-radius: 1.15rem;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(227, 71, 186, .2),
      transparent 14rem),
    rgba(0, 0, 0, .22);
  box-shadow: 0 14px 45px rgba(227, 71, 186, .08);
  text-align: center;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: clamp(.58rem, .7vw, .75rem);
  letter-spacing: .16em;
  font-weight: 950;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card strong {
  font-size: clamp(1.35rem, 2.3vw, 3rem);
  line-height: .95;
  letter-spacing: -.045em;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.show-room-page.quizpoker-mode .quiz-moderator-video,
.show-room-page.quizpoker-mode .quizpoker-moderator-card img {
  object-fit: contain;
  background: rgba(0, 0, 0, .35);
}
.show-room-page.quizpoker-mode .moderator-media-row {
  width: min(50%, 32rem);
}
@media (max-width: 1100px) {
  .show-room-page.quizpoker-mode .moderator-media-row {
    width: min(100%, 32rem);
  }
}
.show-room-page.quizpoker-mode .quiz-live-video,
.show-room-page.quizpoker-mode .quiz-moderator-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, .35);
}
.show-room-page.quizpoker-mode .quiz-moderator-video {
  object-fit: contain;
}
.show-room-page.quizpoker-mode .quizpoker-stage-head h1 {
  font-size: clamp(1.35rem, 2.55vw, 3.05rem);
}
.show-room-page.quizpoker-mode .quizpoker-stage-head small,
.show-room-page.quizpoker-mode .quizpoker-moderator-card small,
.show-room-page.quizpoker-mode .quizpoker-pot-card small,
.show-room-page.quizpoker-mode .quizpoker-reveal-card small {
  font-size: clamp(.52rem, .58vw, .68rem);
  letter-spacing: .14em;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card {
  min-height: clamp(2.8rem, 5.8vh, 4.6rem);
  padding: .55rem .8rem;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card strong {
  font-size: clamp(1.1rem, 1.75vw, 2.25rem);
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card {
  padding: clamp(.42rem, .75vw, .72rem);
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card strong {
  font-size: clamp(.95rem, 1.55vw, 1.95rem);
  line-height: 1.04;
}
.show-room-page.quizpoker-mode .quiz-chip-count {
  font-size: clamp(.82rem, .95vw, 1rem);
}
.show-room-page.quizpoker-mode .quiz-player-name {
  font-size: clamp(.82rem, 1vw, 1.05rem);
}
.show-room-page.quizpoker-mode .quiz-estimate-input {
  padding: .45rem .58rem;
  font-size: .78rem;
}
.show-room-page.quizpoker-mode .quizpoker-action-zone {
  min-height: 4.6rem;
  padding: .45rem;
}
.show-room-page.quizpoker-mode .moderator-actions .button,
.show-room-page.quizpoker-mode .player-actions .button {
  padding: .52rem .65rem;
  font-size: .72rem;
}
.show-room-page.quizpoker-mode .moderator-control-row select,
.show-room-page.quizpoker-mode .moderator-control-row input,
.show-room-page.quizpoker-mode .raise-box input {
  padding: .45rem .58rem;
  font-size: .78rem;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card strong {
  font-size: clamp(.78rem, 1.2vw, 1.55rem);
  line-height: 1.08;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card {
  min-height: clamp(3.4rem, 11vh, 7rem);
}
.show-room-page.quizpoker-mode .quizpoker-stage-head h1 {
  font-size: clamp(1.15rem, 2.25vw, 2.7rem);
}
.show-room-page.quizpoker-mode .blind-row {
  min-height: 1.55rem;
  display: flex;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin: .35rem 0 .2rem;
}
.show-room-page.quizpoker-mode .blind-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .25rem .5rem;
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      rgba(223, 247, 238, .78));
}
.show-room-page.quizpoker-mode .blind-badge.big {
  background:
    linear-gradient(
      135deg,
      var(--accent-2-soft),
      var(--accent));
}
.show-room-page.quizpoker-mode .blind-badge.folded {
  color: var(--text);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
}
.show-room-page.quizpoker-mode .quizpoker-player-card.active-turn {
  border-color: rgba(223, 247, 238, .78);
  box-shadow: 0 0 0 2px rgba(223, 247, 238, .18), 0 0 40px rgba(227, 71, 186, .18);
}
.show-room-page.quizpoker-mode .quiz-estimate-input[readonly] {
  opacity: .72;
  cursor: default;
}
.show-room-page.quizpoker-mode .player-actions {
  align-items: center;
}
.show-room-page.quizpoker-mode .turn-info {
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
  padding: .55rem .75rem;
}
.show-room-page.quizpoker-mode .moderator-actions .button:disabled {
  opacity: .4;
}
.show-room-page.quizpoker-mode {
  width: min(100%, calc(100vw - 2.4rem));
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.show-room-page.quizpoker-mode .quizpoker-stage {
  min-height: calc(100dvh - 5.2rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: .45rem;
}
.show-room-page.quizpoker-mode .quizpoker-stage-head {
  padding: 0 .15rem;
  margin: 0;
}
.show-room-page.quizpoker-mode .quizpoker-stage-head h1 {
  font-size: clamp(1.25rem, 2vw, 2.35rem);
  line-height: .9;
}
.show-room-page.quizpoker-mode .quizpoker-board {
  grid-template-columns: minmax(18rem, 1fr) minmax(32rem, 2fr) minmax(18rem, 1fr);
  gap: .55rem;
  min-height: 0;
  height: 100%;
  align-items: stretch;
}
.show-room-page.quizpoker-mode .quizpoker-side {
  min-width: 0;
  min-height: 0;
  height: 100%;
  gap: .55rem;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-player-card {
  position: relative;
  padding: .52rem;
  gap: .22rem;
  border-radius: 1.1rem;
  max-height: max-content;
}
.show-room-page.quizpoker-mode .quiz-player-media {
  border-radius: .85rem;
}
.show-room-page.quizpoker-mode .quiz-estimate-input {
  padding: .32rem .55rem;
  min-height: 1.55rem;
  font-size: .7rem;
}
.show-room-page.quizpoker-mode .blind-row {
  min-height: 1.25rem;
  margin: .22rem 0 .12rem;
}
.show-room-page.quizpoker-mode .quiz-chip-count {
  font-size: clamp(.78rem, .82vw, .95rem);
  line-height: 1.05;
}
.show-room-page.quizpoker-mode .quiz-player-name {
  font-size: clamp(.8rem, .88vw, 1rem);
  line-height: 1.05;
}
.show-room-page.quizpoker-mode .winner-crown {
  position: absolute;
  top: .42rem;
  right: .42rem;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  color: #161017;
  background:
    linear-gradient(
      135deg,
      #fff7c2,
      #f08bd4);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 0 26px rgba(240, 139, 212, .45);
  font-size: 1.15rem;
  font-weight: 950;
}
.show-room-page.quizpoker-mode .quizpoker-player-card.round-winner {
  border-color: rgba(255, 247, 194, .8);
  box-shadow: 0 0 0 2px rgba(255, 247, 194, .16), 0 0 38px rgba(240, 139, 212, .24);
}
.show-room-page.quizpoker-mode .quizpoker-center {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: .42rem;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card {
  min-height: 0;
  padding: .42rem;
  gap: .2rem;
  border-radius: 1.1rem;
}
.show-room-page.quizpoker-mode .moderator-media-row {
  width: min(50%, 25rem);
  border-radius: .8rem;
}
.show-room-page.quizpoker-mode .quizpoker-moderator-card > small,
.show-room-page.quizpoker-mode .quizpoker-moderator-card > strong {
  font-size: .68rem;
  line-height: 1;
}
.show-room-page.quizpoker-mode .quizpoker-blind-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  padding: .45rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  background: rgba(0, 0, 0, .2);
}
.show-room-page.quizpoker-mode .quizpoker-blind-card div {
  display: grid;
  place-items: center;
  gap: .15rem;
  min-height: 2.1rem;
  border-radius: .75rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .06);
}
.show-room-page.quizpoker-mode .quizpoker-blind-card small {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .52rem;
  letter-spacing: .14em;
  font-weight: 950;
}
.show-room-page.quizpoker-mode .quizpoker-blind-card strong {
  font-size: .88rem;
  line-height: 1;
}
.show-room-page.quizpoker-mode .quizpoker-blind-card input {
  width: min(8rem, 100%);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .7rem;
  background: rgba(0, 0, 0, .28);
  color: var(--text);
  padding: .32rem .45rem;
  font-weight: 900;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card {
  min-height: 2.75rem;
  padding: .45rem .7rem;
  border-radius: 1rem;
}
.show-room-page.quizpoker-mode .quizpoker-pot-card strong {
  font-size: clamp(1rem, 1.45vw, 1.8rem);
}
.show-room-page.quizpoker-mode .quizpoker-reveal-stack {
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(4, minmax(2.7rem, 1fr));
  gap: .42rem;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card {
  min-height: 0;
  padding: .38rem .55rem;
  border-radius: .95rem;
  overflow: hidden;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: clamp(.72rem, 1.03vw, 1.28rem);
  line-height: 1.08;
}
.show-room-page.quizpoker-mode .quizpoker-reveal-card small,
.show-room-page.quizpoker-mode .quizpoker-pot-card small {
  font-size: .48rem;
}
.show-room-page.quizpoker-mode .quizpoker-action-zone {
  min-height: 4.25rem;
  padding: .35rem;
  border-radius: 1rem;
}
.show-room-page.quizpoker-mode .moderator-actions,
.show-room-page.quizpoker-mode .player-actions {
  gap: .32rem;
}
.show-room-page.quizpoker-mode .moderator-actions .button,
.show-room-page.quizpoker-mode .player-actions .button {
  padding: .42rem .55rem;
  font-size: .64rem;
}
.show-room-page.quizpoker-mode .moderator-control-row {
  gap: .35rem;
}
.show-room-page.quizpoker-mode .moderator-control-row select,
.show-room-page.quizpoker-mode .moderator-control-row input,
.show-room-page.quizpoker-mode .raise-box input {
  padding: .34rem .5rem;
  min-height: 1.7rem;
  font-size: .68rem;
}
@media (max-width: 1280px) {
  .show-room-page.quizpoker-mode .quizpoker-board {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .show-room-page.quizpoker-mode .quizpoker-center {
    min-height: 42rem;
  }
  .show-room-page.quizpoker-mode .moderator-media-row {
    width: min(100%, 25rem);
  }
}
.show-room-page.quizpoker-mode .blind-badge.out {
  color: #0b0d12;
  background:
    linear-gradient(
      135deg,
      #ffb4ce,
      #f08bd4);
  border: 1px solid rgba(255, 255, 255, .22);
}
.show-room-page.quizpoker-mode .quizpoker-player-card:has(.blind-badge.out) {
  opacity: .62;
  filter: grayscale(.22);
}
.show-room-page.quizpoker-mode .quizpoker-blind-card.editable {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: stretch;
}
.show-room-page.quizpoker-mode .blind-apply-button {
  border: 1px solid rgba(227, 71, 186, .28);
  border-radius: .75rem;
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2-soft));
  color: #0b0d12;
  padding: .35rem .75rem;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}
.show-room-page.quizpoker-mode .blind-apply-button:hover {
  filter: brightness(1.08);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
