@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Noto+Serif+SC:wght@500;600;700&display=swap");

:root {
  --expo-bg-0: #fcf6ee;
  --expo-bg-1: #f5ebde;
  --expo-bg-2: #ecdfd0;
  --expo-panel: rgba(255, 249, 241, 0.84);
  --expo-panel-strong: rgba(255, 250, 244, 0.92);
  --expo-border: rgba(87, 55, 32, 0.14);
  --expo-line: rgba(87, 55, 32, 0.08);
  --expo-text: #2d1e15;
  --expo-text-soft: #6d5240;
  --expo-text-mute: #9b7c68;
  --expo-accent: #b36b31;
  --expo-accent-strong: #7f4517;
  --expo-accent-soft: #ecd2b2;
  --expo-cyan: #2d8398;
  --expo-rose: #a4625a;
  --expo-shadow-lg: 0 20px 48px rgba(80, 46, 21, 0.14);
  --expo-shadow-md: 0 12px 28px rgba(80, 46, 21, 0.1);
  --expo-shadow-sm: 0 8px 18px rgba(80, 46, 21, 0.08);
  --expo-radius-xl: 24px;
  --expo-radius-lg: 20px;
  --expo-radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

@keyframes expoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-4%, -5%, 0) scale(1.08);
  }
}

@keyframes expoSweep {
  0% {
    transform: translate3d(-140%, 0, 0) rotate(16deg);
    opacity: 0;
  }
  18% {
    opacity: 0.08;
  }
  45% {
    opacity: 0.42;
  }
  72% {
    opacity: 0.08;
  }
  100% {
    transform: translate3d(140%, 0, 0) rotate(16deg);
    opacity: 0;
  }
}

@keyframes expoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

body.expo-home,
body.expo-ticket {
  font-family: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--expo-text-soft);
  background:
    radial-gradient(circle at top right, rgba(240, 192, 141, 0.24), transparent 24%),
    linear-gradient(180deg, var(--expo-bg-0) 0%, #f7efe4 48%, var(--expo-bg-2) 100%);
  position: relative;
  overflow-x: hidden;
}

body.expo-ticket {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
}

body.expo-home::before,
body.expo-ticket::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(88, 54, 27, 0.08) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
}

body.expo-home::after,
body.expo-ticket::after {
  content: "";
  position: fixed;
  right: -18vw;
  bottom: 4vh;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 84, 42, 0.12) 0%, rgba(137, 84, 42, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
  animation: expoDrift 14s ease-in-out infinite;
}

.expo-home .page,
.expo-ticket .container {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.expo-home .page {
  max-width: 640px;
}

.expo-home .loading-wrap,
.expo-ticket #loadingWrap,
.expo-home .empty-state,
.expo-ticket .empty-state {
  padding: 18px;
  border-radius: var(--expo-radius-xl);
  background: linear-gradient(160deg, rgba(255, 251, 245, 0.88), rgba(250, 241, 229, 0.86));
  border: 1px solid var(--expo-border);
  box-shadow: var(--expo-shadow-md);
  backdrop-filter: blur(18px);
}

.expo-home .empty-state,
.expo-ticket .empty-state {
  text-align: center;
}

.expo-home .empty-icon,
.expo-ticket .empty-icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
  border-radius: 24px;
  font-size: 38px;
  background: linear-gradient(135deg, rgba(232, 205, 173, 0.9), rgba(171, 109, 54, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.expo-home .hero-skeleton,
.expo-ticket .card .skeleton:first-child {
  min-height: 220px;
  border-radius: calc(var(--expo-radius-xl) - 2px);
}

.expo-home .skeleton,
.expo-ticket .skeleton {
  background: linear-gradient(
    90deg,
    rgba(238, 225, 208, 0.84) 0%,
    rgba(252, 245, 237, 0.98) 48%,
    rgba(238, 225, 208, 0.84) 100%
  );
  background-size: 200% 100%;
}

.section-kicker,
.hero-stage__eyebrow,
.booking-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--expo-text-mute);
}

.section-kicker {
  position: relative;
  width: fit-content;
}

.section-kicker::before,
.hero-stage__eyebrow::before,
.booking-hero__eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.section-kicker::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--expo-accent);
  box-shadow: 0 0 0 6px rgba(179, 107, 49, 0.08);
  animation: expoPulse 2.8s ease-in-out infinite;
}

