@font-face {
  font-family: "Assistant";
  src: url("fonts/Assistant/Assistant-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant";
  src: url("fonts/Assistant/Assistant-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant";
  src: url("fonts/Assistant/Assistant-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant";
  src: url("fonts/Assistant/Assistant-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo/Cairo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161925;
  --paper: #f5efe5;
  --accent: #f15a29;
  --dark: #0f172a;
  --line: rgba(15, 23, 42, 0.12);
  --font-ui: "Assistant", "Segoe UI", sans-serif;
  --font-rtl: "Cairo", "Assistant", sans-serif;
}

body {
  font-family: var(--font-ui);
  color: var(--ink);
}

html[dir="rtl"] body,
body.rtl,
[dir="rtl"] {
  font-family: var(--font-rtl);
}

.public-body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(241, 90, 41, 0.22), transparent 26rem),
    linear-gradient(180deg, #151a2a 0%, #1d2944 46%, var(--paper) 46%, var(--paper) 100%);
}

.public-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem;
}

.public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.public-brand,
.public-nav a {
  color: #fff;
  text-decoration: none;
}

.public-brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.public-nav {
  display: flex;
  gap: 1rem;
}

.public-main {
  padding: 1rem 0 4rem;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 3rem 0 4rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.hero__kicker,
.admin-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__panel,
.public-card,
.admin-card,
.admin-stat {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero__panel {
  padding: 2rem;
  color: var(--ink);
  background: linear-gradient(145deg, #ffb52e, #ff7e3f);
}

.public-section {
  padding: 1rem 0 2rem;
}

.public-cards,
.public-stack,
.admin-grid {
  display: grid;
  gap: 1rem;
}

.public-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-card {
  padding: 1.5rem;
}

.slot-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 1.25rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.maintenance-screen,
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.admin-login-body,
.admin-body {
  background: #f4f6fb;
}

.admin-login__card {
  width: min(100%, 420px);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.admin-sidebar {
  background: linear-gradient(180deg, #121826 0%, #1b2640 100%);
  color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.admin-sidebar__brand {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-sidebar__caption {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.66);
}

.admin-sidebar__nav {
  display: grid;
  gap: 0.45rem;
}

.admin-sidebar__nav a {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  color: rgba(255,255,255,0.84);
  text-decoration: none;
}

.admin-sidebar__nav a.is-active,
.admin-sidebar__nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-navbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.admin-navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
}

.admin-content {
  padding: 1.5rem;
}

.admin-grid--stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.admin-stat {
  padding: 1.4rem;
}

.admin-stat span {
  display: block;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.admin-stat strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.9rem;
}

.admin-card {
  padding: 1.5rem;
}

.admin-page__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  color: #667085;
}

.invoice-screen {
  min-height: 100vh;
  padding: 2rem;
  background: #f4f6fb;
}

.invoice-screen__box {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
}

.admin-quizstation .language-switcher {
  position: relative;
  display: inline-block;
}

.admin-quizstation .language-switcher .btn {
  min-width: 4.5rem;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  list-style: none;
  cursor: pointer;
}

.admin-quizstation .language-switcher .btn-outline-light {
  color: #495057;
  border-color: #d9dde7;
  background: #fff;
}

.admin-quizstation .language-switcher summary::-webkit-details-marker {
  display: none;
}

.admin-quizstation .language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: grid;
  min-width: 5rem;
  padding: 0.4rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #edf2f7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  z-index: 30;
}

.admin-quizstation .language-switcher__item {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  color: #495057;
  text-decoration: none;
}

.admin-quizstation .language-switcher__item:hover {
  background: #f4f6fb;
  color: #212529;
}

.admin-quizstation .language-switcher__item.is-active {
  background: #4b49ac;
  color: #fff;
}

.admin-quizstation .sidebar .nav .nav-item .nav-link {
  color: #6c7383;
  background: transparent;
}

.admin-quizstation .sidebar .nav .nav-item .nav-link .menu-icon {
  color: #9aa3b2;
}

.admin-quizstation .sidebar .nav .nav-item .nav-link.active,
.admin-quizstation .sidebar .nav .nav-item .nav-link:hover {
  color: #4b49ac;
}

.admin-quizstation .sidebar .nav .nav-item .nav-link.active {
  background: rgba(75, 73, 172, 0.08);
  font-weight: 700;
}

.admin-quizstation .card.card-rounded,
.admin-login-body .card-rounded {
  border-radius: 1.5rem;
}

.admin-quizstation .table.select-table thead th {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7c8aa5;
}

.admin-quizstation .table.select-table thead tr.table-filter-row th {
  padding-top: 0.65rem;
  padding-bottom: 0.75rem;
  text-transform: none;
  background: #fafbff;
}

.admin-quizstation .table-column-filter {
  min-width: 7rem;
  border-radius: 999px;
  border-color: #e3e8f1;
  background: #fff;
  font-size: 0.8rem;
  padding-inline: 0.85rem;
}

.admin-quizstation .table.select-table thead tr.table-filter-row th.is-action-filter {
  min-width: 5rem;
}

.admin-quizstation .table.select-table tbody td {
  vertical-align: middle;
}

.admin-quizstation .admin-table-footer {
  padding: 0.2rem 0;
}

.admin-quizstation .dataTables_wrapper .dataTables_length,
.admin-quizstation .dataTables_wrapper .dataTables_info,
.admin-quizstation .dataTables_wrapper .dataTables_paginate {
  margin: 0;
}

.admin-quizstation .dataTables_wrapper .dataTables_length label {
  margin: 0;
  font-size: 0.84rem;
  color: #7c8aa5;
}

.admin-quizstation .admin-table-length-select {
  min-width: 5.5rem;
  border-radius: 999px;
  border-color: #dde3ee;
}

.admin-quizstation .dataTables_wrapper .paginate_button {
  border-radius: 999px !important;
}

.admin-quizstation .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.admin-quizstation .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #4b49ac !important;
  border-color: #4b49ac !important;
  color: #fff !important;
}

.admin-quizstation .badge-opacity-success,
.admin-quizstation .badge-opacity-warning,
.admin-quizstation .badge-opacity-danger,
.admin-quizstation .badge-opacity-info {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.admin-quizstation .bg-primary-light { background: rgba(75, 73, 172, 0.12); }
.admin-quizstation .bg-success-light { background: rgba(31, 182, 114, 0.12); }
.admin-quizstation .bg-warning-light { background: rgba(255, 171, 0, 0.16); }
.admin-quizstation .bg-info-light { background: rgba(36, 138, 253, 0.12); }

.admin-quizstation .icon-md {
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
}

.admin-quizstation .btn-wrapper {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-quizstation .table-darkBGImg {
  background: linear-gradient(135deg, #4b49ac 0%, #7978e9 100%);
  overflow: hidden;
}

.admin-quizstation .table-darkBGImg .card-body {
  min-height: 220px;
  display: flex;
  align-items: center;
}

.admin-quizstation .upgrade-btn {
  margin-top: 1rem;
  background: #fff;
  border-color: #fff;
  color: #4b49ac;
}

.admin-quizstation .list + .list {
  border-top: 1px solid #edf2f7;
}

.admin-quizstation .sidebar .nav .nav-item .nav-link.active .menu-icon,
.admin-quizstation .sidebar .nav .nav-item .nav-link:hover .menu-icon {
  color: #4b49ac;
}

.admin-quizstation .admin-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding-inline: 0.85rem;
}

@media (max-width: 991px) {
  .hero,
  .booking-layout,
  .admin-shell,
  .admin-grid--stats,
  .public-cards {
    grid-template-columns: 1fr;
  }

  .public-header,
  .admin-navbar,
  .admin-page__head,
  .slot-card,
  .admin-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Public redesign */

:root {
  --qs-bg: #060913;
  --qs-bg-soft: #0e1731;
  --qs-card: rgba(14, 20, 38, 0.78);
  --qs-card-solid: #111a31;
  --qs-line: rgba(255, 255, 255, 0.1);
  --qs-text: #f8fbff;
  --qs-muted: rgba(235, 242, 255, 0.72);
  --qs-gold: #ffd96a;
  --qs-gold-strong: #ffb938;
  --qs-blue: #59a5ff;
  --qs-pink: #ff6fae;
  --qs-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

body {
  font-family: var(--font-ui);
}

.public-body {
  margin: 0;
  color: var(--qs-text);
  background:
    linear-gradient(180deg, rgba(6, 9, 19, 0.56), rgba(6, 9, 19, 0.94)),
    url("quizstation/bg-stars.jpeg") center top / cover fixed no-repeat,
    #060913;
}

.public-body a {
  text-decoration: none;
}

.public-site {
  position: relative;
  overflow: clip;
}

.public-site::before,
.public-site::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.35;
}

.public-site::before {
  top: 8rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(89, 165, 255, 0.34);
}

.public-site::after {
  right: -6rem;
  bottom: 8rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 111, 174, 0.24);
}

.public-header,
.public-footer {
  position: relative;
  z-index: 1;
}

.public-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 9, 19, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.public-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.5rem;
}

.public-brand {
  display: inline-flex;
  align-items: center;
}

.public-brand img,
.public-footer__brand img,
.public-cta-panel img {
  display: block;
  height: auto;
}

.public-brand img {
  width: 12rem;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.public-nav a,
.language-switcher__trigger,
.language-switcher__item {
  color: var(--qs-text);
}

.public-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
}

.public-nav a:hover,
.public-nav a.is-active {
  color: #08101f;
  background: linear-gradient(135deg, #fff0b5, var(--qs-gold));
}

.public-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  position: relative;
}

.language-switcher[open] .language-switcher__trigger {
  border-color: rgba(255, 217, 106, 0.45);
}

.language-switcher__trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 2.7rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 800;
}

.language-switcher__trigger::-webkit-details-marker {
  display: none;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  inset-inline-end: 0;
  min-width: 4.25rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: rgba(10, 15, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--qs-shadow);
}

.language-switcher__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border-radius: 0.8rem;
  font-weight: 700;
}

.language-switcher__item:hover,
.language-switcher__item.is-active {
  background: rgba(255, 217, 106, 0.14);
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  color: #07101d;
  background: linear-gradient(135deg, #fff0b5 0%, #ffd96a 42%, #ffb938 100%);
  box-shadow: 0 16px 36px rgba(255, 185, 56, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(255, 185, 56, 0.28);
}

.public-button--ghost {
  color: var(--qs-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.public-button--full {
  width: 100%;
}

.public-main {
  padding-bottom: 5rem;
}

.public-hero,
.public-page-hero {
  padding: 4rem 0 2rem;
}

.public-hero__grid,
.public-page-hero__grid,
.public-spotlight,
.public-detail-hero,
.public-booking-layout,
.public-confirmation,
.public-footer__inner {
  display: grid;
  gap: 1.5rem;
}

.public-hero__grid,
.public-spotlight,
.public-detail-hero,
.public-booking-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
}

.public-hero__content h1,
.public-page-hero h1,
.public-detail-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 900;
  max-width: 11ch;
  margin: 0;
}

.public-page-hero h1,
.public-detail-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.public-kicker {
  margin: 0 0 1rem;
  color: var(--qs-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.public-lead,
.public-section-heading p,
.public-feature-card p,
.public-experience-card__body p,
.public-experience-teaser__body p,
.public-slot-card__time,
.public-summary-card__body > p,
.public-footer__brand p,
.public-surface__header p {
  color: var(--qs-muted);
}

.public-lead {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.public-actions--center {
  justify-content: center;
}

.public-metrics,
.public-feature-grid,
.public-steps-grid,
.public-gallery-grid,
.public-experience-grid,
.public-experience-teasers {
  display: grid;
  gap: 1.25rem;
}

.public-metrics,
.public-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-metrics {
  margin-top: 2rem;
}

.public-metric-card,
.public-feature-card,
.public-step-card,
.public-slot-card,
.public-experience-card,
.public-experience-teaser,
.public-surface,
.public-confirmation__hero,
.public-empty-state,
.public-flash {
  border: 1px solid var(--qs-line);
  background: var(--qs-card);
  box-shadow: var(--qs-shadow);
  backdrop-filter: blur(16px);
}

.public-metric-card,
.public-feature-card,
.public-step-card,
.public-empty-state {
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.public-metric-card strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
}

.public-metric-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--qs-muted);
}

.public-hero__media {
  position: relative;
  min-height: 38rem;
}

.public-stage-card,
.public-floating-card,
.public-page-hero__visual,
.public-detail-hero__media,
.public-spotlight__visual,
.public-summary-card__media,
.public-experience-card__media,
.public-experience-teaser__media,
.public-gallery-card {
  overflow: hidden;
  border-radius: 1.75rem;
}

.public-stage-card {
  position: absolute;
  inset: 0 0 4rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--qs-shadow);
}

.public-stage-card img,
.public-floating-card img,
.public-page-hero__visual img,
.public-detail-hero__media img,
.public-spotlight__visual img,
.public-summary-card__media img,
.public-experience-card__media img,
.public-experience-teaser__media img,
.public-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.public-stage-card__overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.18), rgba(11, 17, 32, 0.84));
}

.public-stage-card__overlay span,
.public-experience-card__eyebrow {
  color: var(--qs-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.public-stage-card__overlay strong {
  display: block;
  margin: 0.35rem 0 0.45rem;
  font-size: 1.35rem;
}

.public-stage-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.public-floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--qs-shadow);
}

.public-floating-card--wheel {
  width: 12rem;
  aspect-ratio: 1;
  inset: auto auto 0 -1rem;
}

.public-floating-card--host {
  width: 12rem;
  aspect-ratio: 0.78;
  inset: 2rem -1rem auto auto;
}

.public-section {
  padding: 2rem 0;
}

.public-section--spotlight,
.public-section--gallery,
.public-section--cta {
  padding-top: 3rem;
}

.public-section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.public-section-heading h2,
.public-spotlight__copy h2,
.public-summary-card__body h2,
.public-confirmation__hero h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.public-feature-card h3,
.public-step-card h3,
.public-experience-card__body h2,
.public-experience-teaser__body h3,
.public-slot-card__main h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.public-spotlight__copy,
.public-summary-card__body,
.public-surface__header {
  padding: 0.25rem 0;
}

.public-spotlight__list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.public-spotlight__list div {
  display: grid;
  gap: 0.2rem;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid rgba(255, 217, 106, 0.42);
}

.public-spotlight__list span {
  color: var(--qs-muted);
}

.public-spotlight__visual {
  min-height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.public-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-step-card {
  position: relative;
  min-height: 15rem;
}

.public-step-card__index {
  display: inline-flex;
  margin-bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #08101f;
  background: linear-gradient(135deg, #fff0b5, var(--qs-gold-strong));
  font-weight: 900;
}

.public-gallery-grid {
  grid-template-columns: 1.3fr 0.9fr;
}

.public-gallery-card {
  min-height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--qs-shadow);
}

.public-gallery-card--large {
  grid-row: span 2;
  min-height: 37rem;
}

.public-experience-grid,
.public-experience-teasers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-experience-card,
.public-experience-teaser {
  border-radius: 1.75rem;
  overflow: hidden;
}

.public-experience-card__media {
  height: 16rem;
}

.public-experience-card__body,
.public-experience-teaser__body {
  padding: 1.4rem;
}

.public-experience-teaser__media {
  height: 14rem;
}

.public-link-arrow,
.public-link-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--qs-gold);
  font-weight: 800;
}

.public-link-back {
  margin-bottom: 1rem;
}

.public-page-hero__visual,
.public-detail-hero__media {
  min-height: 26rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--qs-shadow);
}

