:root {
  --bg-0: #070707;
  --bg-1: #141111;
  --bg-2: #191717;
  --card: rgba(17, 17, 18, 0.88);
  --card-border: rgba(255, 255, 255, 0.13);
  --text: #f5f0e8;
  --muted: #c2b8aa;
  --primary: #d71920;
  --primary-2: #f2d7ad;
  --accent: #7b1d1d;
  --ok: #7ce8c9;
  --warn: #ffbe76;
  --danger: #ff7f7f;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.58);
  --radius: 8px;
  --content-width: 1020px;
  --admin-width: 1220px;
  --font-display: "Kapsalon Pencil", "Special Elite", Georgia, serif;
  --font-body: "TT Drugs", "Special Elite", "Courier New", monospace;
  --font-admin: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Kapsalon Pencil";
  src:
    url("/assets/fonts/KapsalonPencil.woff2") format("woff2"),
    url("/assets/fonts/KapsalonPencil.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Special Elite";
  src: url("/assets/fonts/special-elite-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Special Elite";
  src: url("/assets/fonts/special-elite-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "TT Drugs";
  src: url("/assets/fonts/tt-drugs-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Drugs";
  src: url("/assets/fonts/tt-drugs-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.splash-screen.fade-out {
  opacity: 0;
}

.splash-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 11% 8%, rgba(215, 25, 32, 0.24), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(242, 215, 173, 0.08), transparent 28%),
    linear-gradient(155deg, var(--bg-0), var(--bg-1) 46%, #0a1110);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  padding: 1rem clamp(0.9rem, 2.4vw, 1.7rem) 2.6rem;
}

.fog {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.23;
  pointer-events: none;
  z-index: -1;
  animation: drift 16s ease-in-out infinite alternate;
}

.fog-a {
  background: #d71920;
  top: -13vw;
  left: -10vw;
}

.fog-b {
  background: #f2d7ad;
  top: 25vh;
  right: -14vw;
  animation-delay: 2.4s;
}

@keyframes drift {
  from {
    transform: translateY(0) translateX(0) scale(1);
  }
  to {
    transform: translateY(12px) translateX(18px) scale(1.05);
  }
}

.topbar {
  max-width: var(--content-width);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(7, 7, 7, 0.82);
  border: 1px solid rgba(242, 215, 173, 0.18);
  border-radius: var(--radius);
  padding: 0.52rem 0.7rem;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0.8rem;
  z-index: 12;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  display: block;
  width: clamp(82px, 10vw, 118px);
  height: auto;
}

main,
footer {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── Sponsor strip ─────────────────────────────────────────── */
.sponsors-strip {
  width: 100%;
  max-width: var(--content-width);
  margin: 0.9rem auto 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-1);
  padding: 0.75rem 1.25rem;
  overflow: hidden;
}

.sponsors-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sponsors-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0.6;
  margin: 0;
}

.sponsors-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sponsors-logos a,
.sponsor-logo-static {
  display: flex;
  align-items: center;
  opacity: 0.75;
}

.sponsors-logos a {
  transition: opacity 0.2s;
}

.sponsors-logos a:hover {
  opacity: 1;
}

.sponsors-logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

main {
  display: grid;
  gap: 0.9rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.12;
}

.festival-name {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.05rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

li + li {
  margin-top: 0.46rem;
}

section {
  margin-bottom: 0.8rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(13, 10, 10, 0.94), rgba(29, 18, 18, 0.86) 54%, rgba(7, 7, 7, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 17px);
  border: 1px solid rgba(242, 215, 173, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 2rem);
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(1rem, 4vw, 2.5rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 4%, rgba(215, 25, 32, 0.50) 14%, transparent 24%),
    linear-gradient(12deg, transparent 30%, rgba(215, 25, 32, 0.40) 40%, transparent 52%);
  -webkit-mask-image: radial-gradient(ellipse at 48% 85%, black 10%, transparent 65%);
  mask-image: radial-gradient(ellipse at 48% 85%, black 10%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-copy,
.hero-event-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  padding: 0.22rem 0.66rem;
  border-radius: var(--radius);
  background: rgba(242, 215, 173, 0.12);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: #f3d4bc;
  margin-bottom: 0.85rem;
}

.hero-logo {
  display: block;
  width: min(500px, 88vw);
  margin: 0 0 0.9rem;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.48));
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #f5e0d6;
  margin-bottom: 0.65rem;
  font-family: "Special Elite", "Courier New", monospace;
}

.hero-lead {
  max-width: 67ch;
  color: var(--muted);
  font-family: "Special Elite", "Courier New", monospace;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-event-card {
  justify-self: end;
  width: min(310px, 100%);
  border-left: 2px solid rgba(215, 25, 32, 0.85);
  padding: 1rem 0 1rem 1.1rem;
  background: linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent);
}

.hero-event-kicker {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-event-date {
  margin-top: 0.35rem;
  color: #fff7ef;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  line-height: 1;
}

.hero-event-place {
  margin-top: 0.6rem;
  color: #f2d7ad;
}

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

.btn,
button {
  border: 0;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.64rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff4ee;
  background: #d71920;
  box-shadow: 0 9px 28px rgba(215, 25, 32, 0.38);
}

.btn-ghost,
.admin-link {
  color: #f8eee4;
  background: rgba(242, 215, 173, 0.08);
  border: 1px solid rgba(242, 215, 173, 0.22);
}

.btn-danger {
  color: #ffe9e9;
  background: rgba(239, 84, 72, 0.2);
  border: 1px solid rgba(239, 84, 72, 0.45);
}

.btn-small {
  padding: 0.42rem 0.62rem;
  border-radius: 10px;
  font-size: 0.82rem;
}

.admin-link {
  padding: 0.44rem 0.82rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.7rem;
}

.status-strip article {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(7, 11, 16, 0.62);
  padding: 0.83rem;
}

.strip-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.strip-value {
  margin-top: 0.2rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.strip-note {
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.tabs-section {
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: rgba(8, 8, 9, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  padding: 0.76rem;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(242, 215, 173, 0.14);
}

.tab {
  color: var(--muted);
  background: transparent;
  border-radius: var(--radius);
  padding: 0.52rem 0.74rem;
  font-weight: 700;
}

.tab.active {
  background: rgba(215, 25, 32, 0.28);
  color: #fff;
}

.tab-panel {
  display: none;
  padding: 1rem;
}

.tab-panel.active {
  display: block;
}

.panel-grid {
  display: grid;
  gap: 0.8rem;
}

.panel-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.panel-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 1rem;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: start;
}

.about-main {
  min-height: 330px;
  padding: clamp(1rem, 3vw, 1.8rem);
  border-left: 2px solid var(--primary);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.section-kicker {
  color: #d71920;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}

.about-main h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

#about-lead {
  color: #f5e0d6;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  max-width: 62ch;
  font-family: "Special Elite", "Courier New", monospace;
}

#about-copy {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 72ch;
}

.about-facts {
  display: grid;
  gap: 0.65rem;
}

.about-facts article {
  border: 1px solid rgba(242, 215, 173, 0.13);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.22);
}

.about-facts span,
.about-facts small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.about-facts strong {
  display: block;
  margin-top: 0.22rem;
  color: #fff7ef;
  font-weight: 700;
}

.card h2,
.card h3,
.card h4 {
  margin-bottom: 0.62rem;
}

.card.wide {
  margin-top: 0.82rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.rule-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0.5rem 0;
}

.rule-visual-card {
  padding: 0.72rem;
  display: grid;
}

.rule-visual-card img {
  width: 100%;
  min-height: 190px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.24);
}

.hosts-stage {
  background: #050507;
  border-color: rgba(255, 255, 255, 0.12);
}

.hosts-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.42rem;
}

.host-card {
  position: relative;
  min-height: 300px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #0b0d12;
  text-decoration: none;
  text-align: left;
  color: #fff;
  padding: 0;
  cursor: pointer;
  font: inherit;
  width: 100%;
  transition: border-color 0.18s ease;
}

.host-card:hover {
  border-color: rgba(240, 83, 83, 0.45);
}

.host-card-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transform: scale(1.02);
}

.host-card-image-placeholder {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 46%);
}

.host-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 34%);
  pointer-events: none;
}