.expo-home .panel,
.expo-ticket .card,
.expo-ticket .agreement-row {
  background: linear-gradient(160deg, rgba(255, 250, 244, 0.86), rgba(249, 241, 230, 0.92));
  border: 1px solid var(--expo-border);
  box-shadow: var(--expo-shadow-md);
  backdrop-filter: blur(18px);
}

.expo-home .section-title,
.expo-ticket .section-title,
.expo-home .expo-title,
.expo-ticket .event-title,
.expo-ticket .agreement-modal__title {
  font-family: inherit;
  font-weight: 700;
  color: var(--expo-text);
}

.expo-home .toast,
.expo-ticket .toast {
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(40, 27, 18, 0.88);
  color: #fff8f0;
  box-shadow: 0 18px 42px rgba(24, 14, 8, 0.28);
  backdrop-filter: blur(18px);
}

.expo-home .toast.show,
.expo-ticket .toast.show {
  opacity: 1;
}

.expo-home .preview-overlay,
.expo-ticket .agreement-modal,
.expo-ticket .loading-overlay {
  backdrop-filter: blur(16px);
}

.expo-home .preview-close,
.expo-ticket .agreement-modal__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(24, 14, 8, 0.46);
  color: #fffaf4;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.expo-home .preview-btn,
.expo-ticket .btn-primary,
.expo-ticket .agreement-link,
.expo-home .section-link,
.expo-home .primary-button,
.expo-home .ghost-button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.expo-home .preview-btn:hover,
.expo-ticket .btn-primary:hover,
.expo-ticket .agreement-link:hover,
.expo-home .section-link:hover,
.expo-home .primary-button:hover,
.expo-home .ghost-button:hover {
  transform: translateY(-2px);
}

.expo-home .preview-btn:focus-visible,
.expo-ticket .btn-primary:focus-visible,
.expo-ticket .agreement-link:focus-visible,
.expo-home .primary-button:focus-visible,
.expo-home .ghost-button:focus-visible,
.expo-ticket .form-input:focus-visible,
.expo-ticket .multi-select__trigger:focus-visible,
.expo-ticket .agreement-modal__close:focus-visible {
  outline: 2px solid rgba(179, 107, 49, 0.64);
  outline-offset: 3px;
}

.expo-home #contentWrap.content-wrap {
  display: grid;
  gap: 8px;
}

.expo-home .hero-shell {
  position: relative;
  display: grid;
  gap: 6px;
}

.expo-home .hero-card.hero-stage {
  height: clamp(230px, 62vw, 380px);
  margin-top: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #24160e;
  box-shadow: 0 16px 34px rgba(80, 46, 21, 0.16);
}

.expo-home .hero-card.hero-stage::before,
.expo-ticket .hero-card.booking-hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 244, 228, 0.04) 42%,
    rgba(255, 244, 228, 0.34) 50%,
    rgba(255, 244, 228, 0.04) 58%,
    rgba(255, 255, 255, 0) 66%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  animation: expoSweep 8s ease-in-out infinite;
  z-index: 3;
}

.expo-home .hero-image {
  width: 100%;
  height: 100%;
  transform: scale(1.04);
}

.expo-home .panel {
  position: relative;
  padding: 16px;
  border-radius: var(--expo-radius-xl);
  overflow: hidden;
}

.expo-home .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 107, 49, 0), rgba(179, 107, 49, 0.5), rgba(179, 107, 49, 0));
}

