:root {
  --bg: #150607;
  --bg-soft: #230d0b;
  --panel: #2b1310;
  --panel-2: #371914;
  --line: #6f3a24;
  --text: #fff7ea;
  --muted: #d7bda1;
  --gold: #d79a12;
  --gold-2: #fff0b8;
  --red: #b32622;
  --green: #22c55e;
  --amber: #d9a01d;
  --copper: #9b5a38;
  --cream: #fff7dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 72% 0%, rgba(215, 154, 18, .15), transparent 34rem),
    radial-gradient(circle at 8% 22%, rgba(155, 90, 56, .2), transparent 30rem),
    linear-gradient(180deg, #150607 0%, #250d0b 48%, #120506 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(21, 6, 7, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 154, 18, .24);
}

.brand {
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--gold-2);
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #f7ddbe;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 154, 18, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.btn,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 11px 18px;
  border: 0;
  cursor: pointer;
}

.pill,
.btn.primary {
  background: linear-gradient(135deg, var(--cream), var(--gold) 58%, #8d4d24);
  color: #1b0705;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(215, 154, 18, .24);
}

.btn.ghost {
  border: 1px solid rgba(255, 240, 184, .34);
  background: rgba(255, 247, 220, .055);
  color: var(--cream);
}

.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 4.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 6, 7, .9), rgba(91, 20, 18, .34), rgba(21, 6, 7, .82)),
    linear-gradient(180deg, rgba(21, 6, 7, .06), rgba(21, 6, 7, .9));
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, var(--bg));
}

.hero-content {
  position: relative;
  max-width: 940px;
  text-align: center;
}

.kcta-hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 0;
  inset: auto;
  overflow: hidden;
  background: #140505;
}

.kcta-hero-slider::after {
  display: none;
}

.kcta-hero-slider .swiper-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
}

.kcta-hero-slider .swiper-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100vh - 72px);
  opacity: 0;
  background-color: #140505;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transition: opacity .75s ease;
}

.kcta-hero-slider .swiper-slide::before {
  display: none;
}

.kcta-hero-slider .swiper-slide.active {
  opacity: 1;
}

.kcta-hero-slider video,
.kcta-hero-slider .hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #140505;
  display: block;
}

.kcta-hero-slider .hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(67, 20, 14, .58);
  color: var(--cream);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  transition: background-color .3s ease;
}

.kcta-hero-slider .hero-nav:hover {
  background: rgba(92, 27, 18, .82);
}

.kcta-hero-slider .hero-nav::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.kcta-hero-slider .hero-prev::before {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.kcta-hero-slider .hero-next::before {
  transform: rotate(135deg);
  margin-right: 4px;
}

.kcta-hero-slider .hero-prev {
  left: 22px;
}

.kcta-hero-slider .hero-next {
  right: 22px;
}

.kcta-hero-slider .hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.kcta-hero-slider .hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 240, 184, .42);
  cursor: pointer;
}

.kcta-hero-slider .hero-dots button.active,
.kcta-hero-slider .hero-dots button.swiper-pagination-bullet-active {
  width: 20px;
  background: var(--gold-2);
  border-radius: 5px;
}

.hero-copy-below {
  display: grid;
  justify-items: center;
  padding-top: 46px;
  text-align: center;
}

.hero-copy-below h1 {
  max-width: 980px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: .96;
}

.hero-copy-below > p:not(.eyebrow) {
  max-width: 880px;
  color: #ffe7c2;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-copy-below .actions {
  justify-content: center;
  margin-top: 28px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 10px;
}

.hero h1 {
  font-size: clamp(46px, 9vw, 96px);
  line-height: .95;
  margin: 10px 0 18px;
}

.hero p,
.lead {
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
}

.lead-small,
.muted {
  color: var(--muted);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span,
.summary-pill {
  border: 1px solid rgba(216, 180, 90, .28);
  background: rgba(216, 180, 90, .09);
  color: #fff7d6;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 750;
}

.actions,
.step-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.actions {
  justify-content: center;
  margin-top: 30px;
}

.section,
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 20px;
}

.feature-band,
.stats-grid,
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-band article,
.stats-grid article,
.ticket-card,
.info-panel,
.checkout,
.auth-card,
.table-wrap,
.step-panel,
.cta-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-band article {
  min-height: 150px;
}

.feature-band span,
.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.feature-band strong,
.stats-grid strong {
  display: block;
  font-size: 24px;
  margin-top: 8px;
}

.program-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.program-section h2,
.performers-section h2,
.section-title-row h2,
.cta-strip h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin: 0;
}

.performers-section {
  display: grid;
  gap: 18px;
}

.performers-section h2 {
  max-width: 760px;
}

.performer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.performer-list span {
  border: 1px solid rgba(255, 240, 184, .28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 247, 220, .05);
  color: var(--cream);
  font-weight: 750;
}

.program-list {
  display: grid;
  gap: 12px;
}

.program-list article {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.program-list b {
  color: var(--gold-2);
}

.section-title-row,
.panel-head,
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.seat-map {
  overflow: auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 90, .11), transparent 20rem),
    #080b12;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.seat-map-shell {
  display: grid;
  gap: 10px;
}

.seat-map-helper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.seat-map-helper span {
  border: 1px solid rgba(216, 180, 90, .18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .035);
}

.seat-map-inner {
  min-width: max-content;
}

.venue-map {
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(243, 217, 139, .15), transparent 26rem),
    #070a11;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.venue-map-inner {
  min-width: 1120px;
  display: grid;
  gap: 28px;
}