.public-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.public-tag-list span,
.public-slot-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  color: #0a1220;
  background: linear-gradient(135deg, #fff0b5, #ffd96a);
  font-weight: 800;
}

.public-slot-list {
  display: grid;
  gap: 1rem;
}

.public-slot-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1.5rem;
  padding: 1.3rem;
}

.public-slot-card__time {
  margin: 0;
}

.public-slot-card__meta {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
  text-align: end;
}

.public-slot-card__meta span,
.public-summary-list dt {
  display: block;
  color: var(--qs-muted);
  font-size: 0.9rem;
}

.public-slot-card__meta strong,
.public-summary-list dd,
.public-summary-total strong {
  font-weight: 800;
}

.public-booking-layout {
  align-items: start;
}

.public-surface {
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.public-surface--form {
  padding: 1.8rem;
}

.public-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.public-form-grid__full {
  grid-column: 1 / -1;
}

.public-surface .form-label,
.public-surface .form-text {
  color: var(--qs-muted);
}

.public-surface .form-label {
  font-weight: 700;
}

.public-surface .form-control,
.public-surface .form-select {
  min-height: 3.4rem;
  color: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.public-surface .form-control:focus,
.public-surface .form-select:focus {
  border-color: rgba(255, 217, 106, 0.44);
  box-shadow: 0 0 0 0.2rem rgba(255, 217, 106, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.public-summary-card__media {
  height: 13rem;
  margin-bottom: 1.25rem;
}

.public-summary-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
}

.public-summary-list div,
.public-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.public-summary-list dd {
  margin: 0;
  text-align: end;
}

.public-summary-total {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.public-summary-total strong {
  font-size: 1.6rem;
  color: var(--qs-gold);
}

.public-confirmation {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.public-confirmation__hero {
  border-radius: 1.75rem;
  padding: 2rem;
  text-align: center;
}

.public-confirmation__icon {
  display: inline-flex;
  width: 4.5rem;
  height: 4.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 217, 106, 0.12);
  color: var(--qs-gold);
  font-size: 2.1rem;
}

.public-confirmation__hero strong {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--qs-gold);
  font-size: 1.1rem;
}

.public-confirmation__summary {
  overflow: hidden;
}

.public-empty-state {
  text-align: center;
}

.public-cta-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 15, 28, 0.88);
  box-shadow: var(--qs-shadow);
}

.public-cta-panel img {
  width: 10rem;
}

.public-footer {
  padding: 0 0 3rem;
}

.public-footer__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-footer__brand {
  display: grid;
  gap: 0.8rem;
}

.public-footer__brand img {
  width: 10rem;
}

.public-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.public-footer__links a {
  color: var(--qs-muted);
  font-weight: 700;
}

.public-flash {
  margin-top: 1rem;
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
}

.public-flash--success {
  border-color: rgba(48, 201, 126, 0.32);
}

.public-flash--danger {
  border-color: rgba(255, 107, 107, 0.32);
}

.public-flash--info {
  border-color: rgba(89, 165, 255, 0.32);
}

[dir="rtl"] .public-nav,
[dir="rtl"] .public-actions,
[dir="rtl"] .public-tag-list,
[dir="rtl"] .public-footer__links {
  flex-direction: row-reverse;
}

[dir="rtl"] .public-slot-card__meta,
[dir="rtl"] .public-summary-list dd {
  text-align: start;
  justify-items: start;
}

[dir="rtl"] .public-spotlight__list div {
  border-inline-start: 0;
  border-inline-end: 2px solid rgba(255, 217, 106, 0.42);
  padding-inline-start: 0;
  padding-inline-end: 1rem;
}

@media (max-width: 1199px) {
  .public-experience-grid,
  .public-experience-teasers,
  .public-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .public-gallery-card--large {
    min-height: 26rem;
  }
}

@media (max-width: 991px) {
  .public-header__inner,
  .public-hero__grid,
  .public-page-hero__grid,
  .public-spotlight,
  .public-detail-hero,
  .public-booking-layout,
  .public-confirmation,
  .public-cta-panel,
  .public-footer__inner,
  .public-slot-card {
    grid-template-columns: 1fr;
  }

  .public-header__inner {
    display: grid;
    padding: 1rem 0;
  }

  .public-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .public-header__actions {
    justify-content: space-between;
  }

  .public-hero,
  .public-page-hero {
    padding-top: 2rem;
  }

  .public-hero__media {
    min-height: 24rem;
  }

  .public-stage-card {
    position: relative;
    inset: auto;
    min-height: 24rem;
  }

  .public-floating-card {
    display: none;
  }

  .public-metrics,
  .public-feature-grid,
  .public-form-grid,
  .public-gallery-grid,
  .public-experience-grid,
  .public-experience-teasers {
    grid-template-columns: 1fr;
  }

  .public-slot-card__meta {
    justify-items: start;
    text-align: start;
  }
}

@media (max-width: 640px) {
  .public-container {
    width: min(100% - 1rem, 100%);
  }

  .public-brand img {
    width: 9.5rem;
  }

  .public-hero__content h1,
  .public-page-hero h1,
  .public-detail-hero h1 {
    max-width: none;
  }

  .public-button,
  .language-switcher__trigger {
    min-height: 3rem;
  }

  .public-surface,
  .public-confirmation__hero,
  .public-step-card,
  .public-feature-card,
  .public-empty-state {
    border-radius: 1.25rem;
  }
}

/* QuizStation public redesign */
.public-body {
  background:
    radial-gradient(circle at top, rgba(240, 109, 71, 0.16), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(96, 72, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #09060f 0%, #08050d 48%, #050309 100%);
  color: #f6efe6;
}

.public-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.18;
  z-index: -1;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 4, 10, 0.84);
  border-bottom: 1px solid rgba(255, 208, 129, 0.14);
  backdrop-filter: blur(18px);
}

.public-header__inner {
  min-height: 5.5rem;
  gap: 1rem;
}

.public-brand img {
  width: clamp(8rem, 14vw, 11.5rem);
  filter: drop-shadow(0 0 18px rgba(255, 208, 129, 0.18));
}

.public-footer__brand img {
  width: clamp(9rem, 16vw, 12rem);
  filter: drop-shadow(0 0 18px rgba(255, 208, 129, 0.14));
}

.public-nav {
  gap: 0.35rem;
}

.public-nav a {
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255, 244, 224, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.7rem 0.95rem;
  text-transform: uppercase;
  transition: 180ms ease;
}

.public-nav a:hover,
.public-nav a:focus-visible {
  border-color: rgba(255, 208, 129, 0.26);
  color: #fff7ea;
  background: rgba(255, 208, 129, 0.08);
}

.public-button {
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.public-button--primary {
  background:
    linear-gradient(135deg, #fff1cc 0%, #f6bc64 34%, #f06d47 68%, #8d3cf8 100%);
  box-shadow: 0 18px 45px rgba(240, 109, 71, 0.22);
  color: #140b12;
}

.public-button--secondary {
  border-color: rgba(255, 208, 129, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: #fff3de;
}

.tv-hero,
.tv-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  background:
    linear-gradient(180deg, rgba(7, 4, 11, 0.62), rgba(7, 4, 11, 0.88)),
    url("/assets/quizstation/bg-stars.jpeg") center top / cover no-repeat,
    url("/assets/quizstation/bg-city.jpg") center bottom / cover no-repeat;
}

.tv-hero::before,
.tv-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center bottom, rgba(255, 183, 94, 0.28), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, rgba(120, 75, 255, 0.1), rgba(255, 138, 92, 0.08));
  pointer-events: none;
}

.tv-hero__inner,
.tv-page-hero__grid,
.tv-editorial,
.tv-groups,
.tv-booking-layout,
.tv-room-list,
.public-footer__inner {
  position: relative;
  z-index: 1;
}

.tv-hero__ticker,
.tv-page-hero__eyebrow,
.tv-kicker,
.tv-room-card__eyebrow,
.tv-show-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 129, 0.24);
  background: rgba(255, 208, 129, 0.07);
  color: #ffe8ba;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tv-hero__address {
  margin-top: 1rem;
  color: rgba(255, 237, 208, 0.72);
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tv-hero__logo-wrap {
  display: grid;
  place-items: center;
  margin: clamp(2rem, 5vw, 3.75rem) auto 1.75rem;
}

