:root {
  --ink: #08000d;
  --plum: #190807;
  --hot: #f4b23f;
  --hot-2: #ffd166;
  --cinema-red: #a71919;
  --paper: #fff;
  --muted: #6b6471;
  --line: #ded8e6;
  --mint: #00aa68;
  color-scheme: light;
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: #120d18;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 19px 34px;
  color: #fff;
}

.brand {
  color: var(--hot);
  font-size: 29px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.location {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  padding: 0 0 0 13px;
  font-size: 14px;
  font-weight: 700;
}

.location::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--hot-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.icon-button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
}

.icon-button svg,
.slider-button svg,
.filters svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(244, 178, 63, 0.12), transparent 34%),
    radial-gradient(ellipse at 72% 12%, rgba(122, 22, 16, 0.44), transparent 34%),
    radial-gradient(ellipse at 50% 112%, rgba(167, 25, 25, 0.52), transparent 45%),
    linear-gradient(180deg, #050403 0%, #140605 54%, #2a0806 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.5), transparent 84%);
}

.hero-glow {
  position: absolute;
  inset: auto -8% -24% -8%;
  height: 390px;
  background: radial-gradient(ellipse at center, rgba(244, 178, 63, 0.26), transparent 64%);
  filter: blur(22px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1818px, calc(100% - clamp(52px, 11.2vw, 230px)));
  margin: 0 auto;
  padding: clamp(92px, 7vw, 116px) 0 38px;
}

.quick-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.7vw, 26px);
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.quick-cats a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.quick-cats strong {
  width: clamp(48px, 4.3vw, 60px);
  height: clamp(48px, 4.3vw, 60px);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 180ms ease;
}

.quick-cats svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.quick-cats a:hover strong {
  transform: translateY(-2px);
}

.quick-cats span {
  max-width: 118px;
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.12;
  font-weight: 800;
}

.featured-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.featured-carousel::before,
.featured-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 26px;
  width: clamp(54px, 8vw, 150px);
  pointer-events: none;
}

.featured-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 0, 13, 0.58), transparent);
}

.featured-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 0, 13, 0.58), transparent);
}

.hero-showcase {
  --feature-gap: clamp(20px, 1.8vw, 28px);
  --feature-card-width: clamp(240px, 21vw, 300px);
  height: clamp(430px, 34vw, 510px);
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-showcase::-webkit-scrollbar {
  display: none;
}

.feature-card {
  --x: 0px;
  --scale: 0.82;
  --opacity: 0;
  --z: 0;
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: var(--z);
  width: var(--feature-card-width);
  min-width: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + var(--x))) scale(var(--scale));
  opacity: var(--opacity);
  transition:
    transform 360ms cubic-bezier(0.22, 0.74, 0.25, 1),
    opacity 220ms ease,
    filter 220ms ease;
  will-change: transform, opacity;
}

.feature-card.is-featured .feature-cover {
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.5);
}

.feature-cover {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 0.82;
  background: var(--feature-tone);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  transition: box-shadow 220ms ease;
}

.feature-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  opacity: 0.9;
}

.feature-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.3), transparent 21%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.6) 74%, rgba(0, 0, 0, 0.92) 100%);
}

.feature-caption {
  position: relative;
  isolation: isolate;
  width: min(92%, 260px);
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 6px 10px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.feature-caption::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px 3px -4px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(8, 0, 13, 0.22), rgba(8, 0, 13, 0.58)),
    var(--feature-art) center 70% / cover no-repeat;
  opacity: 0.14;
  filter: blur(1px) saturate(1.12);
  mask-image: radial-gradient(ellipse at center, #000 0 34%, rgba(0, 0, 0, 0.5) 48%, transparent 78%);
}

.feature-card.is-featured .feature-caption::before {
  opacity: 0.2;
}

.feature-card h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.05;
  font-weight: 1000;
  text-transform: uppercase;
}