.stage {
  text-align: center;
  min-width: 100%;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 22px;
  background: rgba(216, 180, 90, .08);
  letter-spacing: .12em;
  font-weight: 900;
}

.venue-map .stage {
  width: 72%;
  min-width: 0;
  justify-self: center;
  padding: 18px;
  border: 1px solid rgba(243, 217, 139, .82);
  background:
    linear-gradient(135deg, rgba(243, 217, 139, .22), rgba(255, 255, 255, .05)),
    #111827;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 38px rgba(216, 180, 90, .1);
}

.venue-zone {
  display: grid;
  gap: 14px;
}

.zone-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
  justify-content: center;
}

.zone-label strong {
  min-width: 86px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.zone-label span {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vip-tables {
  display: grid;
  grid-template-columns: repeat(4, 118px);
  justify-content: space-around;
  gap: 34px 64px;
  padding: 8px 26px 10px;
}

.vip-table-group {
  position: relative;
  width: 142px;
  height: 130px;
  justify-self: center;
}

.vip-table-core {
  position: absolute;
  inset: 42px 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f8fafc;
  color: #05070b;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .28);
}

.vip-seat {
  position: absolute;
  width: 30px;
  height: 28px;
  font-size: 10px;
  z-index: 2;
}

.vip-seat-a {
  top: 0;
  left: 35px;
}

.vip-seat-b {
  top: 0;
  right: 35px;
}

.vip-seat-c {
  top: 31px;
  right: 0;
}

.vip-seat-d {
  bottom: 31px;
  right: 0;
}

.vip-seat-e {
  right: 35px;
  bottom: 0;
}

.vip-seat-f {
  left: 35px;
  bottom: 0;
}

.vip-seat-g {
  bottom: 31px;
  left: 0;
}

.vip-seat-h {
  top: 31px;
  left: 0;
}

.vip-table-group:nth-child(n+5) {
  transform: translateX(58px);
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  align-items: start;
  gap: 28px 54px;
}

.seat-block {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  background: rgba(3, 7, 18, .28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}

.seat-block-row {
  display: grid;
  grid-template-columns: 18px repeat(5, 38px);
  gap: 4px;
  align-items: center;
}

.seat-block.six-seats .seat-block-row {
  grid-template-columns: 18px repeat(6, 38px);
}

.seat-block-row b {
  color: #dbe3ef;
  font-size: 12px;
  text-align: center;
}

.seat-block.hide-row-labels .seat-block-row {
  grid-template-columns: repeat(5, 38px);
}

.seat-block.hide-row-labels.six-seats .seat-block-row {
  grid-template-columns: repeat(6, 38px);
}

.seat-block.hide-row-labels .seat-block-row b {
  display: none;
}

.silver-zone .seat-block {
  background: rgba(242, 165, 27, .08);
}

.bronze-zone .seat-block {
  background: rgba(79, 149, 232, .08);
}

.seat-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.seat-row b {
  width: 120px;
  color: var(--muted);
  text-align: right;
  padding-right: 8px;
  flex: 0 0 auto;
}

.seat {
  width: 36px;
  height: 34px;
  border-radius: 6px;
  border: 0;
  background: #334155;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.seat-spacer {
  display: inline-block;
  width: 36px;
  height: 34px;
  visibility: hidden;
  pointer-events: none;
}

.seat.available {
  background: var(--seat-color, #334155);
  color: #10141d;
  font-weight: 850;
}

.seat.reserved {
  background: var(--amber);
}

.seat.sold {
  background: var(--red);
}

.seat.blocked {
  background: #475569;
}

.seat.selected {
  background: var(--green);
  color: #052e16;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
}

.seat.available:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .26);
}

.seat:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  color: var(--muted);
}

.seat-legend {
  gap: 8px;
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .035);
  font-size: 13px;
}

.legend i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.legend .available,
.legend i.available {
  background: #334155;
}

.legend .gold,
.legend i.gold {
  background: var(--gold);
}

.legend .silver,
.legend i.silver {
  background: #cbd5e1;
}

.legend .bronze,
.legend i.bronze {
  background: #b45309;
}

.legend .reserved,
.legend i.reserved {
  background: var(--amber);
}

.legend .sold,
.legend i.sold {
  background: var(--red);
}

.legend .blocked,
.legend i.blocked {
  background: #475569;
}

.legend .selected,
.legend i.selected {
  background: var(--green);
}

.purchase-head {
  text-align: center;
  margin-bottom: 24px;
}

.purchase-page {
  max-width: 1440px;
}

.purchase-page .step-panel {
  padding: clamp(22px, 2.4vw, 34px);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .03);
}

.checkout-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #273244;
  color: #fff;
  font-weight: 850;
}

.checkout-steps li.active {
  color: #fff;
  border-color: rgba(216, 180, 90, .55);
  background: rgba(216, 180, 90, .08);
}

.checkout-steps li.active span {
  background: var(--gold-2);
  color: #111;
}

.lock-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -6px 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, .36);
  border-radius: 8px;
  background: rgba(245, 158, 11, .11);
  color: #fff7ed;
  font-weight: 800;
}

.lock-timer strong {
  min-width: 68px;
  color: #fde68a;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.checkout {
  display: grid;
  gap: 14px;
}

.checkout input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0f172a;
  color: #fff;
}

.my-ticket-page {
  width: min(100%, 1120px);
}