.tv-hero__logo {
  width: min(100%, 44rem);
  filter:
    drop-shadow(0 0 26px rgba(255, 203, 118, 0.18))
    drop-shadow(0 0 56px rgba(154, 81, 255, 0.14));
}

.tv-hero__tagline,
.tv-page-hero h1 {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  color: #fff6e8;
  font-family: "Assistant", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.tv-hero__body,
.tv-page-hero p {
  margin: 1rem auto 0;
  max-width: 45rem;
  text-align: center;
  color: rgba(255, 239, 214, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.tv-hero__actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tv-hero__actions--left {
  justify-content: flex-start;
}

.tv-stats {
  padding: 1rem 0 2rem;
}

.tv-stats__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tv-stat,
.tv-step-card,
.tv-room-card,
.tv-show-card,
.tv-booking-panel,
.tv-booking-summary,
.tv-photo-grid__item,
.tv-editorial__visual,
.tv-groups__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 129, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(11, 7, 18, 0.84);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.tv-stat {
  border-radius: 1.5rem;
  padding: 1.35rem 1.4rem;
}

.tv-stat__value {
  display: block;
  color: #fff5dc;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.tv-stat__label {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 234, 196, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.tv-section {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.tv-section__head {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.tv-section__head--compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.tv-section h2,
.tv-editorial h2,
.tv-groups h2,
.tv-booking-summary h2 {
  margin: 1rem 0 0;
  color: #fff6e9;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.tv-section p,
.tv-editorial p,
.tv-groups p,
.tv-booking-summary p {
  color: rgba(255, 239, 214, 0.72);
  line-height: 1.75;
}

.tv-editorial,
.tv-groups,
.tv-page-hero__grid,
.tv-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: 1.5rem;
}

.tv-editorial__copy,
.tv-groups__copy {
  padding: 1rem 0;
}

.tv-editorial__visual,
.tv-groups__visual,
.tv-page-hero__visual {
  min-height: 24rem;
  border-radius: 2rem;
}

.tv-editorial__visual img,
.tv-groups__visual img,
.tv-photo-grid__item img,
.tv-room-card__media img,
.tv-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.tv-editorial__list,
.tv-groups__bullets {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.tv-editorial__list div,
.tv-groups__bullets li {
  border-left: 2px solid rgba(255, 208, 129, 0.28);
  padding-left: 1rem;
}

.tv-editorial__list strong,
.tv-groups__bullets strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff4d6;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.tv-room-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tv-room-card,
.tv-show-card {
  border-radius: 2rem;
}

.tv-room-card__media {
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 208, 129, 0.14);
}

.tv-room-card__body,
.tv-show-card__body {
  padding: 1.5rem;
}

.tv-room-card h3,
.tv-show-card h3 {
  margin: 1rem 0 0.55rem;
  color: #fff4dd;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.tv-room-card p,
.tv-show-card p,
.tv-show-card__meta,
.tv-show-card__side {
  color: rgba(255, 239, 214, 0.7);
}

.tv-room-card__footer,
.tv-show-card__side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.tv-room-card__footer span,
.tv-show-card__meta strong {
  color: #ffe6b3;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tv-show-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.5rem;
}

.tv-show-card__meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.95rem;
  font-size: 0.92rem;
}

.tv-show-card__side {
  flex-direction: column;
  align-items: end;
  min-width: 13rem;
}

.tv-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 14rem;
}

.tv-photo-grid__item {
  border-radius: 1.75rem;
}

.tv-photo-grid__item--large {
  grid-row: span 2;
}

.tv-step-card {
  border-radius: 1.6rem;
  padding: 1.5rem;
}

.tv-steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tv-step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2cd, #f5a95f);
  color: #100912;
  font-weight: 800;
}

.tv-step-card h3 {
  margin: 1rem 0 0.55rem;
  color: #fff4dc;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.tv-room-list {
  display: grid;
  gap: 1rem;
}

.tv-booking-panel,
.tv-booking-summary {
  border-radius: 2rem;
  padding: 1.5rem;
}

.tv-booking-panel form {
  display: grid;
  gap: 1.1rem;
}

.tv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tv-form-grid__full {
  grid-column: 1 / -1;
}

.tv-booking-panel label {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffe7b7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tv-booking-panel input,
.tv-booking-panel select,
.tv-booking-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 208, 129, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff8eb;
  min-height: 3.45rem;
  padding: 0.9rem 1rem;
}

.tv-booking-panel textarea {
  min-height: 8rem;
  resize: vertical;
}

.tv-booking-panel input::placeholder,
.tv-booking-panel textarea::placeholder {
  color: rgba(255, 239, 214, 0.38);
}

.tv-booking-summary__list {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
}

.tv-booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 239, 214, 0.74);
  font-size: 0.97rem;
}