.feature-card h2.feature-title-compact {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.08;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-button {
  position: absolute;
  z-index: 50;
  top: calc(50% - 20px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(12, 0, 19, 0.42);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  transition:
    opacity 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.featured-carousel:hover .slider-button,
.slider-button:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: rgba(12, 0, 19, 0.68);
  transform: translateY(-1px);
}

.slider-button svg {
  pointer-events: none;
}

.slider-prev {
  left: clamp(20px, 3vw, 56px);
}

.slider-next {
  right: clamp(20px, 3vw, 56px);
}

.listings {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: -1px 0 0;
  padding: clamp(14px, 1.7vw, 22px) clamp(8px, 1.5vw, 24px) 72px;
  background:
    radial-gradient(ellipse at 14% 14%, rgba(244, 178, 63, 0.14), transparent 34%),
    radial-gradient(ellipse at 90% 12%, rgba(167, 25, 25, 0.2), transparent 38%),
    radial-gradient(ellipse at 50% 44%, rgba(0, 122, 167, 0.07), transparent 46%),
    linear-gradient(180deg, #2a0806 0 112px, #170605 260px, #070303 62%, #030303 100%);
  color: #fff;
}

.listings::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 112px 0 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.018) 0 1px,
    transparent 1px 72px
  );
}

.filters {
  position: relative;
  z-index: 10;
  width: min(1480px, 100%);
  margin: 0 auto clamp(14px, 1.45vw, 22px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  overflow-x: auto;
  padding: 0;
  background: transparent;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filters button {
  position: relative;
  flex: 0 0 auto;
  min-height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  padding: 4px 0 7px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
  transition:
    color 160ms ease;
}

.filters button:first-child {
  display: none;
}

.filters button:hover,
.filters button:focus-visible {
  color: #fff;
}

.filters button.is-active {
  background: transparent;
  color: #f4b23f;
}

.filters button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.event-empty {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.event-grid {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(19px, 1.7vw, 30px) clamp(8px, 0.95vw, 16px);
}

.event-grid + .event-grid {
  margin-top: clamp(19px, 1.7vw, 30px);
}

.event-grid:empty {
  display: none;
}

.event-card {
  min-width: 0;
  color: #fff;
}

.poster {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  aspect-ratio: 0.72;
  background: #050505;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.34);
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 12%, color-mix(in srgb, var(--accent) 48%, white), transparent 28%),
    linear-gradient(160deg, color-mix(in srgb, var(--poster) 72%, black), var(--poster));
}

.poster-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.28;
  filter: saturate(1.35) contrast(1.1);
}

.poster-real {
  background: #050505;
}

.poster-real::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0 58%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 50% 100%, rgba(244, 178, 63, 0.1), transparent 48%);
}

.poster-real .poster-photo {
  z-index: 0;
  opacity: 1;
  filter: saturate(1.02) contrast(1.03);
  mix-blend-mode: normal;
}

.poster-real .poster-ornament {
  display: none;
}

.poster-real .poster-copy {
  display: none;
}

.poster-ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.poster-copy {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 13px;
  color: #fff;
  text-shadow: 0 2px 13px rgba(0, 0, 0, 0.48);
}

.poster-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 9px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-copy strong {
  display: block;
  color: #fff;
  font-size: var(--poster-title-size, clamp(17px, 1.55vw, 24px));
  line-height: 0.86;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.special-offer {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 38px;
  right: auto;
  max-width: calc(100% - 48px);
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 5px 8px;
  font-size: 9px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(8px);
}

.bookmark {
  position: absolute;
  z-index: 6;
  top: 8px;
  left: 8px;
  width: 23px;
  height: 23px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.bookmark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-top-color: var(--accent);
  border-radius: 50%;
}

.poster-strobe .poster-ornament {
  background:
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.16) 15px 17px),
    linear-gradient(25deg, transparent 0 47%, color-mix(in srgb, var(--accent) 55%, transparent) 47% 52%, transparent 52%);
}

.poster-burst .poster-ornament,
.poster-rays .poster-ornament {
  background: conic-gradient(from 12deg at 50% 62%, rgba(255, 255, 255, 0.34), transparent 12deg 24deg, rgba(255, 255, 255, 0.18) 24deg 34deg, transparent 34deg 48deg);
}

.poster-sun .poster-ornament::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 13px color-mix(in srgb, var(--accent) 28%, transparent);
}

.poster-paper .poster-ornament {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 28%),
    repeating-linear-gradient(-8deg, transparent 0 18px, rgba(0, 0, 0, 0.06) 18px 19px);
}