.host-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.72rem 0.78rem;
}

.host-card-name {
  color: #f05353;
  font-size: 1.05rem;
  line-height: 1.2;
  font-family: "Special Elite", "Courier New", monospace;
}

.host-card-role,
.host-card-summary {
  font-size: 0.94rem;
  line-height: 1.35;
}

.hint {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

.ticket-cards {
  display: grid;
  gap: 0.6rem;
}

.ticket-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.82rem;
  background: rgba(0, 0, 0, 0.28);
}

.ticket-card h3 {
  margin: 0 0 0.45rem;
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 0.36rem 0.7rem;
  font-size: 0.91rem;
  margin-bottom: 0.56rem;
}

.ticket-meta span {
  color: var(--muted);
}

.ticket-items {
  margin-top: 0.45rem;
}

form,
.admin-form {
  display: grid;
  gap: 0.72rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.58rem 0.64rem;
}

input[type="file"] {
  max-width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(127, 211, 223, 0.55);
  outline-offset: 1px;
}

.captcha-box {
  display: grid;
  gap: 0.5rem;
  padding: 0.66rem;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.captcha-question {
  font-size: 0.93rem;
  color: #ffe1dc;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.55rem;
  font-weight: 500;
}

.checkbox input {
  margin-top: 0.16rem;
}

.bot-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  min-height: 1.1rem;
  font-size: 0.93rem;
}