.tv-booking-summary__row strong,
.tv-booking-summary__total strong {
  color: #fff4d8;
}

.tv-booking-summary__total {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 208, 129, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.tv-payment-state {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.tv-payment-state--compact {
  margin-bottom: 1.25rem;
}

.tv-payment-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2cd, #f39a5b 58%, #a04bff);
  color: #120912;
  font-size: 1.9rem;
  box-shadow: 0 15px 38px rgba(240, 109, 71, 0.22);
}

.public-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 208, 129, 0.1);
  background: rgba(7, 5, 11, 0.9);
}

.public-footer__address {
  margin-top: 0.85rem;
  color: rgba(255, 229, 178, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[dir="rtl"] .tv-editorial__list div,
[dir="rtl"] .tv-groups__bullets li {
  border-left: 0;
  border-right: 2px solid rgba(255, 208, 129, 0.28);
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .tv-show-card__side {
  align-items: start;
}

@media (max-width: 1199px) {
  .tv-stats__grid,
  .tv-steps-grid,
  .tv-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tv-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .tv-editorial,
  .tv-groups,
  .tv-page-hero__grid,
  .tv-booking-layout,
  .tv-show-card,
  .tv-stats__grid,
  .tv-steps-grid,
  .tv-room-grid,
  .tv-form-grid,
  .tv-photo-grid {
    grid-template-columns: 1fr;
  }

  .tv-page-hero__grid,
  .tv-editorial,
  .tv-groups {
    gap: 1.25rem;
  }

  .tv-show-card__side {
    align-items: start;
    min-width: 0;
  }

  .tv-photo-grid__item--large {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .tv-hero__tagline,
  .tv-page-hero h1 {
    font-size: 2.35rem;
  }

  .tv-room-card,
  .tv-show-card,
  .tv-booking-panel,
  .tv-booking-summary,
  .tv-editorial__visual,
  .tv-groups__visual,
  .tv-page-hero__visual,
  .tv-photo-grid__item {
    border-radius: 1.4rem;
  }

  .tv-room-card__body,
  .tv-show-card__body,
  .tv-booking-panel,
  .tv-booking-summary,
  .tv-step-card {
    padding: 1.2rem;
  }
}

/* Final source-style detail overrides */
.public-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.public-nav a.is-active {
  color: #fff1da;
}

.public-cta-shell {
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.02);
}

.tv-section__aside {
  max-width: 24rem;
}

.tv-section__meta,
.tv-page-hero__meta {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: rgba(255, 240, 222, 0.46);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.public-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 2.6rem;
}

.public-footer__brand p {
  margin-top: 1rem;
  max-width: 23rem;
  color: rgba(255, 240, 222, 0.46);
  font-size: 0.9rem;
}

.public-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.public-footer__column {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.public-footer__title {
  color: #38dbff;
  margin-bottom: 0.6rem;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.public-footer__column a {
  color: rgba(255, 240, 222, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
}

.public-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 214, 154, 0.08);
  color: rgba(255, 240, 222, 0.32);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .public-footer__inner,
  .public-footer__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .public-footer__bottom {
    flex-direction: column;
  }
}

.tv-room-grid--shows {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tv-room-card--show .tv-room-card__body {
  display: grid;
  gap: 0.9rem;
}

.tv-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tv-card-hotline {
  color: rgba(255, 240, 222, 0.52);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tv-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tv-schedule-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 214, 154, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(11, 11, 13, 0.82);
}

.tv-schedule-card__time {
  color: #fff5dc;
  font-family: "Assistant", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.tv-schedule-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 214, 154, 0.08);
  color: rgba(255, 240, 222, 0.64);
  font-size: 0.88rem;
}

.tv-schedule-card__meta span {
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tv-schedule-card__meta strong {
  color: #fff1db;
  font-size: 0.92rem;
  text-align: end;
}

.tv-schedule-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

@media (max-width: 991px) {
  .tv-room-grid--shows,
  .tv-schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* Screenshot-aligned home */
.qs-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 46rem;
  padding: 5.5rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(10, 8, 16, 0.45), rgba(10, 8, 16, 0.94)),
    radial-gradient(circle at center 32%, rgba(180, 118, 255, 0.22), transparent 28%),
    url("/assets/quizstation/bg-stars.jpeg") center top / cover no-repeat;
}

.qs-home-hero::before,
.qs-home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(24vw, 20rem);
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  mix-blend-mode: screen;
  pointer-events: none;
}

.qs-home-hero::before {
  left: 0;
  background-image: linear-gradient(90deg, rgba(10,8,16,0.1), rgba(10,8,16,0.7)), url("/assets/quizstation/audience-left.png");
}

.qs-home-hero::after {
  right: 0;
  background-image: linear-gradient(270deg, rgba(10,8,16,0.1), rgba(10,8,16,0.72)), url("/assets/quizstation/audience-right.png");
}

.qs-home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.qs-home-hero__marquee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 105, 83, 0.48);
  border-radius: 999px;
  background: rgba(74, 20, 34, 0.25);
  color: #f5bd69;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.qs-home-hero__address {
  margin-top: 1rem;
  color: #40dcff;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.qs-home-hero__logo-wrap {
  margin-top: 2.5rem;
}

.qs-home-hero__logo {
  width: min(100%, 34rem);
  filter: drop-shadow(0 0 28px rgba(255, 202, 94, 0.25));
}

.qs-home-hero__body {
  max-width: 35rem;
  margin-top: 1.4rem;
  color: rgba(255, 239, 214, 0.66);
  font-size: 0.95rem;
  line-height: 1.8;
}

.qs-home-hero__actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.qs-home-hero__hint {
  margin-top: 1rem;
  color: rgba(255, 240, 222, 0.4);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.qs-home-stats {
  border-top: 1px solid rgba(255, 214, 154, 0.08);
  border-bottom: 1px solid rgba(255, 214, 154, 0.08);
  background: rgba(255,255,255,0.02);
}

.qs-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.qs-home-stats__grid article {
  padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255, 214, 154, 0.08);
}

.qs-home-stats__grid article:last-child {
  border-right: 0;
}

.qs-home-stats strong {
  display: block;
  color: #fff3de;
  font-size: 2rem;
  font-weight: 800;
}

.qs-home-stats span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 240, 222, 0.5);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qs-home-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(22, 14, 34, 0.16), rgba(10, 8, 16, 0)),
    rgba(11, 8, 18, 0.92);
}