.expo-home .panel-head {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.expo-home .head-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    linear-gradient(140deg, rgba(255, 222, 186, 0.94), rgba(177, 101, 39, 0.92)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 8px 14px rgba(128, 74, 31, 0.14);
}

.expo-home .head-badge-icon {
  top: 9px;
  left: 6px;
  transform: scale(0.78);
  transform-origin: top left;
}

.expo-home .expo-title {
  font-size: 22px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
}

.expo-home .title-size--large {
  font-size: 22px;
}

.expo-home .title-size--medium {
  font-size: 19px;
}

.expo-home .title-size--small {
  font-size: 17px;
}

.expo-home .expo-subtitle {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--expo-text-mute);
}

.expo-home .expo-panel {
  padding: 12px 14px;
}

.expo-home .info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.expo-home .info-row {
  display: grid;
  grid-template-columns: 14px 68px 1fr;
  align-items: start;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--expo-line);
}

.expo-home .info-row:first-child {
  padding-top: 0;
  border-top: none;
}

.expo-home .info-label {
  min-width: 60px;
  font-size: 11px;
  color: var(--expo-text-mute);
}

.expo-home .info-value {
  color: var(--expo-text);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
}

.expo-home .info-value--accent {
  color: var(--expo-accent-strong);
}

.expo-home .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.expo-home .tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(130, 82, 45, 0.12);
  background: rgba(255, 248, 239, 0.8);
  color: var(--expo-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.expo-home .tag-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.expo-home .tag-pill--warm {
  color: var(--expo-accent-strong);
}

.expo-home .tag-pill--cyan {
  color: var(--expo-cyan);
}

.expo-home .tag-pill--rose {
  color: var(--expo-rose);
}

.expo-home .action-deck {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.expo-home .primary-button,
.expo-home .ghost-button {
  min-height: 54px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.expo-home .primary-button,
.expo-ticket .btn-primary {
  position: relative;
  overflow: hidden;
}

.expo-home .primary-button::after,
.expo-ticket .btn-primary::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.05) 44%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.05) 56%,
    rgba(255, 255, 255, 0) 62%
  );
  pointer-events: none;
  animation: expoSweep 5.4s ease-in-out infinite;
}

.expo-home .primary-button {
  background: linear-gradient(135deg, #8d4f1b 0%, #c78749 54%, #ebd6bb 100%);
  color: #fff8ef;
  box-shadow: 0 22px 36px rgba(141, 79, 27, 0.28);
}

.expo-home .primary-button:hover {
  box-shadow: 0 28px 44px rgba(141, 79, 27, 0.34);
}

.expo-home .secondary-actions {
  display: block;
}

.expo-home .ghost-button {
  background: rgba(255, 249, 240, 0.72);
  border: 1px solid rgba(130, 82, 45, 0.14);
  color: var(--expo-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.expo-home .ghost-button:hover {
  border-color: rgba(45, 131, 152, 0.24);
  color: var(--expo-cyan);
}

.expo-home .section-panel {
  display: grid;
  gap: 8px;
}

.expo-home .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.expo-home .section-title {
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}

.expo-home .section-desc,
.expo-home .rich-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--expo-text-soft);
}

.expo-home .section-desc {
  display: grid;
  gap: 8px;
}

.expo-home .section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(130, 82, 45, 0.12);
  color: var(--expo-text);
  cursor: pointer;
  background: rgba(255, 251, 245, 0.72);
}

.expo-home .section-link:hover {
  border-color: rgba(179, 107, 49, 0.26);
  box-shadow: var(--expo-shadow-sm);
}

.expo-home .section-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233, 206, 174, 0.86), rgba(179, 107, 49, 0.24));
  position: relative;
}

.expo-home .section-arrow::before {
  content: "";
  position: absolute;
  inset: 6px 7px 6px 5px;
  border-top: 1.5px solid var(--expo-accent-strong);
  border-right: 1.5px solid var(--expo-accent-strong);
  transform: rotate(45deg);
}