.ticket-check-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 180, 90, .12), transparent 18rem),
    rgba(255, 255, 255, .04);
}

.ticket-check-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ticket-check-card .btn {
  min-width: 170px;
}

.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;
}

.admin-form-grid,
.inline-edit {
  display: grid;
  gap: 10px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px 160px auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}

.admin-form-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
}

.table-wrap input,
.table-wrap select,
.admin-form-grid input,
.admin-form-grid select,
.admin-toolbar input,
.admin-toolbar select,
.scanner select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0f172a;
  color: #fff;
}

.admin-summary-row,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.admin-summary-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
}

.pagination .active {
  background: var(--gold);
  color: #111;
}

.pagination .disabled {
  opacity: .45;
  pointer-events: none;
}

.copy-box {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #0f172a;
  color: #fff;
  resize: vertical;
}

.step-actions {
  justify-content: space-between;
  margin-top: 18px;
}

.hidden {
  display: none !important;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.event-page {
  max-width: 1480px;
}

.event-head {
  max-width: 940px;
}

.event-info-panel {
  display: grid;
  gap: 18px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-facts p {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.event-map-section {
  margin-top: 28px;
}

.event-location-section {
  margin-top: 28px;
}

.event-location-map {
  width: 100%;
  min-height: 380px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.event-location-map-embed {
  display: block;
  border: 1px solid var(--line);
}

.event-venue-map {
  max-height: none;
  overflow: visible;
  margin-top: 16px;
  padding: 18px;
}

.event-venue-map .venue-map-inner {
  width: 100%;
  min-width: 0;
  gap: 16px;
}

.event-venue-map .block-grid {
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 28px 54px;
}

.event-venue-map .vip-tables {
  grid-template-columns: repeat(4, 118px);
  justify-content: space-around;
  justify-items: center;
  gap: 34px 64px;
  padding: 8px 26px 10px;
}

.event-venue-map .vip-table-group {
  width: 142px;
  height: 130px;
}

.event-venue-map .vip-table-core {
  inset: 42px 38px;
  color: transparent;
  font-size: 0;
}

.event-venue-map .vip-seat {
  width: 36px;
  height: 34px;
}

.event-venue-map .seat {
  width: 36px;
  height: 34px;
  font-size: 0;
}

.event-venue-map .seat-spacer {
  width: 36px;
  height: 34px;
}

.event-venue-map .seat-block {
  gap: 3px;
  padding: 6px;
}

.event-seat {
  display: inline-grid;
  place-items: center;
  cursor: default;
}

.event-layout-row {
  grid-template-columns: repeat(5, 38px);
  gap: 4px;
}

.seat-block.six-seats .event-layout-row {
  grid-template-columns: repeat(6, 38px);
}

.event-layout-row b {
  display: none;
}

.event-seat.available:hover {
  filter: none;
  transform: none;
  box-shadow: none;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.sponsors {
  display: grid;
  gap: 12px;
}

.sponsors b {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 8px;
  background: var(--panel);
}

.cta-strip {
  background:
    linear-gradient(135deg, rgba(216, 180, 90, .14), rgba(255, 255, 255, .03)),
    var(--panel);
}

.cta-strip .btn {
  flex: 0 0 auto;
}

.site-footer {
  margin-top: auto;
  padding: 30px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  background: rgba(7, 10, 17, .72);
}

.footer-copy {
  display: grid;
  gap: 5px;
  line-height: 1.45;
}

.site-footer strong {
  color: var(--gold-2);
  font-size: 15px;
}

.footer-copy span:last-child {
  color: #f8fafc;
}

.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-contacts > span {
  color: var(--muted);
  font-weight: 800;
}

.footer-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 180, 90, .24);
  border-radius: 999px;
  padding: 9px 14px;
  color: #f8fafc;
  background: rgba(255, 255, 255, .035);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 180, 90, .42);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), #b88718);
  color: #111;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 217, 139, .18), transparent 32rem),
    radial-gradient(circle at 88% 82%, rgba(216, 180, 90, .12), transparent 28rem),
    linear-gradient(135deg, #06080d 0%, #101622 55%, #07090f 100%);
}

.auth-card {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 90, .22);
  border-radius: 8px;
  background: rgba(12, 16, 24, .82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.auth-hero,
.auth-panel {
  padding: clamp(28px, 5vw, 54px);
}

.auth-hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, .18), rgba(7, 9, 14, .92)),
    url('../slider/thumbs/1.png?v=2026070701') center 34% / contain no-repeat,
    #06080d;
  position: relative;
}

.auth-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(243, 217, 139, .18);
  border-radius: 8px;
  pointer-events: none;
}

.auth-hero > * {
  position: relative;
}

.auth-hero h1 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.auth-hero p {
  max-width: 520px;
  color: #dbe3ef;
}

.auth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.auth-points span {
  border: 1px solid rgba(243, 217, 139, .26);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, .32);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent),
    rgba(12, 17, 27, .92);
}

.auth-panel-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.auth-panel-head h2 {
  margin: 0 0 4px;
  font-size: 28px;
}

.auth-panel-head p,
.auth-help {
  margin: 0;
  color: var(--muted);
}

.auth-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-2), #a97810);
  color: #111;
  font-size: 28px;
  font-weight: 950;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #dbe3ef;
  font-weight: 750;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(216, 180, 90, .22);
  border-radius: 8px;
  padding: 13px 14px;
  background: #0a0f19;
  color: #fff;
}