.form-message.error {
  color: #ffbdbd;
}

.form-message.success {
  color: #adf4e5;
}

.result-card {
  margin-top: 0.8rem;
  text-align: center;
  background: linear-gradient(140deg, rgba(127, 211, 223, 0.15), rgba(239, 84, 72, 0.16));
}

.result-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.result-code {
  margin: 0.35rem 0;
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  letter-spacing: 0.08em;
}

.result-meta {
  margin-bottom: 0.8rem;
}

.reservation-qr {
  width: min(280px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #fff;
  padding: 0.45rem;
  margin-bottom: 0.8rem;
}

.result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.24);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary h3 {
  font-size: 1.02rem;
  margin: 0;
}

.faq-item p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.social-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.social-links a {
  display: block;
  padding: 0.6rem 0.74rem;
  border-radius: 11px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.contact-lines {
  display: grid;
  gap: 0.25rem;
}

#program-panel {
  font-family: "Special Elite", "Courier New", monospace;
}

.timeline-list {
  padding-left: 0;
  list-style: none;
}

.timeline-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.56rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.timeline-time {
  min-width: 58px;
  color: #ffb89f;
  font-weight: 700;
}

.timeline-item {
  flex: 1;
}

button.timeline-item-link {
  all: unset;
  flex: 1;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
  font-family: inherit;
  font-size: inherit;
}

button.timeline-item-link:hover {
  color: #f05353;
  text-decoration-color: #f05353;
}

.timeline-row.done .timeline-item {
  color: rgba(244, 246, 252, 0.74);
}

.timeline-row.current {
  border-radius: 12px;
  border-bottom-color: transparent;
  background: linear-gradient(135deg, rgba(239, 84, 72, 0.2), rgba(127, 211, 223, 0.14));
  padding-inline: 0.6rem;
}

.timeline-row.current .timeline-time {
  color: #fff1cb;
}

.timeline-row.upcoming .timeline-time {
  color: #b7dbff;
}

.timeline-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0f1219;
  background: #ffd8a8;
  border-radius: 999px;
  padding: 0.2rem 0.46rem;
  font-weight: 800;
}

.live-progress {
  margin: 0.45rem 0 0.7rem;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.live-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.35s ease;
}

footer {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

footer code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.35rem;
  border-radius: 7px;
}