.poster-spotlight .poster-ornament {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(102deg, transparent 0 43%, rgba(255, 255, 255, 0.32) 43% 50%, transparent 50%);
}

.poster-type .poster-ornament {
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(255, 255, 255, 0.18) 17px 19px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(0, 0, 0, 0.18) 28px 31px);
}

.poster-classic .poster-ornament,
.poster-deco .poster-ornament {
  inset: 12px;
  border: 2px solid color-mix(in srgb, var(--accent) 80%, white);
  box-shadow:
    inset 0 0 0 3px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}

.poster-neon .poster-ornament {
  background:
    linear-gradient(45deg, transparent 0 44%, var(--accent) 44% 46%, transparent 46%),
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--accent) 72%, white), transparent 22%);
}

.poster-smoke .poster-ornament {
  background:
    radial-gradient(ellipse at 30% 62%, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(ellipse at 72% 48%, rgba(255, 255, 255, 0.16), transparent 31%);
  filter: blur(1px);
}

.poster-silhouette .poster-ornament::before {
  content: "";
  position: absolute;
  left: 38%;
  bottom: 13%;
  width: 45px;
  height: 118px;
  background: #050505;
  clip-path: polygon(42% 0, 62% 0, 66% 24%, 100% 31%, 78% 42%, 70% 100%, 28% 100%, 26% 42%, 0 31%, 34% 24%);
}

.poster-film .poster-ornament {
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0 9px, transparent 9px 18px),
    linear-gradient(180deg, transparent 0 68%, rgba(0, 0, 0, 0.36));
  background-size: 100% 18px, 100%;
}

.poster-marquee .poster-ornament {
  background:
    radial-gradient(circle at 16px 16px, #fff 0 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 16px) 16px, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 16px calc(100% - 16px), #fff 0 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 16px) calc(100% - 16px), #fff 0 2px, transparent 3px);
}

.poster-snow .poster-ornament {
  background:
    radial-gradient(circle at 18% 20%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 72% 16%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 62% 42%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 28% 58%, #fff 0 1px, transparent 2px);
}

.poster-rose .poster-ornament::before,
.poster-plant .poster-ornament::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 23%;
  width: 68px;
  height: 88px;
  transform: translateX(-50%);
  background: var(--accent);
  clip-path: polygon(50% 0, 63% 22%, 100% 25%, 75% 50%, 86% 88%, 50% 68%, 14% 88%, 25% 50%, 0 25%, 37% 22%);
}

.poster-crown .poster-ornament::before,
.poster-star .poster-ornament::before,
.poster-spark .poster-ornament::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 86px;
  height: 72px;
  transform: translateX(-50%);
  background: var(--accent);
  clip-path: polygon(0 30%, 22% 47%, 33% 5%, 50% 44%, 67% 5%, 78% 47%, 100% 30%, 88% 100%, 12% 100%);
}

.poster-waves .poster-ornament {
  background:
    radial-gradient(ellipse at 25% 74%, rgba(255, 255, 255, 0.45), transparent 28%),
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.26) 0 5px, transparent 5px 18px);
}

.poster-ember .poster-ornament {
  background:
    radial-gradient(circle at 50% 68%, color-mix(in srgb, var(--accent) 72%, white), transparent 24%),
    repeating-linear-gradient(62deg, transparent 0 19px, rgba(255, 255, 255, 0.12) 19px 21px);
}

.poster-mask .poster-ornament::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  width: 88px;
  height: 58px;
  transform: translateX(-50%);
  border-radius: 50% 50% 38% 38%;
  background: var(--accent);
  box-shadow: inset 25px 8px 0 rgba(0, 0, 0, 0.16);
}

.event-card h3 {
  display: -webkit-box;
  margin: 8px 0 3px;
  overflow: hidden;
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.12;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.28;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 2px;
  min-width: 0;
}

.price strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(10px, 0.76vw, 12px);
  font-weight: 950;
  white-space: nowrap;
}

.price span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 850;
}

.score em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.event-card__action {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--hot);
  color: #130714;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(244, 178, 63, 0.2);
}

.event-card__action::after {
  content: " ->";
}

.event-card__action:hover,
.event-card__action:focus-visible {
  background: var(--hot-2);
}