.auth-form .btn {
  width: 100%;
  margin-top: 4px;
}

.auth-help {
  margin-top: 18px;
  font-size: 13px;
}

.alert {
  padding: 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, .16);
  border: 1px solid rgba(239, 68, 68, .35);
}

.success-alert {
  background: rgba(34, 197, 94, .16);
  border-color: rgba(34, 197, 94, .38);
  color: #dcfce7;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 180, 90, .1), transparent 28rem),
    #0a0d14;
}

.admin-topbar {
  display: none;
}

.admin-sidebar {
  background:
    linear-gradient(180deg, rgba(216, 180, 90, .08), transparent 24rem),
    #070a11;
  border-right: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-brand {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(216, 180, 90, .18);
}

.admin-brand span {
  font-size: 23px;
}

.admin-brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.admin-nav-link,
.admin-sidebar .link-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 11px 12px;
  color: #dbe3ef;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.admin-nav-link svg,
.admin-sidebar .link-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.25;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(216, 180, 90, .14);
  color: var(--gold-2);
}

.admin-sidebar .link-button {
  width: 100%;
  margin-top: 6px;
  color: #fca5a5;
}

.seat-action-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-menu-backdrop {
  display: none;
}

.admin-main {
  padding: clamp(20px, 3vw, 34px);
  overflow: auto;
}

.admin-head {
  margin-bottom: 22px;
}

.admin-head h1 {
  margin-bottom: 4px;
}

.admin-head p {
  color: var(--muted);
  margin: 0;
}

.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
}

.badge {
  background: #1e293b;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
}

.badge.success {
  background: rgba(16, 185, 129, .16);
  border-color: rgba(16, 185, 129, .36);
  color: #bbf7d0;
}

.badge.danger {
  background: rgba(239, 68, 68, .16);
  border-color: rgba(239, 68, 68, .36);
  color: #fecaca;
}

.badge.warning {
  background: rgba(245, 158, 11, .16);
  border-color: rgba(245, 158, 11, .36);
  color: #fde68a;
}

.actions-cell {
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 8px;
  align-items: flex-start;
}

.orders-table {
  min-width: 1520px;
}

.orders-table th:nth-child(1) {
  width: 58px;
}

.orders-table th:nth-child(2) {
  width: 170px;
}

.orders-table th:nth-child(3) {
  width: 240px;
}

.orders-table th:nth-child(4) {
  width: 190px;
}

.orders-table th:nth-child(5) {
  width: 170px;
}

.orders-table th:nth-child(6),
.orders-table th:nth-child(7) {
  width: 190px;
}

.orders-table th:nth-child(8) {
  width: 190px;
}

.orders-table th:nth-child(9) {
  width: 260px;
}

.order-code-display {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.35;
}

.icon-only {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.icon-only svg,
.has-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.35;
}

.has-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.admin-subnav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.seat-group-list {
  display: grid;
  gap: 6px;
}

.seat-group-list span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(255, 240, 184, .16);
  border-radius: 8px;
  background: rgba(255, 247, 220, .045);
  overflow-wrap: anywhere;
}

.ticket-detail-table {
  min-width: 860px;
}

.ticket-open-button {
  white-space: nowrap;
}

.order-row-number {
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(216, 180, 90, .1);
  color: var(--gold-2);
  font-weight: 900;
}

.order-status-stack,
.deadline-card,
.proof-cell {
  display: grid;
  gap: 7px;
  align-content: start;
}

.order-status-stack .badge,
.deadline-card .badge {
  width: max-content;
  max-width: 100%;
}

.deadline-card small,
.proof-cell small {
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.due-extend-form {
  grid-template-columns: 74px 38px;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.due-extend-form input {
  text-align: center;
}

.due-extend-form .small {
  min-width: 38px;
  white-space: nowrap;
}

.proof-status {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 240, 184, .24);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 247, 220, .055);
  color: var(--cream);
  font-size: 12px;
  font-weight: 850;
}

.proof-status.waiting {
  border-color: rgba(245, 158, 11, .42);
  background: rgba(245, 158, 11, .13);
  color: #fde68a;
}

.proof-status.empty {
  color: var(--muted);
}

.proof-view-button {
  width: max-content;
  background: linear-gradient(135deg, var(--cream), var(--gold) 58%, #8d4d24);
  color: #1b0705 !important;
  font-weight: 850;
}

.proof-file-name {
  max-width: 150px;
}

.orders-table td,
.orders-table input,
.orders-table .small,
.orders-table summary,
.orders-table label {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.orders-table input,
.orders-table select,
.orders-table button,
.orders-table .small {
  max-width: 100%;
}

.small,
.link-button {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.success {
  background: var(--green);
  color: #052e16;
}

.danger {
  background: var(--red);
  color: #fff;
}

.danger-zone {
  border: 1px solid rgba(239, 68, 68, .42);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(239, 68, 68, .12), rgba(255, 255, 255, .025)),
    var(--panel);
}

.danger-zone h2 {
  margin-top: 0;
  color: #fecaca;
}

.danger-zone li {
  margin: 6px 0;
  color: #dbe3ef;
}

.danger-action {
  background: linear-gradient(135deg, #fecaca, #dc2626) !important;
  color: #111 !important;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

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

.dashboard-stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.dashboard-stats article {
  padding: 18px;
}

.dashboard-stats article.needs-attention {
  border-color: rgba(245, 158, 11, .55);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, .13), rgba(255, 255, 255, .03)),
    var(--panel);
}

.dashboard-stats small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-grid.wide-left {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02)),
    var(--panel);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.panel-head h2 {
  margin: 0;
}

.panel-head a {
  color: var(--gold-2);
  font-size: 13px;
}

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

.status-list div,
.action-item,
.compact-list a,
.category-row {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(3, 7, 18, .28);
}

.status-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
}