.expo-home .highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.expo-home .highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  min-height: 54px;
  padding: 7px 8px;
  border-radius: 12px;
  background: rgba(255, 247, 236, 0.76);
  border: 1px solid rgba(130, 82, 45, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.expo-home .highlight-icon {
  display: none;
}

.expo-home .highlight-title {
  font-size: 10px;
  color: var(--expo-text-mute);
  margin: 0;
  line-height: 1.4;
}

.expo-home .highlight-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--expo-text);
  line-height: 1.35;
}

.expo-home .scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.expo-home .scene-image {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--expo-shadow-sm);
  cursor: pointer;
  transform-origin: center;
}

.expo-home #exhibitorList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.expo-home .merchant-card,
.expo-home .merchant-empty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid rgba(130, 82, 45, 0.1);
}

.expo-home .merchant-empty {
  grid-template-columns: 1fr;
  text-align: center;
  color: var(--expo-text-mute);
}

.expo-home .merchant-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.expo-home .merchant-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.expo-home .merchant-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--expo-text);
}

.expo-home .merchant-desc {
  font-size: 11px;
  color: var(--expo-text-soft);
  line-height: 1.5;
}

.expo-home #tipsList {
  display: grid;
}

.expo-home .tip-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--expo-line);
}

.expo-home .tip-row:first-child {
  padding-top: 0;
  border-top: none;
}

.expo-home .tip-check {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(231, 192, 147, 1), rgba(179, 107, 49, 1));
  box-shadow: 0 0 0 4px rgba(179, 107, 49, 0.08);
}

.expo-home .tip-copy {
  color: var(--expo-text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.expo-home .preview-overlay {
  background: rgba(23, 14, 8, 0.82);
}

.expo-home .preview-img {
  width: min(92vw, 900px);
  max-height: 70vh;
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.expo-home .preview-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
}

.expo-home .preview-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.expo-home .preview-counter {
  min-width: 74px;
  text-align: center;
  font-size: 14px;
}

.expo-ticket #contentWrap.booking-layout {
  display: grid;
  gap: 10px;
}

.expo-ticket .booking-sidebar,
.expo-ticket .booking-main {
  display: grid;
  gap: 10px;
  align-items: start;
}

.expo-ticket .card {
  padding: 14px;
  border-radius: var(--expo-radius-xl);
}

.expo-ticket #passPreview {
  background:
    linear-gradient(150deg, rgba(49, 31, 19, 0.96), rgba(121, 72, 37, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: none;
  color: rgba(255, 244, 229, 0.92);
  box-shadow: 0 28px 56px rgba(31, 17, 8, 0.32);
}

.expo-ticket .pass-preview__header {
  align-items: center;
  margin-bottom: 12px;
}

.expo-ticket #passPreview .section-title,
.expo-ticket #passPreview .pass-preview__name,
.expo-ticket #passPreview .pass-preview__code {
  color: #fff8ef;
}

.expo-ticket .pass-preview__sub,
.expo-ticket .pass-preview__meta,
.expo-ticket .pass-preview__tip {
  color: rgba(255, 234, 210, 0.74);
}

.expo-ticket .pass-preview__body {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.expo-ticket .pass-preview__qr-wrap {
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-self: center;
}

.expo-ticket .pass-preview__qr {
  width: 132px !important;
  height: 132px !important;
}

.expo-ticket .success-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff8ef;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.expo-ticket .success-dot {
  background: #58d48d;
  box-shadow: 0 0 0 6px rgba(88, 212, 141, 0.18);
}

.expo-ticket .hero-card.booking-hero {
  position: relative;
  padding: 6px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 248, 238, 0.94), rgba(244, 229, 211, 0.86));
}

.expo-ticket .hero-cover {
  height: clamp(180px, 52vw, 260px);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.expo-ticket .booking-hero__gradient {
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 10, 6, 0.04) 0%, rgba(18, 10, 6, 0.46) 100%),
    linear-gradient(120deg, rgba(255, 229, 196, 0.18), transparent 56%);
  pointer-events: none;
}