.qs-home-section--steps,
.qs-home-section--gallery {
  background: rgba(10, 8, 16, 0.98);
}

.qs-home-section--private {
  background:
    radial-gradient(circle at center bottom, rgba(155, 64, 112, 0.18), transparent 30%),
    rgba(16, 10, 22, 0.96);
}

.qs-home-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.qs-home-kicker {
  margin: 0 0 0.7rem;
  color: #36d7fb;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.qs-home-head h2,
.qs-club-copy h2,
.qs-private-copy h2 {
  margin: 0;
  color: #f7efe3;
  font-size: clamp(2.1rem, 3vw, 3.55rem);
  line-height: 0.94;
  text-transform: none;
}

.qs-home-head h2 span {
  color: #f0b84d;
}

.qs-home-head p,
.qs-club-copy p,
.qs-private-copy p {
  color: rgba(255, 239, 214, 0.63);
  line-height: 1.75;
}

.qs-room-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qs-room-panel {
  border: 1px solid rgba(255, 214, 154, 0.08);
  background: rgba(14, 10, 20, 0.76);
}

.qs-room-panel__stage {
  position: relative;
  min-height: 18rem;
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(67, 31, 102, 0.18), rgba(8, 8, 12, 0.06)),
    rgba(10, 8, 16, 0.72);
}