.status-list span,
.category-row small,
.action-item span,
.action-item small,
.compact-list small,
.compact-list span {
  color: var(--muted);
}

.status-list small {
  grid-column: 1 / -1;
  color: #cbd5e1;
}

.category-dashboard,
.compact-list,
.scan-hour-list {
  display: grid;
  gap: 10px;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
}

.category-row strong {
  display: flex;
  gap: 8px;
  align-items: center;
}

.category-row i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.mini-bar {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(148, 163, 184, .18);
}

.mini-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.attention-panel {
  border-color: rgba(245, 158, 11, .32);
}

.action-item {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.compact-list a {
  display: grid;
  gap: 4px;
  color: #fff;
}

.scan-hour-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.link-button {
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 0;
}

.admin-details {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .025);
}

.admin-details summary {
  padding: 0;
  color: var(--gold-2);
  font-size: 13px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe3ef;
  font-size: 13px;
}

.check-row input {
  width: auto;
}

.scanner {
  max-width: 820px;
}

.scanner-search-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.scan-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.tab {
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}

.tab.active {
  background: var(--gold);
  color: #111;
}

.scan-result {
  margin-top: 18px;
}

.ticket-search-result {
  margin-top: 16px;
}

.ticket-search-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  color: #dbe3ef;
}

.ticket-search-head span {
  color: var(--muted);
  font-size: 13px;
}

.ticket-search-list {
  display: grid;
  gap: 12px;
}

.ticket-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(216, 180, 90, .22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(15, 23, 42, .74);
}

.ticket-search-card.is-used {
  border-color: rgba(245, 158, 11, .42);
}

.ticket-search-card h3 {
  margin: 8px 0 6px;
  color: #fff;
}

.ticket-search-card p {
  margin: 3px 0;
  color: #cbd5e1;
  overflow-wrap: anywhere;
}

.ticket-search-card .seat-group-list {
  margin: 8px 0 4px;
}

.scan-card {
  border: 1px solid rgba(216, 180, 90, .22);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

.scan-card.is-ready {
  border-color: rgba(34, 197, 94, .42);
}

.scan-card.is-warning {
  border-color: rgba(245, 158, 11, .48);
}

.scan-status {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(216, 180, 90, .14);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scan-card h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 42px);
}

.scan-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.scan-detail-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(3, 7, 18, .44);
}

.scan-detail-grid .scan-detail-wide {
  grid-column: 1 / -1;
}

.scan-detail-grid dt {
  color: var(--muted);
  font-size: 12px;
}

.scan-detail-grid dd {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 850;
}

.scan-detail-grid dd > span,
.ticket-search-card .seat-group-list span,
.checkin-recent-card .seat-group-list span {
  display: inline-block;
  margin: 3px 5px 3px 0;
  padding: 5px 8px;
  border: 1px solid rgba(255, 240, 184, .16);
  border-radius: 8px;
  background: rgba(255, 247, 220, .045);
  color: var(--cream);
  line-height: 1.35;
}

.checkin-stats {
  margin-bottom: 16px;
}

.checkin-recent-section {
  margin-top: 18px;
}

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

.checkin-recent-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 240, 184, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.checkin-recent-card p,
.checkin-recent-card small {
  color: var(--muted);
}

.checkin-recent-meta {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.scan-note {
  color: #dbe3ef;
  margin: 18px 0;
}

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

.confirm-summary {
  display: grid;
  gap: 14px;
}

.helpdesk-toolbar {
  grid-template-columns: minmax(260px, 1fr) auto auto;
}

.helpdesk-results,
.event-desk-grid {
  display: grid;
  gap: 14px;
}

.helpdesk-card,
.event-desk-card,
.empty-state {
  border: 1px solid rgba(216, 180, 90, .22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(15, 23, 42, .72);
}

.helpdesk-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.helpdesk-card h2,
.event-desk-card h2 {
  margin: 10px 0 8px;
}

.helpdesk-card p,
.event-desk-card p {
  color: #cbd5e1;
  margin: 5px 0;
  overflow-wrap: anywhere;
}

.helpdesk-actions {
  display: grid;
  gap: 8px;
}

.event-desk-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-desk-card.is-paid {
  border-color: rgba(34, 197, 94, .42);
}

.event-desk-card.is-pending {
  border-color: rgba(245, 158, 11, .42);
}

.event-desk-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(216, 180, 90, .14);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.event-desk-seat {
  font-size: 36px;
  font-weight: 900;
  color: #fff !important;
}

.payload-preview {
  max-width: 360px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  color: #cbd5e1;
}

.print-shell {
  background: #fff;
  color: #111827;
  padding: 24px;
}

.print-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.print-ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.print-ticket {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  break-inside: avoid;
}

.print-ticket h2 {
  margin: 0 0 8px;
}

.print-seat {
  font-size: 34px;
  font-weight: 900;
  margin: 8px 0;
}

.print-ticket img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

@media print {
  .no-print {
    display: none !important;
  }

  .print-shell {
    padding: 0;
  }
}

@media (max-width: 1180px) {
  .dashboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-grid,
  .dashboard-grid.wide-left {
    grid-template-columns: 1fr;
  }
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .035);
}

.summary-card h3 {
  margin: 0 0 12px;
}

.summary-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding-bottom: 8px;
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 0;
  font-size: 18px;
}