.expo-ticket .booking-hero__copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  z-index: 3;
  color: rgba(255, 247, 237, 0.94);
}

.expo-ticket .booking-hero__eyebrow,
.expo-ticket .booking-hero__hint {
  color: rgba(255, 242, 225, 0.8);
}

.expo-ticket .booking-hero__hint {
  max-width: 240px;
  font-size: 12px;
  line-height: 1.6;
}

.expo-ticket .hero-dots {
  position: relative;
  z-index: 4;
  margin-top: 14px;
}

.expo-ticket .hero-dot {
  width: 9px;
  height: 9px;
  background: rgba(118, 76, 44, 0.24);
}

.expo-ticket .hero-dot.is-active {
  width: 26px;
  background: linear-gradient(135deg, var(--expo-accent-strong), var(--expo-accent));
}

.expo-ticket .section-shell {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}

.expo-ticket .section-title {
  font-size: 20px;
  margin-bottom: 0;
}

.expo-ticket .form-intro {
  font-size: 13px;
  line-height: 1.65;
  color: var(--expo-text-soft);
}

.expo-ticket .event-title {
  font-size: 24px;
  line-height: 1.3;
}

.expo-ticket .event-subtitle,
.expo-ticket .summary-label,
.expo-ticket .pass-preview__sub {
  color: var(--expo-text-mute);
}

.expo-ticket .summary-row {
  gap: 8px;
  padding: 10px 0;
  border-bottom-color: var(--expo-line);
}

.expo-ticket .summary-value,
.expo-ticket .summary-subvalue {
  color: var(--expo-text);
}

.expo-ticket .form-item {
  gap: 8px;
  padding: 10px 0;
  border-bottom-color: var(--expo-line);
}

.expo-ticket .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--expo-text);
}