body.is-buying {
  background: #f5f3ef;
}

body.is-buying .site-header,
body.is-buying .hero,
body.is-buying .listings,
body.is-buying .site-footer {
  display: none;
}

.buy-view {
  min-height: 100vh;
  background: #f7f4ef;
  color: #141014;
}

.buy-view[hidden] {
  display: none;
}

.buy-topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: 56px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(22, 17, 22, 0.09);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(18px);
}

.buy-topbar .brand {
  color: #171115;
  font-size: 23px;
}

.buy-back {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(22, 17, 22, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #171115;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 850;
}

.buy-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.buy-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  color: #5d5560;
  font-size: 12px;
  font-weight: 800;
}

.buy-nav a:hover {
  color: #171115;
}

.buy-shell {
  width: min(1300px, calc(100% - clamp(48px, 6vw, 96px)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 340px);
  align-items: start;
  gap: 12px clamp(22px, 2.8vw, 34px);
  padding: clamp(22px, 2.4vw, 32px) 0 clamp(34px, 4vw, 58px);
}

.buy-hero {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(20px, 2.8vw, 36px);
  padding: 0;
}

.buy-hero__copy {
  max-width: 440px;
  padding-bottom: 0;
}

.buy-location,
.buy-section-title span {
  display: block;
  color: #6e6570;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.buy-hero h1 {
  margin: 8px 0 10px;
  color: #141014;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 0.94;
  font-weight: 1000;
  letter-spacing: 0;
}

.buy-hero__copy p {
  max-width: 430px;
  margin: 0;
  color: #49414b;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.3;
  font-weight: 760;
}

.buy-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 16px;
}

.buy-primary,
.checkout-button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #111016;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.buy-hero__actions > span {
  color: #675f69;
  font-size: 11px;
  font-weight: 850;
}

.buy-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  height: clamp(240px, 22vw, 320px);
  min-height: 0;
}

.buy-gallery__item {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #171115;
}

.buy-gallery__item-main {
  grid-row: 1 / span 2;
}

.buy-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.buy-gallery__item:nth-child(3) img {
  object-position: top center;
}

.buy-pillbar {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 2px 0 14px;
}

.buy-pill {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(20, 16, 20, 0.09);
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
  box-shadow: 0 10px 24px rgba(31, 19, 34, 0.06);
}

.buy-pill span {
  color: #746d76;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.buy-pill strong {
  color: #141014;
  font-size: 15px;
  line-height: 1;
  font-weight: 1000;
}

.buy-main {
  grid-column: 1;
  display: grid;
  gap: 14px;
}

.buy-panel {
  border-bottom: 1px solid rgba(20, 16, 20, 0.1);
  padding: 0 0 18px;
}

.buy-panel p {
  max-width: 650px;
  margin: 0;
  color: #4d4650;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 650;
}

.buy-section-title {
  margin-bottom: 10px;
}

.buy-section-title h2 {
  margin: 5px 0 0;
  color: #141014;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1;
  font-weight: 950;
}

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

.buy-detail-grid div,
.buy-venue-detail {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(20, 16, 20, 0.09);
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
}

.buy-detail-grid span,
.buy-venue-detail span {
  color: #746d76;
  font-size: 10px;
  font-weight: 850;
}

.buy-detail-grid strong,
.buy-venue-detail strong {
  color: #141014;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.buy-seatplan {
  overflow: hidden;
  max-width: 650px;
  margin-top: 10px;
  border: 1px solid rgba(20, 16, 20, 0.09);
  border-radius: 8px;
  background: #fff;
}

.buy-seatplan img {
  width: 100%;
  display: block;
}

.ticket-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 6px 10px;
  padding: 9px 10px;
  border: 1px solid rgba(20, 16, 20, 0.1);
  border-radius: 8px;
  background: #fff;
}

.ticket-option.is-selected {
  border-color: #141014;
  box-shadow: inset 0 0 0 1px #141014;
}

.ticket-option__copy {
  grid-row: 1 / span 2;
  min-width: 0;
}

.ticket-option h3 {
  margin: 0;
  color: #141014;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 900;
}

.ticket-option p {
  margin: 3px 0 0;
  color: #6e6570;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 650;
}