.compact-table table {
  min-width: 0;
}

.report-section {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.report-section h2 {
  margin: 0;
}

.report-checks {
  display: grid;
  gap: 14px;
}

.report-check {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .035);
}

.report-check.is-clear {
  border-color: rgba(34, 197, 94, .28);
}

.report-check.has-issue {
  border-color: rgba(245, 158, 11, .48);
}

.report-check-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.report-check h3,
.report-check p {
  margin-top: 0;
}

.qr-reader {
  max-width: 420px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.file-drop {
  display: block;
  max-width: 420px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  color: var(--gold-2);
  cursor: pointer;
}

.file-drop input {
  display: none;
}

.swal2-container {
  padding: 18px !important;
}

.swal2-popup {
  width: min(420px, calc(100vw - 36px)) !important;
  border: 1px solid rgba(215, 154, 18, .34) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 220, .055), rgba(255, 247, 220, .025)),
    var(--panel) !important;
  color: var(--text) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .46), 0 0 0 1px rgba(255, 247, 220, .04) inset !important;
  padding: 24px 24px 20px !important;
}

.swal2-title {
  color: var(--cream) !important;
  font-size: 22px !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

.swal2-html-container,
.swal2-content {
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.swal2-actions {
  gap: 10px !important;
  margin-top: 22px !important;
}

.swal2-styled {
  min-height: 42px !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 850 !important;
  box-shadow: none !important;
}

.swal2-confirm {
  background: linear-gradient(135deg, var(--cream), var(--gold) 58%, #8d4d24) !important;
  color: #1b0705 !important;
}

.swal2-cancel,
.swal2-deny {
  border: 1px solid rgba(255, 240, 184, .28) !important;
  background: rgba(255, 247, 220, .06) !important;
  color: var(--cream) !important;
}

.swal2-close {
  color: var(--cream) !important;
}

.swal2-timer-progress-bar {
  background: var(--gold) !important;
}

.swal2-icon.swal2-success {
  border-color: rgba(34, 197, 94, .6) !important;
  color: var(--green) !important;
}

.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: var(--green) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(34, 197, 94, .34) !important;
}

.swal2-icon.swal2-warning,
.swal2-icon.swal2-question,
.swal2-icon.swal2-info {
  border-color: rgba(215, 154, 18, .72) !important;
  color: var(--gold-2) !important;
}

.swal2-icon.swal2-error {
  border-color: rgba(239, 68, 68, .72) !important;
  color: #fecaca !important;
}

.swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  background-color: #fecaca !important;
}

@media (max-width: 800px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .site-header .brand,
  .site-header nav {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
    overflow: hidden;
  }

  nav.open {
    display: flex;
  }

  nav a {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  nav .pill {
    margin-top: 4px;
    justify-content: center;
    padding-inline: 14px;
  }

  .feature-band,
  .stats-grid,
  .ticket-grid,
  .split,
  .program-section,
  .checkout-steps,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-head {
    display: grid;
  }

  .dashboard-actions {
    justify-content: flex-start;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .section-title-row,
  .panel-head,
  .cta-strip,
  .step-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-strip .btn {
    width: auto;
    max-width: 100%;
  }

  .purchase-page {
    width: 100%;
    max-width: none;
    padding-inline: 12px;
  }

  .purchase-head {
    padding-inline: 4px;
    margin-bottom: 18px;
  }

  .purchase-head h1 {
    margin: 4px 0 8px;
    font-size: 36px;
    line-height: 1;
  }

  .purchase-head .lead {
    font-size: 15px;
  }

  .step-panel {
    padding: 14px;
  }

  .ticket-check-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ticket-check-card .btn {
    width: 100%;
    min-width: 0;
  }

  .checkout-steps {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .checkout-steps li {
    min-width: 158px;
    padding: 10px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .panel-head {
    gap: 10px;
  }

  .panel-head h2 {
    margin: 0 0 4px;
    font-size: 24px;
  }

  .panel-head p {
    margin: 0;
    font-size: 14px;
  }

  .summary-pill {
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }

  .panel-actions {
    width: 100%;
    justify-content: stretch;
  }

  .panel-actions .btn,
  .panel-actions .summary-pill {
    flex: 1 1 100%;
  }

  .seat-legend {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 12px -14px 12px;
    padding: 0 14px 4px;
  }

  .seat-legend span {
    flex: 0 0 auto;
  }

  .seat-map-helper {
    flex-direction: column;
    gap: 6px;
  }

  .seat-map-helper span {
    width: max-content;
    max-width: 100%;
  }

  .seat-map {
    max-height: min(58svh, 520px);
    padding: 14px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .seat-map-inner {
    min-width: 720px;
    padding-bottom: 4px;
  }

  .venue-map {
    background-size: 22px 22px, 22px 22px, auto, auto;
  }

  .venue-map-inner {
    min-width: 940px;
    gap: 22px;
  }

  .venue-map .stage {
    width: 68%;
    top: -14px;
  }

  .vip-tables {
    grid-template-columns: repeat(4, 124px);
    gap: 28px 48px;
  }

  .vip-table-group:nth-child(n+5) {
    transform: translateX(50px);
  }

  .block-grid {
    gap: 22px 38px;
  }

  .seat-block-row {
    grid-template-columns: 18px repeat(5, 34px);
    gap: 3px;
  }

  .seat-block.six-seats .seat-block-row {
    grid-template-columns: 18px repeat(6, 34px);
  }

  .seat-block.hide-row-labels .seat-block-row {
    grid-template-columns: repeat(5, 34px);
  }

  .seat-block.hide-row-labels.six-seats .seat-block-row {
    grid-template-columns: repeat(6, 34px);
  }

  .stage {
    padding: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    position: sticky;
    top: -14px;
    z-index: 2;
    background: rgba(18, 20, 28, .96);
    backdrop-filter: blur(10px);
  }

  .seat-row {
    justify-content: flex-start;
    gap: 6px;
    margin: 6px 0;
  }

  .seat-row b {
    position: sticky;
    left: -14px;
    z-index: 3;
    width: 48px;
    padding: 7px 8px 7px 0;
    background: linear-gradient(90deg, #080b12 78%, rgba(8, 11, 18, 0));
    font-size: 12px;
  }

  .purchase-actions {
    position: sticky;
    bottom: 10px;
    z-index: 9;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    margin: 14px -4px 0;
    padding: 12px;
    border: 1px solid rgba(216, 180, 90, .22);
    border-radius: 8px;
    background: rgba(9, 11, 16, .92);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
  }

  .purchase-actions p {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
  }

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

  .admin-shell {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .admin-menu-open {
    overflow: hidden;
  }

  .admin-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(216, 180, 90, .18);
    background: rgba(7, 10, 17, .92);
    backdrop-filter: blur(16px);
  }

  .admin-menu-toggle {
    display: inline-grid;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    width: min(82vw, 320px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform .22s ease;
    box-shadow: 26px 0 60px rgba(0, 0, 0, .38);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .admin-menu-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-main {
    padding: 20px 16px 28px;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-toolbar input,
  .admin-toolbar select,
  .admin-toolbar .small {
    width: 100%;
  }

  .admin-summary-row {
    align-items: stretch;
    gap: 8px;
  }

  .admin-summary-row span,
  .admin-summary-row a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .table-wrap {
    margin-inline: -8px;
    border-radius: 0;
  }

  .table-wrap table {
    min-width: 860px;
  }

  .orders-table-wrap {
    margin-inline: 0;
    max-width: 100%;
    overflow: visible;
  }

  .orders-table-wrap table.orders-table {
    min-width: 0;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    table-layout: fixed;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table,
  .orders-table tbody,
  .orders-table tr,
  .orders-table td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .orders-table tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 23, 42, .58);
    overflow: hidden;
  }

  .orders-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow-wrap: anywhere;
  }

  .orders-table td:last-child {
    border-bottom: 0;
  }

  .orders-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  .orders-table td > * {
    min-width: 0;
    max-width: 100%;
  }

  .orders-table .inline-edit,
  .orders-table .admin-details,
  .orders-table .proof-cell,
  .orders-table .deadline-card,
  .orders-table .order-status-stack {
    min-width: 0;
    max-width: 100%;
  }

  .orders-table .inline-edit {
    width: 100%;
  }

  .orders-table td[data-label="Kursi"] .admin-details {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .orders-table td[data-label="Kursi"] .admin-details summary {
    width: 100%;
  }

  .orders-table td[data-label="Kursi"] .admin-details .inline-edit {
    margin-top: 8px;
  }

  .orders-table input,
  .orders-table select,
  .orders-table button,
  .orders-table .small,
  .orders-table details,
  .orders-table summary,
  .orders-table form {
    min-width: 0;
    max-width: 100%;
  }

  .orders-table input,
  .orders-table select {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  th,
  td {
    padding: 10px;
  }

  .inline-edit {
    gap: 7px;
  }

  .inline-edit input,
  .inline-edit select,
  .inline-edit button:not(.icon-only),
  .actions-cell form,
  .actions-cell .small:not(.icon-only) {
    width: 100%;
  }

  .actions-cell {
    min-width: 0;
    align-items: start;
  }

  .orders-table .actions-cell {
    display: grid;
    grid-template-columns: 92px repeat(4, 38px);
    min-width: 0;
    max-width: 100%;
  }

  .orders-table .actions-cell > * {
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
  }

  .orders-table .actions-cell::before {
    grid-column: 1;
  }

  .order-status-stack,
  .deadline-card,
  .proof-cell {
    gap: 6px;
  }

  .small,
  .link-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .admin-details summary {
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .report-check-head {
    display: grid;
  }

  .swal2-container {
    padding: 14px !important;
  }

  .swal2-popup {
    width: min(360px, calc(100vw - 28px)) !important;
    padding: 20px 16px 16px !important;
  }

  .swal2-title {
    font-size: 19px !important;
  }

  .swal2-html-container,
  .swal2-content {
    font-size: 14px !important;
  }

  .swal2-actions {
    width: 100%;
    gap: 8px !important;
  }

  .swal2-actions button {
    flex: 1 1 128px;
    margin: 0 !important;
  }

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

  .helpdesk-actions {
    grid-template-columns: 1fr;
  }

  .admin-head h1 {
    font-size: 30px;
  }

  .tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .tab {
    flex: 0 0 auto;
  }

  .scanner-search-form,
  .ticket-search-card,
  .ticket-search-head {
    grid-template-columns: 1fr;
  }

  .ticket-search-head {
    display: grid;
  }

  .ticket-search-card .btn {
    width: 100%;
  }

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

  .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-hero {
    min-height: 240px;
    background:
      linear-gradient(180deg, rgba(7, 9, 14, .08), rgba(7, 9, 14, .9)),
      url('../slider/thumbs/1.png?v=2026070701') center 18px / contain no-repeat,
      #06080d;
  }

  .auth-panel {
    padding-top: 28px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-contacts {
    justify-content: center;
  }

  .seat {
    width: 32px;
    height: 32px;
    font-size: 9px;
  }

  .vip-table-group {
    width: 128px;
    height: 120px;
  }

  .vip-table-core {
    inset: 39px 33px;
    font-size: 11px;
  }

  .vip-seat {
    width: 28px;
    height: 26px;
  }

  .vip-seat-a,
  .vip-seat-f {
    left: 34px;
  }

  .vip-seat-b,
  .vip-seat-e {
    right: 34px;
  }

  .vip-seat-c,
  .vip-seat-h {
    top: 29px;
  }

  .vip-seat-d,
  .vip-seat-g {
    bottom: 29px;
  }

  .hero {
    min-height: 68vh;
    padding: 42px 18px;
  }

  .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 18px;
    background-color: #05070b;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(9, 11, 16, .08), rgba(9, 11, 16, .8) 58%, rgba(9, 11, 16, .96));
  }

  .kcta-hero-slider {
    height: 30vh;
    min-height: 0;
  }

  .kcta-hero-slider .swiper-wrapper,
  .kcta-hero-slider .swiper-slide {
    height: 30vh;
  }

  .kcta-hero-slider .swiper-slide {
    background-position: center center;
    background-color: #000;
  }

  .kcta-hero-slider .hero-nav {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .kcta-hero-slider .hero-nav:hover {
    background: transparent;
  }

  .kcta-hero-slider .hero-nav::before {
    width: 14px;
    height: 14px;
    border-width: 2px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .5));
  }

  .kcta-hero-slider .hero-prev {
    left: -1px;
  }

  .kcta-hero-slider .hero-next {
    right: -1px;
  }

  .kcta-hero-slider .hero-dots button {
    width: 6px;
    height: 6px;
  }

  .hero-copy-below {
    padding-top: 34px;
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .event-page,
  .event-map-section,
  .event-venue-map {
    max-width: 100%;
    overflow-x: hidden;
  }

  .event-venue-map {
    padding: 8px;
  }

  .event-venue-map .venue-map-inner {
    min-width: 0;
    gap: 10px;
  }

  .event-map-section .panel-head {
    gap: 10px;
  }

  .event-map-section .panel-head h2 {
    font-size: 20px;
    line-height: 1.12;
  }

  .event-location-section .panel-head {
    align-items: flex-start;
    gap: 12px;
  }

  .event-location-section .panel-head .btn {
    width: 100%;
  }

  .event-location-map {
    min-height: 300px;
  }

  .event-map-section .seat-legend {
    display: none;
  }

  .event-venue-map .stage {
    width: 82%;
    padding: 9px;
    margin-bottom: 4px;
    font-size: 11px;
  }

  .event-venue-map .vip-tables {
    grid-template-columns: repeat(4, 56px);
    justify-content: center;
    justify-items: center;
    gap: 8px 0;
    padding: 0;
  }

  .event-venue-map .vip-table-group:nth-child(-n + 4) {
    transform: translateX(-3px);
  }

  .event-venue-map .vip-table-group:nth-child(n + 5) {
    transform: translateX(3px);
  }

  .event-venue-map .vip-table-group {
    width: 54px;
    height: 50px;
    justify-self: center;
  }

  .event-venue-map .vip-table-core {
    inset: 18px 18px;
    border-radius: 5px;
  }

  .event-venue-map .vip-seat {
    width: 12px;
    height: 12px;
    border-radius: 3px;
  }

  .event-venue-map .vip-seat-a,
  .event-venue-map .vip-seat-f {
    left: 15px;
  }

  .event-venue-map .vip-seat-b,
  .event-venue-map .vip-seat-e {
    right: 15px;
  }

  .event-venue-map .vip-seat-c,
  .event-venue-map .vip-seat-h {
    top: 10px;
  }

  .event-venue-map .vip-seat-d,
  .event-venue-map .vip-seat-g {
    bottom: 10px;
  }

  .event-venue-map .block-grid {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    gap: 8px 4px;
  }

  .event-venue-map .seat-block {
    padding: 3px;
    gap: 2px;
    border-radius: 5px;
  }

  .event-layout-row {
    grid-template-columns: repeat(5, 11px);
    gap: 1px;
  }

  .seat-block.six-seats .event-layout-row {
    grid-template-columns: repeat(6, 11px);
  }

  .event-venue-map .seat {
    width: 10px;
    height: 10px;
    min-width: 0;
    border-radius: 2px;
    font-size: 0;
  }

  .event-venue-map .seat-spacer {
    width: 10px;
    height: 10px;
  }

  .event-venue-map .zone-label {
    margin-bottom: -4px;
  }

  .event-venue-map .zone-label span {
    font-size: 10px;
    letter-spacing: .05em;
  }

  .page {
    padding-top: 32px;
  }
}

@media (max-width: 420px) {
  .orders-table td,
  .orders-table .actions-cell {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 9px;
  }

  .orders-table-wrap table.orders-table,
  .orders-table tr,
  .orders-table td {
    min-width: 0;
    max-width: 100%;
  }

  .orders-table td::before {
    font-size: 11px;
  }
}