.expo-ticket .form-input,
.expo-ticket .multi-select__trigger {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(130, 82, 45, 0.12);
  background: rgba(255, 252, 247, 0.78);
  color: var(--expo-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.expo-ticket .multi-select__trigger {
  padding: 12px 42px 12px 14px;
}

.expo-ticket .form-input::placeholder,
.expo-ticket .multi-select__value--placeholder {
  color: #b08b74;
}

.expo-ticket .form-input:focus,
.expo-ticket .multi-select.is-open .multi-select__trigger {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(179, 107, 49, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 5px rgba(179, 107, 49, 0.12);
}

.expo-ticket .multi-select__trigger::after {
  right: 18px;
  width: 10px;
  height: 10px;
  border-right-width: 1.75px;
  border-bottom-width: 1.75px;
  border-color: rgba(109, 82, 64, 0.8);
}

.expo-ticket .multi-select__helper {
  color: var(--expo-text-mute);
}

.expo-ticket .multi-select__panel {
  display: block;
  max-height: 0;
  margin-top: 0;
  padding: 0 14px;
  border-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    max-height 0.26s ease,
    opacity 0.26s ease,
    transform 0.26s ease,
    padding 0.26s ease,
    margin-top 0.26s ease,
    border-width 0.26s ease;
}

.expo-ticket .multi-select.is-open .multi-select__panel {
  max-height: 360px;
  margin-top: 8px;
  padding: 10px;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.expo-ticket .choice-list {
  gap: 10px;
}

.expo-ticket .choice-option {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.86);
  border-color: rgba(130, 82, 45, 0.1);
  color: var(--expo-text-soft);
}

.expo-ticket .choice-option:hover {
  border-color: rgba(179, 107, 49, 0.24);
  box-shadow: var(--expo-shadow-sm);
}

.expo-ticket .choice-option.is-selected {
  background: linear-gradient(135deg, rgba(250, 226, 200, 0.78), rgba(255, 248, 240, 0.96));
  color: var(--expo-text);
  border-color: rgba(179, 107, 49, 0.28);
}

.expo-ticket .product-group {
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.82);
  border-color: rgba(130, 82, 45, 0.1);
}

.expo-ticket .product-group > summary {
  padding: 12px 14px;
  font-size: 13px;
}

.expo-ticket .product-group__options {
  gap: 8px;
  padding: 0 12px 10px;
}

.expo-ticket .checkbox-option {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.expo-ticket .agreement-row {
  padding: 14px 16px;
  border-radius: 18px;
  display: grid;
  gap: 8px;
}

.expo-ticket .agreement-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--expo-text);
  width: 100%;
}

.expo-ticket .agreement-link {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  color: var(--expo-accent-strong);
  cursor: pointer;
  font-size: 13px;
}

.expo-ticket .agreement-link:hover {
  box-shadow: var(--expo-shadow-sm);
}

.expo-ticket .agreement-separator {
  color: var(--expo-text-mute);
  display: none;
}

.expo-ticket .bottom-bar {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  pointer-events: none;
}

.expo-ticket .bottom-bar-inner {
  max-width: 760px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(34, 22, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(22, 13, 7, 0.24);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.expo-ticket .btn-primary {
  min-height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #8d4f1b 0%, #c78749 54%, #f0dcc0 100%);
  color: #fff8ef;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 38px rgba(141, 79, 27, 0.24);
}

.expo-ticket .btn-primary:hover {
  box-shadow: 0 28px 46px rgba(141, 79, 27, 0.28);
}

.expo-ticket .loading-overlay {
  background: rgba(28, 18, 11, 0.54);
}

.expo-ticket .loading-spinner {
  width: 58px;
  height: 58px;
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0.14);
  border-top-color: #f3debf;
}

.expo-ticket .loading-text {
  color: #fff4e6;
}

.expo-ticket .agreement-modal {
  background: rgba(23, 14, 8, 0.48);
}

.expo-ticket .agreement-modal__dialog {
  width: min(92vw, 860px);
  max-height: 82vh;
  border-radius: 24px;
  border: 1px solid rgba(130, 82, 45, 0.12);
  background: linear-gradient(160deg, rgba(255, 249, 241, 0.96), rgba(247, 238, 226, 0.96));
  box-shadow: var(--expo-shadow-lg);
}

.expo-ticket .agreement-modal__header,
.expo-ticket .agreement-modal__body {
  padding: 16px;
}

.expo-ticket .agreement-modal__header {
  border-bottom: 1px solid var(--expo-line);
}

.expo-ticket .agreement-modal__eyebrow {
  color: var(--expo-text-mute);
}

.expo-ticket .agreement-modal__status,
.expo-ticket .agreement-modal__content {
  font-size: 14px;
  line-height: 1.9;
  color: var(--expo-text-soft);
}

.expo-ticket .agreement-modal__content {
  white-space: pre-wrap;
}

html.motion-reduced *,
html.motion-reduced *::before,
html.motion-reduced *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.motion-enhanced .expo-home .stagger-item,
html.motion-enhanced .expo-ticket .page-enter {
  opacity: 1 !important;
  animation: none !important;
}

@media (min-width: 768px) {
  .expo-ticket .container {
    max-width: 860px;
  }

  .expo-home #contentWrap.content-wrap {
    gap: 10px;
  }

  .expo-home .hero-card.hero-stage {
    height: clamp(320px, 46vw, 460px);
    border-radius: 30px;
  }

  .expo-home .panel {
    padding: 16px;
  }

  .expo-home .expo-title {
    font-size: 24px;
  }

  .expo-home .title-size--large {
    font-size: 24px;
  }

  .expo-home .title-size--medium {
    font-size: 20px;
  }

  .expo-home .title-size--small {
    font-size: 18px;
  }

  .expo-home .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .expo-home .info-row {
    grid-template-columns: 16px 74px 1fr;
    gap: 8px;
    padding-top: 8px;
  }

  .expo-home .action-deck {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 10px;
  }

  .expo-home .primary-button,
  .expo-home .ghost-button {
    min-height: 64px;
    border-radius: 22px;
    font-size: 16px;
  }

  .expo-home .section-title {
    font-size: 28px;
  }

  .expo-home .section-head {
    flex-direction: row;
    align-items: end;
    gap: 12px;
  }

  .expo-home .section-link {
    width: auto;
  }

  .expo-home .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .expo-home .highlight-card {
    min-height: 62px;
    padding: 9px 10px;
    border-radius: 12px;
    gap: 4px;
  }

  .expo-home .highlight-title {
    font-size: 11px;
  }

  .expo-home .highlight-value {
    font-size: 13px;
  }

  .expo-home .scene-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .expo-home .merchant-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .expo-home .merchant-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .expo-home .merchant-name {
    font-size: 13px;
  }

  .expo-home .merchant-desc,
  .expo-home .tip-copy {
    font-size: 11px;
  }

  .expo-ticket #contentWrap.booking-layout {
    gap: 18px;
  }

  .expo-ticket .card {
    padding: 20px;
  }

  .expo-ticket .pass-preview__body {
    flex-direction: row;
    align-items: center;
  }

  .expo-ticket .pass-preview__qr {
    width: 160px !important;
    height: 160px !important;
  }

  .expo-ticket .hero-card.booking-hero {
    padding: 8px;
    border-radius: 30px;
  }

  .expo-ticket .hero-cover {
    height: 280px;
    border-radius: 24px;
  }

  .expo-ticket .booking-hero__gradient {
    inset: 8px;
    border-radius: 24px;
  }

  .expo-ticket .booking-hero__copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .expo-ticket .booking-hero__hint {
    max-width: 360px;
    font-size: 14px;
  }

  .expo-ticket .section-title {
    font-size: 28px;
  }

  .expo-ticket .event-title {
    font-size: 32px;
  }

  .expo-ticket .form-intro {
    font-size: 14px;
    line-height: 1.75;
  }

  .expo-ticket .form-input,
  .expo-ticket .multi-select__trigger {
    min-height: 50px;
    border-radius: 18px;
    font-size: 15px;
  }

  .expo-ticket .multi-select.is-open .multi-select__panel {
    max-height: 420px;
    margin-top: 12px;
    padding: 14px;
  }

  .expo-ticket .choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expo-ticket .product-group__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expo-ticket .agreement-row {
    padding: 18px 20px;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .expo-ticket .agreement-checkbox {
    width: auto;
  }

  .expo-ticket .agreement-separator {
    display: inline;
  }

  .expo-ticket .agreement-link {
    padding: 10px 14px;
    font-size: 14px;
  }

  .expo-ticket .bottom-bar {
    padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .expo-ticket .bottom-bar-inner {
    max-width: 860px;
    padding: 14px;
    border-radius: 24px;
  }

  .expo-ticket .btn-primary {
    min-height: 58px;
    border-radius: 18px;
    font-size: 16px;
  }

  .expo-ticket .agreement-modal__dialog {
    border-radius: 30px;
  }

  .expo-ticket .agreement-modal__header,
  .expo-ticket .agreement-modal__body {
    padding: 22px 24px;
  }
}

@media (min-width: 960px) {
  .expo-ticket .container {
    max-width: 1180px;
  }

  .expo-ticket #contentWrap.booking-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
  }

  .expo-ticket .booking-sidebar {
    position: sticky;
    top: 24px;
  }
}

@media (max-width: 767px) {
  body.expo-home::before,
  body.expo-home::after,
  body.expo-ticket::before,
  body.expo-ticket::after {
    display: none;
  }

  .expo-home .page,
  .expo-ticket .container {
    padding-left: 0;
    padding-right: 0;
  }

  .expo-home .panel::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .expo-home .hero-card.hero-stage {
    height: 220px;
  }

  .expo-ticket .booking-hero__copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .expo-ticket .booking-hero__hint {
    display: none;
  }

  .expo-ticket .hero-cover {
    height: 190px;
  }
}

@media (max-width: 767px) {
  .expo-ticket .form-input,
  .expo-ticket input[type="text"],
  .expo-ticket input[type="tel"],
  .expo-ticket textarea,
  .expo-ticket select {
    font-size: 16px !important;
  }
}

/* Single-column override: keep the whole experience in one vertical flow */
.expo-home #contentWrap.content-wrap,
.expo-ticket #contentWrap.booking-layout,
.expo-ticket .booking-sidebar,
.expo-ticket .booking-main,
.expo-home .info-list,
.expo-home .action-deck,
.expo-home .scene-grid,
.expo-ticket .choice-list,
.expo-ticket .product-group__options {
  grid-template-columns: 1fr !important;
}

.expo-home .section-head {
  flex-direction: column !important;
  align-items: flex-start !important;
}

.expo-home .section-link {
  width: 100% !important;
}

.expo-home .merchant-card,
.expo-home .merchant-empty {
  grid-template-columns: 1fr !important;
  align-items: flex-start;
}

.expo-home #exhibitorList {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.expo-home .merchant-empty {
  grid-column: 1 / -1;
}