.qs-room-panel__arch {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 70%;
  height: 10rem;
  border-top: 1px solid rgba(139, 101, 255, 0.32);
  border-left: 1px solid rgba(139, 101, 255, 0.32);
  border-right: 1px solid rgba(139, 101, 255, 0.32);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.qs-room-panel__screen {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 104, 112, 0.22);
  color: #f2b84f;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.qs-room-panel__stations {
  position: absolute;
  left: 50%;
  bottom: 6rem;
  width: 76%;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
}

.qs-room-panel__stations span {
  width: 1.6rem;
  height: 2.1rem;
  border: 1px solid rgba(170, 172, 255, 0.22);
  background: rgba(255,255,255,0.04);
  transform: rotate(-28deg);
}

.qs-room-panel__stations span.is-live {
  background: rgba(137, 72, 255, 0.26);
  box-shadow: 0 0 18px rgba(137, 72, 255, 0.25);
}

.qs-room-panel__meta {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.qs-room-panel__meta span,
.qs-room-panel__meta a {
  color: rgba(255, 239, 214, 0.5);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.qs-room-panel__meta strong {
  color: #f6edde;
  font-size: 1rem;
}

.qs-show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.qs-show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qs-show-card,
.qs-booking-dock,
.qs-price-card,
.qs-private-card {
  border: 1px solid rgba(255, 214, 154, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(13, 10, 19, 0.9);
}

.qs-show-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.qs-show-card__top,
.qs-show-card__footer,
.qs-show-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.qs-show-card__top,
.qs-show-card__badge,
.qs-booking-dock__selector small,
.qs-booking-dock__summary span,
.qs-price-card__kicker,
.qs-private-facts span {
  color: rgba(255, 239, 214, 0.48);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qs-show-card h3,
.qs-booking-dock h3,
.qs-private-card h3 {
  margin: 0;
  color: #fbf1df;
  font-size: 1.4rem;
}

.qs-show-card p,
.qs-price-card p {
  margin: 0;
  color: rgba(255, 239, 214, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.qs-show-card__stats {
  border-top: 1px solid rgba(255, 214, 154, 0.08);
  padding-top: 0.85rem;
}

.qs-show-card__stats div {
  display: grid;
  gap: 0.3rem;
}

.qs-show-card__stats span {
  color: rgba(255, 239, 214, 0.45);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qs-show-card__stats strong,
.qs-booking-dock__summary strong,
.qs-private-facts strong {
  color: #fff0d5;
  font-size: 0.82rem;
}

.qs-booking-dock {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.qs-booking-dock__selector {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(61, 201, 255, 0.2);
  background: rgba(10, 34, 45, 0.2);
}

.qs-booking-dock__selector span {
  color: #f7efde;
  font-size: 1rem;
  font-weight: 700;
}

.qs-booking-dock__summary {
  display: grid;
  gap: 0.8rem;
}

.qs-booking-dock__summary div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 214, 154, 0.08);
}

.qs-steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qs-step-box {
  padding: 1.2rem;
  border: 1px solid rgba(255, 214, 154, 0.08);
  background: rgba(255,255,255,0.02);
}

.qs-step-box__index {
  display: inline-block;
  color: #f0b84f;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.qs-step-box h3 {
  margin: 0 0 0.55rem;
  color: #f8efdf;
  font-size: 1.02rem;
}

.qs-step-box p {
  margin: 0;
  color: rgba(255, 239, 214, 0.58);
  font-size: 0.88rem;
  line-height: 1.65;
}

.qs-club-layout,
.qs-private-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
  gap: 1.25rem;
  align-items: start;
}

.qs-club-metrics,
.qs-private-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.qs-club-metrics strong,
.qs-private-facts span {
  display: block;
}

.qs-club-metrics strong,
.qs-private-facts span {
  color: #f4c15a;
  font-size: 1.35rem;
  font-weight: 800;
}

.qs-club-metrics span,
.qs-private-facts strong {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 239, 214, 0.5);
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qs-club-visual,
.qs-gallery-grid figure {
  border: 1px solid rgba(255, 214, 154, 0.08);
  overflow: hidden;
}

.qs-club-visual img,
.qs-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qs-price-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.qs-price-card strong {
  color: #fff1d7;
  font-size: 2.5rem;
  line-height: 1;
}

.qs-price-card--accent {
  border-color: rgba(255, 84, 120, 0.3);
  background:
    linear-gradient(180deg, rgba(110, 24, 55, 0.28), rgba(255,255,255,0.01)),
    rgba(25, 11, 22, 0.95);
}

.qs-private-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.qs-private-card__fields {
  display: grid;
  gap: 0.7rem;
}

.qs-private-card__fields div {
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 214, 154, 0.08);
  color: rgba(255, 239, 214, 0.38);
  font-size: 0.88rem;
}

.qs-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 15rem);
  gap: 0.75rem;
}

.qs-gallery-grid__main {
  grid-row: span 2;
}

@media (max-width: 1199px) {
  .qs-show-grid,
  .qs-room-panels,
  .qs-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .qs-home-stats__grid,
  .qs-home-head,
  .qs-show-layout,
  .qs-steps-row,
  .qs-club-layout,
  .qs-private-layout,
  .qs-pricing-grid,
  .qs-room-panels,
  .qs-show-grid,
  .qs-club-metrics,
  .qs-private-facts,
  .qs-gallery-grid {
    grid-template-columns: 1fr;
  }

  .qs-home-stats__grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 214, 154, 0.08);
  }

  .qs-gallery-grid {
    grid-template-rows: auto;
  }

  .qs-gallery-grid__main {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .qs-home-hero {
    min-height: auto;
    padding: 4.2rem 0 3.5rem;
  }

  .qs-home-hero__logo {
    width: min(100%, 20rem);
  }

  .qs-home-head h2,
  .qs-club-copy h2,
  .qs-private-copy h2 {
    font-size: 2.2rem;
  }
}

/* Stronger art direction pass */
.public-header {
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.96), rgba(8, 8, 12, 0.9)),
    rgba(8, 8, 12, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.public-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 109, 89, 0.45), transparent);
}