.ticket-option > strong {
  color: #141014;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.ticket-stepper {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  display: inline-grid;
  grid-template-columns: 26px 28px 26px;
  align-items: center;
  margin-top: 0;
  border: 1px solid rgba(20, 16, 20, 0.13);
  border-radius: 999px;
  background: #f7f4ef;
}

.ticket-stepper button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #141014;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

.ticket-stepper button:disabled {
  color: rgba(20, 16, 20, 0.26);
  cursor: default;
}

.ticket-stepper span {
  color: #141014;
  text-align: center;
  font-size: 11px;
  font-weight: 950;
}

.order-summary {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: sticky;
  top: 66px;
  align-self: start;
  scroll-margin-top: 76px;
  padding: 12px;
  border: 1px solid rgba(20, 16, 20, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 19, 34, 0.1);
}

.order-summary .buy-section-title {
  margin-bottom: 7px;
}

.order-summary .buy-section-title h2 {
  font-size: clamp(22px, 1.8vw, 26px);
}

.order-venue {
  margin: -2px 0 8px !important;
  color: #625963;
  font-size: 11px;
  font-weight: 800;
}

.performance-picker {
  margin-bottom: 9px;
}

.picker-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #5f5661;
}

.picker-heading svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.picker-heading span {
  color: #5f5661;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.performance-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.performance-option {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(20, 16, 20, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 7px 8px;
  text-align: left;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.performance-option:hover,
.performance-option:focus-visible {
  border-color: rgba(20, 16, 20, 0.42);
}

.performance-option.is-selected {
  border-color: #141014;
  background: #f1eee8;
  box-shadow: inset 0 0 0 1px #141014;
}

.performance-option__month {
  color: #6e6570;
  font-size: 9px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.performance-option strong {
  color: #141014;
  font-size: 21px;
  line-height: 0.95;
  font-weight: 1000;
}

.performance-option span:not(.performance-option__month) {
  color: #514953;
  font-size: 10px;
  font-weight: 900;
}

.performance-option em {
  color: #706673;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.ticket-options {
  display: grid;
  gap: 6px;
}

.order-lines {
  display: grid;
  gap: 6px;
  min-height: 36px;
  padding: 5px 0 10px;
  border-bottom: 1px solid rgba(20, 16, 20, 0.09);
}

.order-empty {
  margin: 0;
  color: #706673;
  font-size: 11px;
  font-weight: 700;
}

.order-line,
.order-total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.order-line span,
.order-summary p,
.order-total span {
  color: #625963;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 720;
}

.order-line strong {
  color: #141014;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.order-total {
  margin-top: 10px;
}

.order-total strong {
  color: #141014;
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.order-summary p {
  margin: 5px 0 10px;
}

.buy-notice {
  margin: 7px 0 10px !important;
  color: #706673 !important;
  font-size: 10px !important;
  line-height: 1.28 !important;
  font-weight: 700 !important;
}

.checkout-button {
  width: 100%;
  min-height: 38px;
}

.checkout-button:disabled {
  background: #d9d3db;
  color: #8a828d;
  cursor: default;
}

.checkout-status {
  margin: 12px 0 0 !important;
  color: #2c6c51 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.promo {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 58px 0 64px;
  padding: 25px;
  border-radius: 17px;
  color: #fff;
  background: #190010;
  box-shadow: 0 13px 32px rgba(35, 8, 43, 0.18);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--promo-img);
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.1) 65%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
}

.promo > * {
  position: relative;
  z-index: 1;
}

.promo span {
  color: #ffe850;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.promo h2 {
  max-width: 540px;
  margin: 3px 0 0;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 0.82;
  font-weight: 1000;
  text-transform: uppercase;
}

.promo button {
  min-width: 132px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #100715;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 950;
}

.promo button::after,
.load-more::after {
  content: "  →";
}

.promo-warm {
  --promo-img: url("https://images.gmanews.tv/webpics/2026/03/bini_2026_03_22_12_49_06.jpg");
  min-height: clamp(262px, 15.6vw, 316px);
  align-items: center;
  justify-content: flex-end;
  padding: clamp(28px, 3.2vw, 58px) clamp(38px, 4.8vw, 92px);
  border: 1px solid #e2d1ad;
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 0, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #efe5cd, #d9c59f);
  box-shadow:
    0 19px 44px rgba(33, 22, 12, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

.promo-warm::before {
  inset: clamp(18px, 1.35vw, 27px);
  border-radius: 8px;
  background-position: center;
  opacity: 1;
  filter: sepia(0.1) saturate(1.02) contrast(1.06);
}

.promo-warm::after {
  inset: clamp(18px, 1.35vw, 27px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0 42%, rgba(0, 0, 0, 0.52) 60%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 78% 50%, rgba(244, 178, 63, 0.16), transparent 34%);
}

.promo-warm .promo-copy {
  width: min(560px, 43%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.promo-warm span {
  display: none;
}

.promo-warm h2 {
  margin: 0;
  max-width: none;
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(50px, 4.8vw, 86px);
  line-height: 0.84;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
}

.promo-warm p {
  margin: 10px 0 24px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 1.8vw, 36px);
  line-height: 0.9;
  font-weight: 1000;
  text-transform: lowercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
}

.promo-warm button {
  min-width: clamp(190px, 18vw, 330px);
  border-radius: 999px;
  background: #f4b23f;
  color: #120907;
  padding: clamp(14px, 1.2vw, 22px) clamp(24px, 2.2vw, 42px);
  font-size: clamp(16px, 1.45vw, 28px);
  box-shadow: 0 10px 24px rgba(64, 30, 0, 0.24);
}

.promo-red {
  --promo-img: url("https://www.philippineconcerts.com/wp-content/uploads/2026/05/f-forever-1st-world-tour-philippine-arena.jpg");
  background: #7c0f0f;
}

.promo-purple {
  --promo-img: url("https://culturalcenter.gov.ph/wp-content/uploads/2026/05/00.-VLFXXI-Main-Poster-scaled.jpg");
  background: #241006;
}

.listings .promo {
  display: none;
}

.load-more {
  position: relative;
  z-index: 1;
  display: block;
  margin: 42px auto 0;
  min-width: 214px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 850;
}

.site-footer {
  background:
    radial-gradient(circle at 78% 0, rgba(244, 178, 63, 0.13), transparent 30%),
    linear-gradient(180deg, #090504, #030303);
  color: #fff;
  padding: 44px 0 24px;
}

.footer-inner {
  width: min(1180px, calc(100% - clamp(32px, 7.4vw, 150px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(160px, 190px) minmax(150px, 180px);
  gap: clamp(32px, 8vw, 112px);
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 850;
}

.site-footer nav a,
.legal {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.legal {
  width: min(1180px, calc(100% - clamp(32px, 7.4vw, 150px)));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1400px) {
  .feature-card {
    flex-basis: var(--feature-card-width);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

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

  .feature-card {
    flex-basis: var(--feature-card-width);
  }
}

@media (max-width: 920px) {
  .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 8px;
  }

  .buy-shell {
    grid-template-columns: 1fr;
  }

  .buy-hero,
  .buy-pillbar,
  .buy-main,
  .order-summary {
    grid-column: 1;
  }

  .order-summary {
    grid-row: auto;
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 14px 16px;
    gap: 8px;
  }

  .brand {
    font-size: 26px;
  }

  .location {
    min-width: 0;
    padding-left: 10px;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    position: static;
    grid-column: auto;
    justify-self: end;
    margin-left: 0;
    gap: 4px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .icon-button svg {
    width: 17px;
    height: 17px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content,
  .footer-inner,
  .legal {
    width: calc(100% - 32px);
  }

  .hero-content {
    padding: 74px 0 18px;
  }

  .quick-cats {
    width: 100vw;
    margin: 12px calc(50% - 50vw) 20px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 16px 6px;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
  }

  .quick-cats::-webkit-scrollbar {
    display: none;
  }

  .quick-cats a {
    flex: 0 0 74px;
    gap: 7px;
  }

  .quick-cats strong {
    width: 42px;
    height: 42px;
  }

  .quick-cats span {
    font-size: 11px;
  }

  .hero-showcase {
    --feature-gap: 16px;
    --feature-card-width: min(68vw, 260px);
    height: clamp(360px, 108vw, 430px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    touch-action: pan-y;
  }

  .feature-card {
    width: var(--feature-card-width);
    top: 12px;
  }

  .slider-button {
    display: none;
  }

  .listings {
    width: 100%;
    padding: 12px 12px 46px;
  }

  .filters {
    gap: 8px;
    margin-bottom: 16px;
    padding: 0 2px 8px;
  }

  .filters button {
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0 12px;
    font-size: 11px;
  }

  .filters button:first-child {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .filters button.is-active {
    background: var(--hot);
    color: #150806;
  }

  .filters button.is-active::after {
    display: none;
  }

  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 10px;
  }

  .poster {
    border-radius: 6px;
    aspect-ratio: 0.76;
  }

  .special-offer {
    display: none;
  }

  .bookmark {
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
  }

  .bookmark::after {
    inset: 5px;
    border-width: 1.5px;
  }

  .price {
    gap: 4px;
    margin: 7px 0 2px;
  }

  .event-card h3 {
    margin: 6px 0 2px;
    font-size: 13px;
    line-height: 1.15;
  }

  .event-card p,
  .price strong,
  .price span,
  .score {
    font-size: 10px;
    line-height: 1.2;
  }

  .event-card__action {
    min-height: 34px;
    margin-top: 7px;
    padding: 8px 11px;
    font-size: 11px;
    box-shadow: none;
  }

  .buy-topbar {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 56px;
    padding: 8px 12px;
    gap: 10px;
  }

  .buy-topbar .brand {
    font-size: 20px;
    justify-self: end;
  }

  .buy-nav {
    display: none;
  }

  .buy-back {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .buy-shell {
    width: calc(100% - 28px);
  }

  .buy-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0 10px;
  }

  .buy-hero h1 {
    margin: 6px 0 8px;
    font-size: 32px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .buy-hero__copy p {
    font-size: 13px;
  }

  .buy-hero__actions {
    margin-top: 12px;
  }

  .buy-primary {
    width: 100%;
    min-height: 46px;
  }

  .buy-gallery {
    display: block;
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .buy-gallery__item-main {
    height: 100%;
    min-height: 0;
  }

  .buy-gallery__item:not(.buy-gallery__item-main) {
    display: none;
  }

  .buy-pillbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 0 16px;
  }

  .buy-pill {
    min-height: 50px;
    padding: 10px;
  }

  .buy-shell {
    gap: 18px;
    padding: 12px 0 32px;
  }

  .buy-section-title {
    margin-bottom: 10px;
  }

  .buy-section-title h2 {
    font-size: 20px;
  }

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

  .buy-panel {
    padding-bottom: 16px;
  }

  .buy-panel p {
    font-size: 13px;
    line-height: 1.42;
  }

  .ticket-option {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 11px;
  }

  .ticket-option__copy {
    grid-row: auto;
  }

  .ticket-option h3 {
    font-size: 13px;
  }

  .ticket-option p {
    font-size: 11px;
  }

  .ticket-option > strong {
    justify-self: start;
    font-size: 13px;
  }

  .ticket-stepper {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    grid-template-columns: 38px minmax(36px, 1fr) 38px;
    min-height: 38px;
    width: 100%;
  }

  .ticket-stepper button {
    width: 38px;
    height: 38px;
  }

  .order-summary {
    padding: 12px;
    scroll-margin-top: 64px;
  }

  .order-summary .buy-section-title h2 {
    font-size: 22px;
  }

  .performance-option {
    padding: 7px 8px;
  }

  .performance-option strong {
    font-size: 20px;
  }

  .buy-notice {
    font-size: 10px !important;
  }

  .promo {
    min-height: 255px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 36px 0;
    padding: 20px;
  }

  .promo h2 {
    max-width: 300px;
  }

  .promo button {
    min-width: 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 32px;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 24px;
  }

  .location {
    font-size: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .performance-options,
  .buy-pillbar {
    grid-template-columns: 1fr;
  }

  .poster {
    aspect-ratio: 0.74;
  }

  .buy-hero h1 {
    font-size: 29px;
  }
}

@media (max-width: 340px) {
  .location {
    display: none;
  }

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

  .poster {
    aspect-ratio: 0.8;
  }
}