.tiny {
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 22;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 11, 0.7);
  backdrop-filter: blur(4px);
}

.cookie-panel {
  width: min(980px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 12, 19, 0.98);
  box-shadow: var(--shadow);
  padding: 0.86rem;
  display: grid;
  gap: 0.64rem;
}

.cookie-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.cookie-banner p {
  color: #d9dff0;
  font-size: 0.88rem;
}

.cookie-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cookie-group h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cookie-group p {
  margin: 0;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.cookie-toggle input {
  width: auto;
}

.cookie-toggle-locked {
  opacity: 0.9;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.cookie-settings-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 21;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 12, 19, 0.9);
  color: #fff;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
}

.panel-image-card {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.panel-image-card img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.22);
}

.card.card-image-mode {
  display: grid;
  min-height: 220px;
  padding: 0.72rem;
}

.card.card-image-mode img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.secret-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 15, 20, 0.94);
  box-shadow: var(--shadow);
  z-index: 18;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealIn 0.72s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.1s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.18s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.26s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.cute-unlocked {
  --primary: #ff8395;
  --primary-2: #ffd08f;
  --accent: #90f8de;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 46;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 5, 10, 0.74);
  backdrop-filter: blur(4px);
}

.checkin-modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.image-upload-modal {
  width: min(980px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.image-upload-grid {
  margin-top: 0.5rem;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
}

.modal-close-btn {
  flex-shrink: 0;
}

.checkin-modal .actions {
  margin-top: 0.55rem;
}

.admin-body {
  padding-bottom: 2.4rem;
  font-family: var(--font-admin);
}

.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4 {
  font-family: var(--font-admin);
}

.admin-body .topbar {
  max-width: var(--admin-width);
}

.admin-main {
  max-width: var(--admin-width);
  margin: 0 auto;
}

.admin-grid {
  display: grid;
  gap: 0.82rem;
}

.admin-card {
  background: rgba(9, 13, 20, 0.8);
}

.admin-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.admin-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-tab {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.5rem 0.72rem;
  font-weight: 700;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
}

.admin-tab.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(239, 84, 72, 0.26), rgba(127, 211, 223, 0.19));
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: grid;
  gap: 0.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
}

.stat-card {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(7, 10, 16, 0.55);
  padding: 0.82rem;
}

.stat-card-featured {
  border-color: rgba(255, 138, 104, 0.34);
  background:
    linear-gradient(135deg, rgba(122, 29, 29, 0.28), rgba(7, 10, 16, 0.62)),
    rgba(7, 10, 16, 0.55);
}

.stat-card-warning {
  border-color: rgba(255, 190, 118, 0.55);
}

.stat-card .label {
  color: var(--muted);
  font-size: 0.8rem;
}

.stat-card .value {
  margin-top: 0.22rem;
  font-size: 1.36rem;
  font-weight: 800;
}