.public-brand img {
  filter:
    drop-shadow(0 0 10px rgba(255, 110, 188, 0.18))
    drop-shadow(0 0 24px rgba(255, 216, 122, 0.16));
}

.public-nav {
  position: relative;
  border-color: rgba(255, 233, 181, 0.08);
  background: rgba(255,255,255,0.015);
}

.public-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent 18%, transparent 82%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.public-nav a {
  position: relative;
}

.public-nav a.is-active::after,
.public-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #31dfff, transparent);
  box-shadow: 0 0 12px rgba(49, 223, 255, 0.45);
}

.public-button--primary {
  box-shadow:
    0 0 0 1px rgba(255, 220, 156, 0.2),
    0 0 26px rgba(242, 177, 38, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -2px 0 rgba(127, 79, 7, 0.28);
}

.qs-home-hero {
  background:
    linear-gradient(180deg, rgba(10, 8, 16, 0.2), rgba(10, 8, 16, 0.92)),
    radial-gradient(circle at center 34%, rgba(255, 188, 89, 0.18), transparent 20%),
    radial-gradient(circle at center 18%, rgba(184, 114, 255, 0.2), transparent 24%),
    url("/assets/quizstation/bg-stars.jpeg") center top / cover no-repeat;
}

.qs-home-hero__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4rem;
  width: min(56rem, 92%);
  height: 22rem;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    url("/assets/quizstation/host-stage.png") center bottom / cover no-repeat;
  opacity: 0.2;
  filter: saturate(0.95) blur(0.5px);
  pointer-events: none;
}

.qs-home-hero__lights {
  display: flex;
  gap: 6rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.qs-home-hero__lights span {
  width: 0.35rem;
  height: 10rem;
  background: linear-gradient(180deg, rgba(90, 210, 255, 0), rgba(88, 187, 255, 0.75) 20%, rgba(255, 222, 102, 0.4) 48%, rgba(90, 210, 255, 0));
  filter: blur(0.3px);
  opacity: 0.68;
  transform: rotate(10deg);
}

.qs-home-hero__lights span:nth-child(2) {
  transform: rotate(-2deg);
  height: 12rem;
}

.qs-home-hero__lights span:nth-child(3) {
  transform: rotate(-12deg);
}

.qs-home-hero__logo-wrap {
  position: relative;
  margin-top: 1.2rem;
}

.qs-home-hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: auto 8% 38% 8%;
  height: 1.1rem;
  background: radial-gradient(circle, rgba(255, 224, 133, 0.85) 0%, rgba(255, 164, 66, 0.54) 35%, rgba(255, 164, 66, 0) 76%);
  filter: blur(6px);
}

.qs-home-hero__logo {
  position: relative;
  z-index: 1;
}

.qs-home-hero__title {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: #fff4e2;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.qs-home-hero__body {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-top: 1.05rem;
}

.qs-home-hero__actions {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
}

.qs-home-hero__hint {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.qs-home-section {
  position: relative;
}

.qs-home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.014), transparent 12%, transparent 88%, rgba(255,255,255,0.012)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 5px);
  opacity: 0.22;
  pointer-events: none;
}

.qs-home-head,
.qs-room-panels,
.qs-show-layout,
.qs-steps-row,
.qs-club-layout,
.qs-pricing-grid,
.qs-private-layout,
.qs-gallery-grid {
  position: relative;
  z-index: 1;
}

.qs-room-panel,
.qs-show-card,
.qs-booking-dock,
.qs-price-card,
.qs-private-card,
.qs-step-box {
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.qs-room-panel::before,
.qs-show-card::before,
.qs-price-card::before,
.qs-private-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 28%, transparent 70%, rgba(255,110,89,0.03));
  pointer-events: none;
}

.qs-room-panel__stage::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0.8rem;
  height: 5rem;
  background: radial-gradient(circle at center, rgba(137, 72, 255, 0.16), transparent 62%);
  filter: blur(10px);
}

.qs-room-panel__screen {
  box-shadow: 0 0 18px rgba(255, 110, 89, 0.12);
}

.qs-show-card {
  position: relative;
  min-height: 100%;
}

.qs-show-card__top {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 214, 154, 0.08);
}

.qs-show-card__footer {
  align-items: center;
}

.qs-show-card__badge {
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 110, 89, 0.24);
  background: rgba(255, 110, 89, 0.06);
}

.qs-booking-dock {
  position: sticky;
  top: 6.4rem;
  background:
    linear-gradient(180deg, rgba(18, 11, 28, 0.96), rgba(10, 8, 16, 0.98)),
    rgba(13, 10, 19, 0.95);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.qs-booking-dock__selector {
  box-shadow: inset 0 0 0 1px rgba(49, 223, 255, 0.08);
}

.qs-step-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(15, 10, 22, 0.9);
}

.qs-club-visual,
.qs-gallery-grid figure {
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.qs-club-visual {
  min-height: 28rem;
}

.qs-club-visual img {
  filter: saturate(1.08) contrast(1.02);
}

.qs-price-card strong {
  text-shadow: 0 8px 24px rgba(0,0,0,0.34);
}

.qs-price-card--accent {
  box-shadow:
    0 20px 45px rgba(110, 24, 55, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.qs-private-card {
  background:
    linear-gradient(180deg, rgba(20, 13, 30, 0.95), rgba(11, 9, 18, 0.98)),
    rgba(13, 10, 19, 0.95);
}

.qs-private-card__fields div:last-child {
  min-height: 5.5rem;
}

.qs-gallery-grid figure {
  position: relative;
}

.qs-gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.28) 100%),
    radial-gradient(circle at top, rgba(255, 175, 74, 0.08), transparent 38%);
  pointer-events: none;
}

.public-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,8,12,0.96), rgba(5,5,7,1)),
    #050507;
}

.public-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 5px);
  opacity: 0.16;
  pointer-events: none;
}

.public-footer__inner,
.public-footer__bottom {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .qs-booking-dock {
    position: static;
  }

  .qs-home-hero__lights {
    gap: 2rem;
  }

}

@media (max-width: 640px) {
  .qs-home-hero__title {
    font-size: 2.1rem;
  }

  .qs-home-hero__lights {
    display: none;
  }
}

/* QuizStation source-style refinements */
.public-header {
  background: rgba(8, 8, 10, 0.92);
  border-bottom: 1px solid rgba(255, 214, 154, 0.12);
}

.public-header__inner {
  min-height: 4.75rem;
}

.public-nav {
  border: 1px solid rgba(255, 214, 154, 0.12);
  padding: 0 0.75rem;
  min-height: 3.2rem;
}

.public-nav a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 0.95rem 0.95rem;
}