.expo-ticket .pass-preview__body {
  flex-direction: column !important;
  align-items: flex-start !important;
}

.expo-ticket .pass-preview__header {
  flex-direction: column;
  align-items: flex-start;
}

.expo-ticket .pass-preview__qr-wrap {
  align-self: center;
}

.expo-ticket .booking-sidebar {
  position: static !important;
  top: auto !important;
}

.expo-ticket #contentWrap.booking-layout {
  justify-items: center;
}

.expo-ticket .booking-sidebar {
  width: min(100%, 640px);
}

.expo-ticket .booking-main {
  width: min(100%, 640px);
}

.expo-ticket .booking-main > .card,
.expo-ticket .booking-main > .agreement-row {
  width: 100%;
}

.expo-ticket .bottom-bar-inner {
  max-width: 640px !important;
}

.expo-ticket .bottom-bar {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  padding: 12px 0 0 !important;
  margin: 0;
  background: transparent !important;
  border-top: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto !important;
}

.expo-ticket .bottom-bar-inner {
  width: min(100%, 640px);
  padding: 0;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

.expo-ticket .btn-primary {
  width: 100%;
  box-shadow: 0 10px 20px rgba(141, 79, 27, 0.14);
}

.expo-ticket .btn-primary:hover {
  box-shadow: 0 14px 24px rgba(141, 79, 27, 0.18);
}

.expo-ticket .agreement-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 4px 0 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.expo-ticket .agreement-checkbox {
  width: auto;
  color: var(--expo-text-mute);
  font-size: 13px;
}

.expo-ticket .agreement-separator {
  display: inline !important;
  color: var(--expo-text-mute);
}

.expo-ticket .agreement-link {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 13px;
  color: var(--expo-accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.expo-ticket .agreement-link:hover {
  transform: none;
  color: var(--expo-accent);
}

.expo-home .panel,
.expo-home .highlight-card,
.expo-home .scene-image,
.expo-home .merchant-card,
.expo-ticket .card,
.expo-ticket .btn-primary,
.expo-ticket .multi-select__trigger,
.expo-ticket .agreement-link {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    opacity 0.24s ease;
}

html.motion-enhanced .expo-home .hero-card.hero-stage::before,
html.motion-enhanced .expo-ticket .hero-card.booking-hero::before,
html.motion-enhanced .expo-home .primary-button::after,
html.motion-enhanced .expo-ticket .btn-primary::after,
html.motion-enhanced .section-kicker::after,
html.motion-enhanced body.expo-home::after,
html.motion-enhanced body.expo-ticket::after,
html.motion-enhanced .expo-home .hero-stage__mesh {
  animation-play-state: running;
}

.expo-home .panel:hover,
.expo-home .highlight-card:hover,
.expo-home .merchant-card:hover,
.expo-ticket .card:hover {
  transform: translateY(-2px);
}

.expo-home .scene-image:hover {
  transform: translateY(-2px) scale(1.01);
}