.stat-card .hint {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.stat-progress {
  height: 0.42rem;
  margin-top: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.telemetry-card {
  display: grid;
  gap: 0.8rem;
}

.telemetry-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
}

.telemetry-tables h4 {
  margin-bottom: 0.45rem;
}

.telemetry-card code {
  padding: 0.1rem 0.25rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.toolbar {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.table-card {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  text-align: left;
  padding: 0.56rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
}

td small {
  color: var(--muted);
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

.status.reserved {
  background: rgba(255, 190, 118, 0.18);
}

.status.checked_in {
  background: rgba(124, 232, 201, 0.2);
}

.status.canceled {
  background: rgba(255, 127, 127, 0.24);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.table-actions {
  min-width: 260px;
}

.scanner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.qr-reader {
  width: min(520px, 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.scanner-last-result {
  margin-top: 0.65rem;
}

.scanner-result-card {
  border: 1px solid rgba(127, 211, 223, 0.34);
  background: rgba(127, 211, 223, 0.1);
  border-radius: 12px;
  padding: 0.66rem;
}

.checkin-review-card {
  margin-top: 0.72rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(8, 14, 23, 0.65);
}

.checkin-review-content {
  margin: 0.6rem 0 0.75rem;
  display: grid;
  gap: 0.46rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.checkin-review-content p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.5rem 0.56rem;
  background: rgba(255, 255, 255, 0.04);
}

.checkin-review-content .checkin-review-note {
  grid-column: 1 / -1;
}

.checkin-quantity-field {
  margin-top: 0.35rem;
}

.editor-layout {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.94fr);
  gap: 0.9rem;
  align-items: start;
}

.editor-column {
  display: grid;
  gap: 0.8rem;
}

.editor-block {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 7, 12, 0.4);
  padding: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

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

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

.editor-grid .span-two {
  grid-column: 1 / -1;
}

.image-upload-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.editor-upload-preview {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
}

.image-upload-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.56rem;
}

.image-gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.42rem;
}

.image-gallery-thumb-button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: pointer;
}

.image-gallery-thumb-button img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.image-gallery-meta {
  display: grid;
  gap: 0.1rem;
}

.image-gallery-meta p {
  margin: 0;
}

.image-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.gallery-delete-button {
  color: #ffd4d4;
  border-color: rgba(255, 129, 129, 0.45);
}

.editor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.editor-row h5 {
  margin: 0;
}

.inline-panel-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.inline-panel-control {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.inline-panel-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.inline-panel-image-fields {
  width: min(260px, 100%);
  display: grid;
  gap: 0.35rem;
}

.inline-panel-image-fields input {
  min-height: 34px;
}

.program-slot-list,
.faq-editor-list,
.social-editor-list,
.panel-settings-list {
  display: grid;
  gap: 0.52rem;
}

.program-track-editor {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.55rem;
}

.content-card-editor-list {
  display: grid;
  gap: 0.56rem;
}

.content-card-editor-list + .content-card-editor-list {
  margin-top: 0.7rem;
}

.hosts-editor-list,
.people-editor-list {
  display: grid;
  gap: 0.56rem;
}

/* ── Sponsors admin editor ────────────────────────────────── */
.sponsors-editor-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.sponsor-editor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
}

.sponsor-thumb {
  width: 80px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
}

.sponsor-editor-main {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.28rem;
}

.sponsor-name {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sponsor-link-field {
  display: grid;
  gap: 0.18rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.sponsor-link-field input {
  width: 100%;
  min-width: 0;
}

.sponsor-actions {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-placeholder {
  display: inline-block;
  width: 2rem;
}

.program-slot-row,
.faq-item-row,
.social-item-row {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.5rem;
}

.panel-setting-row {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.55rem;
}

.content-card-row {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.55rem;
}

.host-item-row {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.55rem;
}

.host-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.host-item-actions {
  display: flex;
  gap: 0.25rem;
}

.panel-setting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.content-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.panel-setting-actions {
  display: flex;
  gap: 0.38rem;
}

.content-card-actions {
  display: flex;
  gap: 0.38rem;
}

.panel-icon-btn {
  min-width: 2rem;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.panel-icon-btn.is-off {
  opacity: 0.54;
}

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

.content-card-grid textarea {
  min-height: 72px;
}

.panel-setting-grid .span-two {
  grid-column: 1 / -1;
}

.program-slot-row {
  grid-template-columns: minmax(120px, 150px) 1fr minmax(100px, 180px) auto;
}

.faq-item-row,
.social-item-row {
  grid-template-columns: 1fr auto;
}

.faq-item-row .span-two,
.social-item-row .span-two {
  grid-column: 1 / -1;
}

.faq-item-row textarea {
  min-height: 70px;
}

.preview-column {
  position: sticky;
  top: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 8, 13, 0.5);
  padding: 0.78rem;
}

.content-preview {
  width: 100%;
  height: 740px;
  min-height: 740px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0c0f17;
}

.person-modal-overlay {
  z-index: 50;
}

.person-modal {
  width: min(820px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  animation: revealIn 0.25s ease forwards;
}

.person-modal .modal-head {
  margin-bottom: 0.6rem;
}

.person-modal-name {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.person-modal-role {
  margin-top: 0.2rem;
  color: #f05353;
  font-size: 0.95rem;
}

.person-modal-body {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.person-modal-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.person-modal-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.person-modal-summary {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.person-modal-bio {
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.person-modal-bio p {
  margin: 0;
}

.person-modal-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.person-social-link {
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .person-modal-body {
    grid-template-columns: 1fr;
  }

  .person-modal-image-wrap {
    max-width: 260px;
  }
}

.host-detail-body {
  min-height: 100vh;
}

.host-detail-shell {
  max-width: min(980px, calc(100% - 1.8rem));
}

.host-detail-hero {
  margin-bottom: 0.9rem;
}

.host-detail-card {
  background: rgba(8, 10, 14, 0.9);
}

.host-detail-wrap {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  align-items: start;
}

.host-detail-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.host-detail-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
}

.host-summary {
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.host-bio {
  display: grid;
  gap: 0.42rem;
}

.host-bio p {
  margin: 0;
}

.content-editor {
  width: 100%;
  min-height: 340px;
  resize: vertical;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.4;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.advanced-editor {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 0.65rem;
}

.advanced-editor summary {
  cursor: pointer;
  font-weight: 700;
}

body.checkin-only .admin-tabs {
  display: none;
}

body.checkin-only .admin-top-actions #refresh-all {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-top: 0.8rem;
    padding-bottom: 5.3rem;
  }

  .topbar {
    border-radius: 14px;
    position: static;
  }

  .brand-logo {
    width: min(96px, 34vw);
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero::after {
    inset: auto -28% -22% 8%;
    height: 44%;
  }

  .hero-logo {
    width: min(390px, 82vw);
  }

  .hero-event-card {
    justify-self: stretch;
    width: 100%;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .tab {
    text-align: left;
  }

  .ticket-meta {
    grid-template-columns: 1fr;
  }

  .timeline-time {
    min-width: 48px;
  }

  .timeline-row.current {
    padding-inline: 0.42rem;
  }

  .timeline-list li {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .timeline-badge {
    margin-left: 48px;
  }

  .admin-top-row {
    flex-direction: column;
  }

  .admin-body .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .admin-link {
    align-self: flex-start;
  }

  .admin-top-actions {
    width: 100%;
  }

  .admin-top-actions .btn {
    flex: 1 1 150px;
  }

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

  .toolbar {
    grid-template-columns: 1fr;
  }

  .scanner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .scanner-actions .btn {
    width: 100%;
  }

  .qr-reader {
    width: 100%;
  }

  table {
    min-width: 640px;
  }

  .checkin-review-content {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 0.65rem;
  }

  .checkin-modal {
    max-height: calc(100vh - 1.3rem);
  }

  .image-upload-modal {
    max-height: calc(100vh - 1.3rem);
  }

  .checkin-modal .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    padding: 0.72rem;
  }

  .cookie-panel {
    max-height: calc(100vh - 1.44rem);
  }

  .cookie-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-settings-button {
    right: 0.72rem;
    bottom: 0.72rem;
  }

  .editor-layout {
    grid-template-columns: 1fr;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }

  .editor-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .inline-panel-toolbar,
  .inline-panel-control {
    width: 100%;
    justify-content: flex-start;
  }

  .inline-panel-image-fields {
    width: 100%;
  }

  .program-slot-row,
  .faq-item-row,
  .social-item-row {
    grid-template-columns: 1fr;
  }

  .panel-setting-grid {
    grid-template-columns: 1fr;
  }

  .preview-column {
    position: static;
  }

  .content-preview {
    height: 560px;
    min-height: 560px;
  }

  .host-card {
    min-height: 260px;
  }

  .host-card-image {
    min-height: 260px;
  }

  .host-detail-wrap {
    grid-template-columns: 1fr;
  }

  body.checkin-only .admin-main {
    max-width: 760px;
  }

  body.checkin-only .scanner-card {
    border-radius: 16px;
  }
}