.public-button {
  min-height: 3rem;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.public-button--primary {
  background: linear-gradient(180deg, #f8db74 0%, #f2b126 55%, #c68a0f 100%);
  box-shadow:
    0 0 0 1px rgba(255, 214, 154, 0.18),
    0 0 28px rgba(242, 177, 38, 0.18);
}

.public-button--secondary {
  border: 1px solid rgba(255, 214, 154, 0.22);
  color: rgba(255, 244, 223, 0.88);
}

.tv-hero,
.tv-page-hero {
  padding: 4.5rem 0 5.2rem;
  background:
    linear-gradient(180deg, rgba(8, 7, 10, 0.8), rgba(8, 7, 10, 0.94)),
    url("/assets/quizstation/bg-stars.jpeg") center 22% / cover no-repeat;
}

.tv-hero::after,
.tv-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 11, 22, 0.26) 50%, rgba(8, 7, 10, 0.92) 100%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px);
  pointer-events: none;
  opacity: 0.28;
}

.tv-hero__ticker,
.tv-kicker,
.tv-show-card__tag,
.tv-room-card__eyebrow {
  border-radius: 0;
  border-color: rgba(255, 104, 112, 0.45);
  background: rgba(255, 96, 96, 0.04);
  color: #f3be66;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
}

.tv-hero__ticker {
  padding-inline: 1.4rem;
  min-height: 3rem;
}

.tv-hero__address {
  font-family: "Cairo", "Assistant", monospace;
  color: #38dbff;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  margin-top: 1.15rem;
}

.tv-hero__logo-wrap {
  margin-top: 2.25rem;
  margin-bottom: 1.5rem;
}

.tv-hero__frame {
  display: inline-flex;
  padding: 1.4rem 1.4rem 1rem;
  border: 1px solid rgba(255, 113, 200, 0.2);
  background:
    linear-gradient(180deg, rgba(30, 20, 40, 0.32), rgba(14, 11, 21, 0.18)),
    rgba(8, 8, 12, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 0 40px rgba(191, 99, 255, 0.1);
}

.tv-hero__logo {
  width: min(100%, 41rem);
  filter:
    drop-shadow(0 0 16px rgba(255, 211, 117, 0.14))
    drop-shadow(0 0 42px rgba(255, 117, 190, 0.08));
}

.tv-hero__tagline,
.tv-page-hero h1,
.tv-section h2,
.tv-editorial h2,
.tv-groups h2,
.tv-booking-summary h2,
.tv-room-card h3,
.tv-show-card h3 {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.tv-hero__tagline,
.tv-page-hero h1 {
  max-width: 48rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.92;
}

.tv-hero__body,
.tv-page-hero p,
.tv-section p,
.tv-editorial p,
.tv-groups p,
.tv-booking-summary p {
  color: rgba(255, 240, 222, 0.66);
}

.tv-stats {
  padding: 0;
  border-top: 1px solid rgba(255, 214, 154, 0.12);
  border-bottom: 1px solid rgba(255, 214, 154, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.tv-stats__grid {
  gap: 0;
}

.tv-stat {
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255, 214, 154, 0.1);
  background: transparent;
  box-shadow: none;
  padding: 1.6rem 1.4rem;
}

.tv-stat:last-child {
  border-right: 0;
}

.tv-stat__value {
  font-size: clamp(2.3rem, 3vw, 3.15rem);
  letter-spacing: 0.03em;
}

.tv-stat__label {
  margin-top: 0.45rem;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tv-section {
  padding: 5.2rem 0;
}

.tv-section__head {
  margin-bottom: 2.2rem;
}

.tv-section__head--compact {
  align-items: start;
}

.tv-editorial,
.tv-groups,
.tv-page-hero__grid,
.tv-booking-layout {
  gap: 2rem;
}

.tv-editorial__visual,
.tv-groups__visual,
.tv-page-hero__visual,
.tv-room-card,
.tv-show-card,
.tv-booking-panel,
.tv-booking-summary,
.tv-step-card,
.tv-photo-grid__item {
  border-radius: 0;
}

.tv-room-card,
.tv-show-card,
.tv-booking-panel,
.tv-booking-summary,
.tv-step-card,
.tv-photo-grid__item,
.tv-editorial__visual,
.tv-groups__visual {
  border-color: rgba(255, 214, 154, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(11, 11, 13, 0.82);
  box-shadow: none;
}

.tv-room-card__media,
.tv-page-hero__visual,
.tv-editorial__visual,
.tv-groups__visual {
  border: 1px solid rgba(255, 214, 154, 0.08);
}

.tv-room-card__media {
  aspect-ratio: 4 / 3;
}

.tv-room-card__body,
.tv-show-card__body,
.tv-booking-panel,
.tv-booking-summary,
.tv-step-card {
  padding: 1.3rem;
}

.tv-room-card h3,
.tv-show-card h3 {
  font-size: 1.2rem;
  margin-top: 0.9rem;
}

.tv-show-card {
  gap: 1.4rem;
}

.tv-show-card__meta {
  margin-top: 0.7rem;
}

.tv-show-card__side {
  min-width: 10rem;
}

.tv-show-card__side strong {
  font-size: 2rem;
  line-height: 1;
}

.tv-steps-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 214, 154, 0.1);
  border-left: 1px solid rgba(255, 214, 154, 0.1);
}

.tv-step-card {
  border-right: 1px solid rgba(255, 214, 154, 0.1);
  border-bottom: 1px solid rgba(255, 214, 154, 0.1);
  min-height: 15rem;
}

.tv-step-card__index {
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #f4c775;
  font-family: "Cairo", "Assistant", monospace;
  font-size: 2rem;
  line-height: 1;
}

.tv-photo-grid {
  gap: 0.75rem;
}

.tv-photo-grid__item {
  position: relative;
}

.tv-photo-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 10px, transparent 10px 20px);
  pointer-events: none;
}

.tv-booking-panel label,
.tv-payment-state p,
.tv-booking-summary__row span,
.public-footer__address {
  font-family: "Cairo", "Assistant", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tv-booking-panel input,
.tv-booking-panel select,
.tv-booking-panel textarea {
  border-radius: 0;
  min-height: 3.15rem;
  background: rgba(255, 255, 255, 0.025);
}

.tv-payment-state__icon {
  border-radius: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(180deg, #fed46b 0%, #e7a12d 100%);
  box-shadow: none;
}

.public-footer {
  margin-top: 0;
  padding-top: 2.75rem;
  background: #060607;
}

.public-footer__inner {
  gap: 2.6rem;
}

.public-footer__links a {
  font-size: 0.84rem;
}

@media (max-width: 991px) {
  .tv-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 214, 154, 0.1);
  }

  .tv-stat:last-child {
    border-bottom: 0;
  }

  .tv-steps-grid {
    gap: 1rem;
    border: 0;
  }

  .tv-step-card {
    border: 1px solid rgba(255, 214, 154, 0.1);
  }
}

@media (max-width: 640px) {
  .public-nav {
    padding: 0 0.35rem;
  }

  .tv-hero,
  .tv-page-hero {
    padding-top: 3.2rem;
    padding-bottom: 3.6rem;
  }

  .tv-hero__address {
    letter-spacing: 0.22em;
  }

  .tv-hero__frame {
    padding: 0.85rem 0.85rem 0.55rem;
  }
}
