:root {
  --color-navy: #0b1f4a;
  --color-teal: #0e8494;
  --color-teal-bright: #1fb8c9;
  --color-orange: #f26522;
  --color-sunset: #ff8a2b;
  --color-primary: #0e8494;
  --color-primary-hover: #0a6b78;
  --color-secondary: #1fb8c9;
  --color-accent: #f26522;
  --color-background: #f7fafb;
  --color-background-card: #fff;
  --color-background-hover: #f3f4f6;
  --color-primary-wash: #e6f7f8;
  --color-primary-wash-strong: #c8eef2;
  --color-text: #6d6d6d;
  --color-text-secondary: #6d6d6d;
  --color-text-muted: #6d6d6d;
  --color-brand: #0b1f4a;
  --color-heading: #0b1f4a;
  --color-body: #6d6d6d;
  --color-link: #0e8494;
  --color-price: #0e8494;
  --color-border: #e5e7eb;
  --color-card-border: #dedede;
  --color-card-date-bg: #f4f7fb;
  --color-filter-border: #ccd2de;
  --color-filter-hover-border: #f26522;
  --color-filter-active-bg: #e6f7f8;
  --color-filter-active-text: #0e8494;
  --color-filter-active-border: #1fb8c9;
  --color-deal-amazing: #059669;
  --color-deal-great: #10b981;
  --color-deal-good: #84cc16;
  --color-deal-fair: #eab308;
  --color-deal-premium: #f97316;
  --color-success-bg: #f0fdf4;
  --color-map-blocks: #e8e6eb;
  --color-map-blocks-line: #ada9ad;
  --radius: 0.5rem;
  --max: 1180px;
  --font-heading: Syne, Inter, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --shadow-navbar: 0 1px 3px rgba(15, 15, 15, 0.08);
  --shadow-card: 0 1px 2px rgba(15, 15, 15, 0.06);
  --shadow-dropdown: 0 0.5rem 1rem rgba(15, 15, 15, 0.12);
  --champagne: #d4c4a0;
  --gold: #d4af37;
  --ink: #050505;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: #070707;
  color: var(--color-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 14px 0 16px;
  pointer-events: auto;
  overflow: visible;
  border-radius: 14px;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand-mark {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgb(0 0 0 / 0.35));
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.brand-lockup em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4c4a0;
}

.brand img {
  height: 44px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgb(0 0 0 / 0.35));
}

.brand span:not(.brand-lockup) {
  display: none;
}

.search {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.search input {
  width: 100%;
  height: 38px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  padding: 0 16px 0 40px;
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
}

.search input::placeholder {
  color: rgb(255 255 255 / 0.52);
}

.search input:focus {
  border-color: rgb(255 255 255 / 0.35);
  background: rgb(255 255 255 / 0.12);
  box-shadow: 0 0 0 3px rgb(255 255 255 / 0.08);
}

.search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(255 255 255 / 0.55);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a {
  color: rgb(255 255 255 / 0.86);
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a.nav-hot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  margin: 0 4px;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(
    105deg,
    #ffd89a 0%,
    #fff6d2 18%,
    #ffb347 36%,
    #ff6a14 52%,
    #ffd89a 68%,
    #ff8a2b 84%,
    #ffc46a 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: nav-fire-shimmer 2.8s ease-in-out infinite;
}

.site-header nav a.nav-hot:hover {
  animation-duration: 1.6s;
  filter: brightness(1.08);
}

@keyframes nav-fire-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cd-live,
  .cd-cell.is-seconds,
  .cd-cell.is-flip b,
  .hero-sponsors-track,
  .site-header nav a.nav-hot {
    animation: none;
  }

  .site-header nav a.nav-hot {
    background: none;
    color: #ffb347;
    -webkit-text-fill-color: #ffb347;
  }
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px 0 10px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  background: rgb(255 255 255 / 0.06);
}

.cart-btn:hover {
  border-color: rgb(255 255 255 / 0.4);
  color: #fff;
  background: rgb(255 255 255 / 0.12);
}

.cart-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.cart-badge.is-empty {
  background: rgb(255 255 255 / 0.16);
  color: rgb(255 255 255 / 0.78);
}

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-price);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.view[hidden] {
  display: none !important;
}

.home-stage {
  position: relative;
  background: #070707;
  padding-bottom: 64px;
}

.home-hero {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: transparent;
  padding: 108px 0 28px;
  min-height: 0;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1180px;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.08) 68%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 26%,
      rgba(7, 7, 7, 0.1) 44%,
      rgba(7, 7, 7, 0.36) 60%,
      rgba(7, 7, 7, 0.62) 74%,
      rgba(7, 7, 7, 0.88) 90%,
      #070707 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-when {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 36px;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 920px;
}

.hero-offer {
  display: grid;
  grid-template-columns: minmax(170px, 268px) 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgb(0 0 0 / 0.38);
}

.hero-offer-art {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 320px;
  padding: 28px 18px;
  overflow: hidden;
  background: #c10d18;
}

.hero-offer-fronds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-offer-logo {
  position: relative;
  z-index: 1;
  width: min(88%, 260px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 28px rgb(0 0 0 / 0.45)) drop-shadow(0 2px 6px rgb(0 0 0 / 0.35));
}

.hero-offer-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  overflow: hidden;
}

.hero-sponsors {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding: 6px 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}

.hero-sponsors-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  min-height: 0;
  animation: hero-sponsors-marquee 42s linear infinite;
}

.hero-sponsors-track-b {
  animation-duration: 56s;
  animation-delay: -18s;
}

.hero-sponsors-track-c {
  animation-duration: 48s;
  animation-delay: -8s;
}

.hero-sponsors-track-d {
  animation-duration: 62s;
  animation-delay: -26s;
}

.hero-sponsors-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.hero-sponsors-set img {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
}

@keyframes hero-sponsors-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-offer-copy h2,
.hero-offer-copy p,
.hero-offer-copy ul,
.hero-offer-copy .btn-shop {
  position: relative;
  z-index: 1;
}

.hero-offer-copy h2,
.hero-offer-copy p,
.hero-offer-copy ul {
  text-shadow: 0 0 8px #fff, 0 0 16px #fff;
}

.hero-offer-copy h2 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #22c55e;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.hero-avail svg {
  flex-shrink: 0;
}

.hero-offer-copy > p:not(.hero-avail) {
  color: var(--color-text-secondary);
  font-size: 15px;
}

.hero-offer-copy ul {
  list-style: none;
  margin: 16px 0 22px;
}

.hero-offer-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text);
  font-size: 14px;
  margin-bottom: 9px;
}

.hero-offer-copy li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-navy);
}

.btn-shop {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px 0 14px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border: 1px dashed rgb(255 255 255 / 0.22);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-shop-ticket {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(160deg, #fff6d2 0%, #ffc46a 45%, #ff8a2b 100%);
  color: #1a1208;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.35) inset;
}

.btn-shop-ticket svg {
  display: block;
}

.btn-shop-label {
  letter-spacing: 0.01em;
}

.btn-shop:hover {
  background: #0d0d0d;
  color: #fff;
  border-color: rgb(255 196 106 / 0.45);
  transform: translateY(-1px);
}

.btn-shop:hover .btn-shop-ticket {
  filter: brightness(1.05);
}

.hero-ask {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0b1018;
  border-radius: 16px;
  padding: 0 0 22px;
  box-shadow: 0 28px 64px rgb(0 0 0 / 0.38);
  border: 1px solid rgb(255 140 60 / 0.16);
}

.hero-ask-photo {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center 40%;
  pointer-events: none;
}

.hero-ask::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 92px;
  height: 56px;
  width: auto;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, #0b1018);
  pointer-events: none;
}

.hero-ask > *:not(.hero-ask-photo) {
  position: relative;
  z-index: 1;
  margin-left: 22px;
  margin-right: 22px;
}

.hero-ask .countdown-label {
  margin-top: 14px;
}

.hero-ask::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7a18, #ffd27a, #ff7a18, transparent);
  opacity: 0.85;
  pointer-events: none;
}

.countdown-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 12px;
}

.cd-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8a2b;
  box-shadow: 0 0 0 3px rgb(255 138 43 / 0.18), 0 0 12px rgb(255 120 40 / 0.65);
  animation: cd-blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes cd-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.86);
  }
}

.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 6px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.03) 55%, rgb(0 0 0 / 0.18)),
    rgb(8 10 16 / 0.42);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 18px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.cd-cell {
  position: relative;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 13px;
  padding: 14px 4px 12px;
  text-align: center;
  overflow: hidden;
}

.cd-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.22), transparent);
  pointer-events: none;
}

.cd-cell.is-seconds {
  background: radial-gradient(circle at 50% 28%, rgb(255 138 43 / 0.18), transparent 68%);
  box-shadow: none;
}

.cd-cell b {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 2px 16px rgb(0 0 0 / 0.35);
}

.cd-cell.is-seconds b {
  color: #ffd2a0;
}

.cd-cell.is-flip b {
  animation: cd-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cd-pop {
  0% {
    transform: translateY(6px);
    opacity: 0.2;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

.cd-cell span {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  color: rgb(255 255 255 / 0.46);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cd-cell.is-seconds span {
  color: rgb(255 200 150 / 0.7);
}

.hero-ask-note {
  position: relative;
  margin: 16px 0 18px;
  color: rgb(255 255 255 / 0.78);
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.75);
}

.btn-gold {
  position: relative;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: #d4c4a0;
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-gold:hover {
  background: #e2d4b4;
  color: #1a1a1a;
}

.btn-early {
  align-self: center;
  width: auto;
  min-width: 220px;
  max-width: calc(100% - 44px);
  height: 46px;
  margin-top: auto;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 28px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: linear-gradient(180deg, #e8d9b4 0%, #d4c4a0 48%, #c4b08a 100%);
  color: #1a1a1a;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.28);
  animation: btn-early-glow 3.4s ease-in-out infinite;
}

.btn-early:hover {
  background: linear-gradient(180deg, #f0e4c4 0%, #e2d4b4 48%, #d4c4a0 100%);
  color: #1a1a1a;
  box-shadow: 0 10px 26px rgb(0 0 0 / 0.32);
}

.btn-early-label {
  position: relative;
  z-index: 2;
}

.btn-early-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgb(255 255 255 / 0.12) 44%,
    rgb(255 255 255 / 0.55) 50%,
    rgb(255 255 255 / 0.12) 56%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: btn-early-shine 3.6s ease-in-out infinite;
}

@keyframes btn-early-shine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  65%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes btn-early-glow {
  0%,
  100% {
    box-shadow: 0 8px 22px rgb(0 0 0 / 0.28), 0 0 0 rgb(212 196 160 / 0);
  }
  50% {
    box-shadow: 0 10px 26px rgb(0 0 0 / 0.3), 0 0 18px rgb(212 196 160 / 0.28);
  }
}

section {
  padding: 36px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.section-head p,
.sched-meta {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.event-grid {
  display: grid;
  gap: 12px;
}

.match-board {
  position: relative;
  z-index: 3;
  margin-top: 0;
  scroll-margin-top: 88px;
  background: transparent;
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 44px;
  border-radius: 14px;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-bottom-color: transparent;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgb(0 0 0 / 0.45) 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgb(0 0 0 / 0.45) 78%, transparent 100%);
}

.trust-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px 6px;
  border-right: 1px solid rgb(255 255 255 / 0.1);
}

.trust-grid li:last-child {
  border-right: 0;
}

.trust-grid svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #d4c4a0;
}

.trust-grid h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trust-grid p {
  color: rgb(255 255 255 / 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.match-intro {
  text-align: center;
  max-width: 720px;
  margin: -12px auto 28px;
}

.match-board .match-intro h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 10px;
}

.match-board .match-intro p,
.match-board .sched-meta {
  color: rgb(255 255 255 / 0.62);
  font-size: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 16px 12px 12px;
  color: #fff;
  cursor: pointer;
  border-radius: 14px;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.event-card:hover {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(18 18 18 / 0.62);
  transform: translateY(-1px);
}

.event-card.is-final {
  opacity: 0.78;
}

.event-date {
  background: rgb(255 255 255 / 0.08);
  border-radius: 10px;
  text-align: center;
  padding: 10px 6px;
  font-family: var(--font-heading);
}

.event-date .mon {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d4c4a0;
  text-transform: uppercase;
}

.event-date .day {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.event-date .dow {
  display: block;
  font-size: 11px;
  color: rgb(255 255 255 / 0.55);
  font-weight: 600;
}

.event-matchup {
  min-width: 0;
}

.event-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.event-team-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.event-teams .event-team-name:first-child {
  text-align: right;
}

.event-teams .event-team-name:last-child {
  text-align: left;
}

.event-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-logos img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgb(0 0 0 / 0.35));
}

.event-vs {
  color: rgb(255 255 255 / 0.4);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.event-matchup p {
  margin-top: 6px;
  text-align: center;
  font-size: 13px;
  color: rgb(255 255 255 / 0.55);
}

.event-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.event-card--intrigue {
  position: relative;
  margin-bottom: 12px;
  border-color: rgb(212 196 160 / 0.28);
  background:
    linear-gradient(120deg, rgb(212 196 160 / 0.08), transparent 42%),
    rgb(12 12 12 / 0.55);
  box-shadow:
    0 12px 40px rgb(0 0 0 / 0.32),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  overflow: hidden;
  isolation: isolate;
}

.event-card--intrigue::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #d4c4a0, #ff8a2b 55%, transparent);
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* Fire rim — one continuous rounded stroke */
.event-card--intrigue::after {
  display: none;
}

.event-card--intrigue .intrigue-fire {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
  /* Only the right wrap (top + right + bottom), soft fade on the left tips */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 74%,
    rgb(0 0 0 / 0.35) 80%,
    #000 88%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 74%,
    rgb(0 0 0 / 0.35) 80%,
    #000 88%,
    #000 100%
  );
  animation: intrigue-fire-mask 3.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.event-card--intrigue .intrigue-fire-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.5px;
  background: linear-gradient(
    180deg,
    #fff6c8 0%,
    #ffcc66 10%,
    #ff6a00 22%,
    #ff2a00 36%,
    #ff5a00 48%,
    #ffb347 58%,
    #fff1a8 66%,
    #ff6a00 78%,
    #ff2a00 90%,
    #ffcc66 100%
  );
  background-size: 100% 240%;
  background-position: 0% 0%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 7px rgb(255 90 0 / 0.55)) drop-shadow(-2px 0 14px rgb(255 50 0 / 0.35));
  animation:
    intrigue-fire-flow 2.8s linear infinite,
    intrigue-fire-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: background-position, filter, opacity;
}

@keyframes intrigue-fire-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes intrigue-fire-pulse {
  0%,
  100% {
    opacity: 0.88;
    filter: drop-shadow(0 0 6px rgb(255 90 0 / 0.42)) drop-shadow(-2px 0 11px rgb(255 50 0 / 0.28));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 11px rgb(255 130 25 / 0.68)) drop-shadow(-3px 0 16px rgb(255 50 0 / 0.42));
  }
}

@keyframes intrigue-fire-mask {
  0%,
  100% {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      transparent 77%,
      rgb(0 0 0 / 0.28) 83%,
      #000 91%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      transparent 77%,
      rgb(0 0 0 / 0.28) 83%,
      #000 91%,
      #000 100%
    );
  }
  50% {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      transparent 71%,
      rgb(0 0 0 / 0.32) 79%,
      #000 87%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      transparent 71%,
      rgb(0 0 0 / 0.32) 79%,
      #000 87%,
      #000 100%
    );
  }
}

.event-card--intrigue:hover {
  border-color: rgb(255 120 40 / 0.35);
  background:
    linear-gradient(120deg, rgb(212 196 160 / 0.12), transparent 42%),
    rgb(18 18 18 / 0.68);
}

.event-card--intrigue:hover .intrigue-fire-ring {
  animation-duration: 2.1s, 1.8s;
}

.event-card--intrigue:hover .intrigue-fire {
  animation-duration: 2.8s;
}

.event-date--intrigue {
  background: linear-gradient(165deg, rgb(212 196 160 / 0.18), rgb(255 138 43 / 0.1));
  border: 1px solid rgb(212 196 160 / 0.22);
}

.event-date--intrigue .mon {
  color: #ffd2a0;
}

.event-team-name.is-mystery {
  color: rgb(255 255 255 / 0.55);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.event-mark-locked {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: rgb(212 196 160 / 0.85);
  background:
    radial-gradient(circle at 35% 30%, rgb(255 255 255 / 0.1), transparent 55%),
    rgb(255 255 255 / 0.06);
  border: 1px dashed rgb(212 196 160 / 0.35);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.25);
}

.event-matchup p .intrigue-lock {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  color: #d4c4a0;
  vertical-align: -1px;
}

.event-side--intrigue {
  min-width: min(220px, 38vw);
  align-items: stretch;
}

.countdown--row {
  width: 100%;
  padding: 4px;
  border-radius: 12px;
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 8px 20px rgb(0 0 0 / 0.22);
}

.countdown--row .cd-cell {
  padding: 8px 2px 7px;
  border-radius: 10px;
}

.countdown--row .cd-cell b {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.countdown--row .cd-cell span {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.countdown--row .cd-cell:not(:last-child)::after {
  top: 18%;
  bottom: 18%;
}

.type-pill--locked {
  align-self: flex-end;
  background: rgb(212 196 160 / 0.12);
  color: #d4c4a0;
  border: 1px solid rgb(212 196 160 / 0.22);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}

.match-board .from-price {
  color: #fff;
}

.match-board .from-price small {
  color: rgb(255 255 255 / 0.5);
}

.match-board .type-pill {
  background: rgb(255 255 255 / 0.1);
  color: #d4c4a0;
}

.from-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-price);
  font-size: 16px;
}

.from-price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.type-pill,
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--color-primary-wash);
  color: var(--color-link);
}

.badge.ok {
  background: var(--color-success-bg);
  color: var(--color-price);
}

.badge.warn {
  background: #fff8e1;
  color: #7b5300;
}

.event-page {
  --max: 1540px;
  padding-top: 0;
}

.shop-page,
.info-page {
  background: #070707;
  min-height: 100vh;
  padding-top: 88px;
  padding-bottom: 64px;
}

.event-page,
.shop-page,
.info-page {
  background: #070707;
  min-height: 100vh;
  padding-bottom: 64px;
}

.event-top,
.shop-top {
  background: transparent;
  border-bottom: 0;
  padding: 16px 0 14px;
}

.event-top {
  position: relative;
  overflow: hidden;
  padding: 100px 0 20px;
}

.event-top.has-hero {
  min-height: 420px;
  padding: 108px 0 88px;
}

.event-hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.event-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}

.event-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgb(7 7 7 / 0.62) 0%,
      rgb(7 7 7 / 0.28) 28%,
      rgb(7 7 7 / 0.22) 48%,
      rgb(7 7 7 / 0.5) 70%,
      rgb(7 7 7 / 0.88) 88%,
      #070707 100%
    ),
    linear-gradient(90deg, rgb(7 7 7 / 0.35) 0%, transparent 18%, transparent 82%, rgb(7 7 7 / 0.35) 100%);
}

.event-top-inner {
  position: relative;
  z-index: 1;
}

.event-top.has-hero .event-heading-logos img {
  width: 56px;
  height: 56px;
  filter:
    drop-shadow(0 1px 1px rgb(0 0 0 / 0.95))
    drop-shadow(0 4px 16px rgb(0 0 0 / 0.9));
}

.event-top.has-hero .event-heading-logos span {
  text-shadow:
    0 1px 2px rgb(0 0 0 / 0.95),
    0 4px 18px rgb(0 0 0 / 0.9);
}

.event-top.has-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.event-top.has-hero .event-heading h1 {
  text-shadow:
    0 1px 1px rgb(0 0 0 / 0.95),
    0 2px 8px rgb(0 0 0 / 0.9),
    0 8px 28px rgb(0 0 0 / 0.85);
}

.event-top.has-hero .event-sub {
  color: #fff;
  font-size: 15px;
  text-shadow:
    0 1px 1px rgb(0 0 0 / 0.95),
    0 2px 10px rgb(0 0 0 / 0.9),
    0 6px 22px rgb(0 0 0 / 0.8);
}

.shop-top {
  margin-bottom: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.06);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 0.86);
  margin-bottom: 10px;
}

.back-link:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.12);
}

.event-top h1,
.shop-top h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.event-sub {
  color: rgb(255 255 255 / 0.58);
  font-size: 14px;
}

.event-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 0 4px;
}

.event-heading-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}

.event-heading-logos img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 0.4));
}

.event-heading-logos span {
  color: rgb(212 196 160 / 0.7);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.event-heading h1 {
  margin-bottom: 4px;
}

.event-heading .event-sub {
  margin: 0 auto;
}

.bowl-heading {
  gap: 16px;
}

.bowl-hero-logo {
  width: 92px;
  height: auto;
  filter:
    drop-shadow(0 1px 1px rgb(0 0 0 / 0.95))
    drop-shadow(0 8px 24px rgb(0 0 0 / 0.85));
}

.bowl-kicker {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  margin: 0 0 10px;
  border-radius: 999px;
  background: rgb(212 175 55 / 0.18);
  border: 1px solid rgb(212 175 55 / 0.45);
  color: #f3d27a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bowl-hero-note {
  margin: 8px auto 0;
  max-width: 28rem;
  color: rgb(255 255 255 / 0.78);
  font-size: 15px;
  text-shadow:
    0 1px 1px rgb(0 0 0 / 0.95),
    0 2px 10px rgb(0 0 0 / 0.9);
}

.bowl-from {
  margin: 10px 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-shadow:
    0 1px 1px rgb(0 0 0 / 0.95),
    0 2px 10px rgb(0 0 0 / 0.9);
}

.bowl-page #bowl-tickets {
  scroll-margin-top: 92px;
  padding-top: 4px;
}

.bowl-page .info-body {
  padding-top: 48px;
}

.bowl-venue-photo {
  background:
    linear-gradient(180deg, rgb(7 7 7 / 0.12), rgb(7 7 7 / 0.78)),
    url("assets/venues/sofi.jpg") center 46% / cover;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}

.seat-categories {
  margin: 4px 0 16px;
}

.seat-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.seat-cat {
  --cat-accent: #9aa3b2;
  appearance: none;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--cat-accent) 28%, rgb(255 255 255 / 0.1));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--cat-accent) 18%, transparent), transparent 58%),
    rgb(14 14 14 / 0.92);
  color: #fff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 3px;
  min-height: 92px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.seat-cat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--cat-accent);
}

.seat-cat:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--cat-accent) 55%, #fff);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.28);
}

.seat-cat.is-active {
  border-color: color-mix(in srgb, var(--cat-accent) 70%, #fff);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--cat-accent) 28%, transparent), transparent 62%),
    rgb(18 18 18 / 0.96);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--cat-accent) 35%, transparent), 0 14px 32px rgb(0 0 0 / 0.32);
}

.seat-cat--all {
  --cat-accent: #c8cdd6;
}

.seat-cat--lower {
  --cat-accent: #3ecf8e;
}

.seat-cat--club {
  --cat-accent: #6ea8ff;
}

.seat-cat--upper {
  --cat-accent: #ff8f6b;
}

.seat-cat-swatch {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  margin-bottom: 6px;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--cat-accent) 88%, #fff), var(--cat-accent) 55%, color-mix(in srgb, var(--cat-accent) 55%, #111));
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18);
}

.seat-cat--all .seat-cat-swatch {
  background:
    conic-gradient(from 210deg, #3ecf8e, #6ea8ff, #ff8f6b, #3ecf8e);
}

.seat-cat--lower .seat-cat-swatch {
  clip-path: polygon(50% 8%, 92% 78%, 8% 78%);
  border-radius: 4px;
}

.seat-cat--club .seat-cat-swatch {
  border-radius: 50%;
}

.seat-cat--upper .seat-cat-swatch {
  clip-path: polygon(12% 18%, 88% 18%, 72% 82%, 28% 82%);
  border-radius: 3px;
}

.seat-cat-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.seat-cat-from {
  font-size: 12px;
  font-weight: 650;
  color: color-mix(in srgb, var(--cat-accent) 55%, #fff);
}

.seat-cat-hint {
  font-size: 11px;
  color: rgb(255 255 255 / 0.42);
}

@media (max-width: 700px) {
  .seat-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.filter-pill {
  height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.filter-pill:hover {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.12);
}

.filter-pill[data-selected="true"],
.filter-pill.is-open {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.4);
  color: #fff;
}

.filter-pill svg {
  width: 10px;
  height: 10px;
}

.sort-toggle {
  margin-left: auto;
  display: flex;
  background: #fff;
  border-radius: 2rem;
  box-shadow: var(--shadow-navbar);
  overflow: hidden;
}

.sort-toggle button {
  height: 32px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
}

.sort-toggle button[aria-pressed="true"] {
  background: var(--color-filter-active-bg);
  color: var(--color-filter-active-text);
}

.filter-menu {
  position: relative;
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  min-width: 220px;
  background: rgb(12 12 12 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 8px;
  display: none;
}

.filter-menu.is-open .filter-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-dropdown button {
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 0.86);
  cursor: pointer;
}

.filter-dropdown button:hover,
.filter-dropdown button[data-selected="true"] {
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}

.promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-success-bg);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #166534;
  margin-bottom: 12px;
}

.promo-banner strong {
  font-family: var(--font-heading);
}

.ended-banner {
  background: #fff8e1;
  border-color: #fde68a;
  color: #7b5300;
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 40px;
}

.listing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.listing {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  overflow: hidden;
}

.listing.is-open {
  border-color: var(--color-filter-active-border);
  box-shadow: 0 0 0 1px var(--color-filter-active-border);
}

.listing-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}

.listing-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px 2px 6px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--cat-accent) 45%, transparent);
  background: color-mix(in srgb, var(--cat-accent) 14%, transparent);
  color: var(--cat-accent);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

.listing-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cat-accent);
  flex-shrink: 0;
}

.listing-cat-hint {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.72;
  color: inherit;
}

.listing-cat-hint::before {
  content: "·";
  margin-right: 5px;
  opacity: 0.55;
}

.listing-seat {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  font-size: 15px;
}

.listing-row-n {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #d4c4a0;
  font-size: 15px;
}

.listing-qty {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.listing-together {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3ecf8e;
  line-height: 0;
  vertical-align: middle;
}

.listing-together svg {
  display: block;
}

.listing-zone {
  width: 100%;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.listing-price-col {
  text-align: right;
  min-width: 72px;
}

.listing-price {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.1;
}

.listing-each {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-text-muted);
}

.listing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.deal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.deal.amazing { background: var(--color-deal-amazing); }
.deal.great { background: var(--color-deal-great); }
.deal.good { background: var(--color-deal-good); color: #14532d; }
.deal.fair { background: var(--color-deal-fair); color: #422006; }
.deal.premium { background: var(--color-deal-premium); }

.chip {
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: #f2f3f3;
  color: #6d6d6d;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.cart-add {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 12px 14px 14px;
  background: #fafbfc;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.listing.is-open .cart-add {
  display: flex;
}

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--color-filter-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #fff;
  color: var(--color-heading);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.qty-stepper button:hover:not(:disabled) {
  background: var(--color-primary);
  color: #fff;
}

.qty-stepper button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-stepper output {
  width: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-variant-numeric: tabular-nums;
}

.cart-add-total {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.cart-add-total span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-add-total strong {
  font-family: var(--font-heading);
  color: var(--color-price);
  font-size: 16px;
}

.cart-add .btn {
  height: 40px;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.map-card {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  padding: 14px;
  position: sticky;
  top: 88px;
  height: fit-content;
}

.map-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.stadium {
  background: #101010;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.stadium svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-bg {
  fill: #101010;
}

.bowl-well {
  fill: #171917;
}

.map-sec {
  fill: #2b2b2b;
  stroke: #101010;
  stroke-width: 0.7;
  transition: fill 0.15s ease, opacity 0.15s ease, stroke 0.15s ease;
}

.map-sec:not(.has-deal) {
  pointer-events: none;
}

.map-sec.has-deal {
  cursor: pointer;
}

.map-sec.has-deal.map-sec--lower {
  fill: #2f9f6c;
}

.map-sec.has-deal.map-sec--club {
  fill: #4f86d8;
}

.map-sec.has-deal.map-sec--upper {
  fill: #d97858;
}

.map-sec.has-deal.map-sec--lower:hover {
  fill: #3ecf8e;
}

.map-sec.has-deal.map-sec--club:hover {
  fill: #6ea8ff;
}

.map-sec.has-deal.map-sec--upper:hover {
  fill: #ff8f6b;
}

.map-sec.is-active.map-sec--lower {
  fill: #7bebb4;
  stroke: #fff;
  stroke-width: 1.15;
}

.map-sec.is-active.map-sec--club {
  fill: #a8c9ff;
  stroke: #fff;
  stroke-width: 1.15;
}

.map-sec.is-active.map-sec--upper {
  fill: #ffc0a8;
  stroke: #fff;
  stroke-width: 1.15;
}

.map-sec.is-dimmed {
  opacity: 0.18;
}

.map-sec.has-deal.is-dimmed {
  pointer-events: none;
}

.map-label.is-dimmed {
  opacity: 0.2;
}

.map-label {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.12px;
  fill: #d0d0d0;
  pointer-events: none;
}

.map-label.is-deal {
  font-weight: 800;
  fill: #1c160c;
}

.field-turf {
  fill: url(#turf-grad);
}

.field-ez {
  fill: url(#ez-grad);
}

.field-lines {
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 0.6;
}

.field-minor {
  stroke-width: 0.28;
  stroke: rgba(255, 255, 255, 0.38);
}

.field-hash {
  stroke-width: 0.4;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-dasharray: 1.2 1.6;
}

.field-spot {
  fill: #fff;
  stroke: none;
}

.field-yard {
  font-family: var(--font-heading);
  font-size: 5.2px;
  font-weight: 800;
  fill: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.field-yard.is-50 {
  font-size: 6.4px;
}

.field-yard.flip {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(180deg);
}

.field-ez-text {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  fill: rgba(255, 255, 255, 0.86);
  pointer-events: none;
}

.map-sideline {
  font-family: var(--font-heading);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: #7a7368;
  pointer-events: none;
}

.colonnade {
  fill: #3a3a36;
  stroke: #2a2a26;
  stroke-width: 0.6;
}

.map-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.best-deal-chip {
  margin-left: auto;
  height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: rgb(255 255 255 / 0.86);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bowl,
.bowl.mid,
.bowl.field {
  display: none;
}

.map-pins {
  margin-top: 14px;
}

.sec-picker {
  display: grid;
  gap: 10px;
}

.sec-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
}

.sec-picker-title {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.55);
}

.sec-picker-title em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgb(255 255 255 / 0.42);
}

.sec-picker-active {
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cat-accent, #fff);
}

.sec-picker-hint {
  font-size: 11px;
  color: rgb(255 255 255 / 0.35);
}

.sec-clear {
  appearance: none;
  border: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.78);
  border-radius: 999px;
  height: 28px;
  padding: 0 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.sec-clear:hover {
  border-color: rgb(255 255 255 / 0.32);
  color: #fff;
  background: rgb(255 255 255 / 0.1);
}

.sec-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 7px;
}

.sec-chip {
  --cat-accent: #9aa3b2;
  appearance: none;
  display: grid;
  gap: 2px;
  justify-items: start;
  padding: 9px 10px 8px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--cat-accent) 28%, rgb(255 255 255 / 0.08));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--cat-accent) 16%, transparent), transparent 70%),
    rgb(12 12 12 / 0.88);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.sec-chip--all {
  --cat-accent: #c8cdd6;
}

.sec-chip--lower {
  --cat-accent: #3ecf8e;
}

.sec-chip--club {
  --cat-accent: #6ea8ff;
}

.sec-chip--upper {
  --cat-accent: #ff8f6b;
}

.sec-chip:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--cat-accent) 55%, #fff);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--cat-accent) 24%, transparent), transparent 72%),
    rgb(16 16 16 / 0.94);
}

.sec-chip.is-active {
  border-color: color-mix(in srgb, var(--cat-accent) 78%, #fff);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--cat-accent) 40%, transparent);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--cat-accent) 32%, transparent), transparent 70%),
    rgb(18 18 18 / 0.96);
}

.sec-chip-id {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.sec-chip-from {
  font-size: 10px;
  font-weight: 600;
  color: color-mix(in srgb, var(--cat-accent) 70%, #fff);
  opacity: 0.9;
}

.sec-chip--all .sec-chip-from::after {
  content: " open";
  font-weight: 500;
  opacity: 0.7;
}

.sec-chip:not(.sec-chip--all) .sec-chip-from::before {
  content: "from ";
  opacity: 0.65;
  font-weight: 500;
}

.map-pin {
  display: none;
}

.empty {
  background: #fff;
  border: 1px dashed var(--color-border);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-secondary);
}

.empty h3 {
  margin-bottom: 6px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  padding: 18px;
}

.split,
.watch-grid,
.intrigue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.confirmed-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirmed-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.confirmed-list b {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
}

.confirmed-list span {
  color: var(--color-heading);
}

.tba-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tba-item,
.tl-item {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  padding: 16px;
}

.tba-item .when,
.tl-item .date {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-link);
  margin-bottom: 6px;
}

.tba-item p,
.tl-item p,
.intrigue-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.venue-visual {
  min-height: 220px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgb(11 31 74 / 0.28), rgb(11 31 74 / 0.72)),
    repeating-linear-gradient(90deg, #f26522 0 14px, #0e8494 14px 28px);
  color: #fff;
  display: grid;
  place-items: end start;
  padding: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.method {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  padding: 8px 20px 8px 36px;
  color: var(--color-text-secondary);
}

.method li {
  margin: 12px 0;
}

.tl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-board {
  position: relative;
  overflow: hidden;
  overflow-anchor: none;
  padding: 72px 0 96px;
  background: #070707;
}

.faq-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--faq-media-h, 100%);
  pointer-events: none;
  z-index: 0;
}

.faq-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 52%;
  display: block;
}

.faq-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 72% at 50% 42%, rgb(7 7 7 / 0.42) 0%, rgb(7 7 7 / 0.12) 70%, transparent 100%),
    linear-gradient(180deg, #070707 0%, rgb(7 7 7 / 0.4) 16%, rgb(7 7 7 / 0.18) 42%, rgb(7 7 7 / 0.5) 78%, #070707 100%);
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.faq-layout > div {
  max-width: 580px;
  width: 100%;
}

.faq-board .match-intro {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 22px;
}

.faq-board .match-intro h2 {
  color: #fff;
}

.faq-board .match-intro p {
  color: rgb(255 255 255 / 0.62);
}

.faq-item {
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 14px;
  margin-bottom: 8px;
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: rgb(255 255 255 / 0.72);
  border-radius: 1px;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-a p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgb(255 255 255 / 0.62);
  font-size: 14px;
}

.legal-page .shop-top {
  padding-top: 100px;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.legal-tabs a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.14);
  color: rgb(255 255 255 / 0.62);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.legal-tabs a:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 0.28);
}

.legal-tabs a.is-active,
.legal-tabs a[aria-current="page"] {
  color: #0c0c0c;
  background: #d4c4a0;
  border-color: #d4c4a0;
}

.legal-body {
  max-width: 760px;
  padding-bottom: 40px;
}

.legal-doc {
  color: rgb(255 255 255 / 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.legal-doc h2 {
  margin: 28px 0 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-doc h3 {
  margin: 18px 0 8px;
  color: rgb(255 255 255 / 0.92);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 650;
}

.legal-doc p {
  margin: 0 0 12px;
}

.legal-doc ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
}

.legal-doc li {
  margin-bottom: 6px;
}

.legal-doc a {
  color: #d4c4a0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: #fff;
}

.legal-doc strong {
  color: rgb(255 255 255 / 0.92);
  font-weight: 650;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
  color: rgb(255 255 255 / 0.82);
  padding: 56px 0 28px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 14px;
}

.site-footer .wrap {
  display: block;
  position: relative;
  z-index: 1;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.22);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-btn:hover {
  color: #fff;
  border-color: rgb(212 196 160 / 0.55);
  background: rgb(255 255 255 / 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(220px, 1.2fr) minmax(200px, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-logo-mark {
  width: 34px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 0.35));
}

.footer-logo .brand-lockup strong {
  font-size: 20px;
}

.footer-logo .brand-lockup em {
  font-size: 10px;
}

.footer-logo img:not(.footer-logo-mark) {
  width: 148px;
  height: auto;
}

.footer-tag {
  margin-top: 14px;
  color: #d4c4a0;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-hold {
  margin-top: 6px;
  color: rgb(255 255 255 / 0.42);
  font-size: 13px;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: rgb(255 255 255 / 0.62);
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.06);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.footer-col a,
.footer-legal-links a {
  color: rgb(255 255 255 / 0.55);
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.footer-cta-note a {
  color: #d4c4a0;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.footer-col a:hover,
.footer-cta-note a:hover,
.footer-legal-links a:hover {
  color: #fff;
}

.footer-cta h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.25;
  margin-bottom: 8px;
}

.footer-cta p {
  color: rgb(255 255 255 / 0.5);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.footer-btn-wide {
  width: 100%;
  max-width: 280px;
  height: 46px;
  margin-bottom: 14px;
}

.footer-cta-note {
  margin: 0;
  font-size: 13px;
  color: rgb(255 255 255 / 0.45);
}

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  color: #c5c5c5;
}

.footer-trust-left,
.footer-trust-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.footer-trust-right {
  gap: 28px;
}

.pay-visa {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.pay-mc {
  position: relative;
  width: 32px;
  height: 22px;
  flex-shrink: 0;
}

.pay-mc i {
  position: absolute;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.pay-mc i:first-child {
  left: 0;
  background: #7d7d7d;
}

.pay-mc i:last-child {
  left: 12px;
  background: #d4d4d4;
}

.pay-amex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border: 1px solid #c2c2c2;
  border-radius: 1px;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #d0d0d0;
}

.pay-amex span {
  display: block;
  text-align: center;
}

.pay-apay,
.pay-gpay {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d0d0d0;
  line-height: 1;
}

.pay-apay svg {
  width: 16px;
  height: 16px;
  display: block;
}

.pay-gpay svg {
  width: 17px;
  height: 17px;
  display: block;
}

.pay-apay em,
.pay-gpay em {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.pay-ticketnetwork {
  display: inline-block;
  width: 108px;
  height: 40px;
  flex-shrink: 0;
  background-color: #c8c8c8;
  -webkit-mask: url("assets/ticketnetwork.png") center / contain no-repeat;
  mask: url("assets/ticketnetwork.png") center / contain no-repeat;
}

.pay-virtuoso {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #c8c8c8;
}

.pay-virtuoso-name {
  position: relative;
  font-family: "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  padding-right: 0.28em;
}

.pay-virtuoso-name span {
  position: relative;
}

.pay-virtuoso-name span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.pay-virtuoso-sub {
  margin-top: 5px;
  font-family: var(--font-heading);
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.72;
}

.pay-signature {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #c8c8c8;
}

.pay-signature-name {
  font-family: "Times New Roman", Times, Palatino, serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pay-signature-sub {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.72;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.footer-legal p,
.footer-legal-links {
  color: rgb(255 255 255 / 0.4);
  font-size: 12px;
  margin: 0;
}

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

.shop-page {
  padding-top: 88px;
  padding-bottom: 64px;
}

.pn-empty {
  text-align: center;
  max-width: 440px;
  margin: 56px auto 32px;
  padding: 36px 28px;
  border-radius: 20px;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pn-empty-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  color: #d4c4a0;
  background: rgb(212 196 160 / 0.12);
  border: 1px solid rgb(212 196 160 / 0.22);
}

.pn-empty h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: #fff;
}

.pn-empty p {
  color: rgb(255 255 255 / 0.55);
  margin: 0 0 22px;
  line-height: 1.45;
}

.pn-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pn-empty-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.pn-empty-secondary:hover {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.06);
}

.pn-expire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgb(190 18 60 / 0.16);
  border: 1px solid rgb(254 205 211 / 0.28);
  border-radius: 10px;
  color: #fecdd3;
  font-size: 13px;
  margin-bottom: 16px;
}

.pn-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.pn-main {
  min-width: 0;
}

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

.pn-list-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.pn-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(212 196 160 / 0.18), rgb(255 138 43 / 0.12));
  border: 1px solid rgb(212 196 160 / 0.28);
  color: rgb(255 255 255 / 0.88);
  font-size: 14px;
}

.pn-timer strong {
  font-variant-numeric: tabular-nums;
  color: #ffe29a;
}

.pn-timer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8a2b;
  box-shadow: 0 0 0 3px rgb(255 138 43 / 0.2);
  flex-shrink: 0;
  animation: cd-blink 1.6s ease-in-out infinite;
}

.pn-timer.is-urgent {
  background: linear-gradient(135deg, rgb(190 18 60 / 0.35), rgb(127 29 29 / 0.28));
  border-color: rgb(254 205 211 / 0.35);
}

.pn-timer.is-urgent strong {
  color: #fecdd3;
}

.pn-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pn-line--bowl {
  border-color: rgb(255 122 69 / 0.28);
  background:
    linear-gradient(120deg, rgb(255 122 69 / 0.08), transparent 42%),
    rgb(12 12 12 / 0.55);
}

.pn-thumb {
  position: relative;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgb(255 255 255 / 0.12);
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pn-thumb:hover {
  border-color: rgb(212 196 160 / 0.45);
  transform: translateY(-1px);
}

.pn-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.pn-thumb-badge {
  position: absolute;
  left: 6px;
  bottom: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.16);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pn-matchup {
  margin: 0 0 8px;
  min-width: 0;
}

.pn-event-teams {
  gap: 8px;
}

.pn-event-teams .event-team-name {
  font-size: 14px;
}

.pn-event-teams .event-logos {
  gap: 6px;
}

.pn-event-teams .event-logos img {
  width: 40px;
  height: 40px;
}

.pn-event-teams .event-vs {
  font-size: 15px;
}

.pn-matchup--bowl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pn-bowl-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.pn-bowl-mark img {
  width: 24px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.35));
}

.pn-bowl-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}

.pn-body {
  min-width: 0;
}

.pn-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.82);
}

.pn-pay--checkout {
  margin: 0 0 14px;
  padding: 10px 0 0;
  border-top: 0;
}

.pn-pay .pay-visa {
  font-size: 14px;
}

.pn-pay .pay-amex {
  transform: scale(0.92);
  transform-origin: left center;
}

.pn-pay .pay-apay,
.pn-pay .pay-gpay {
  gap: 3px;
}

.pn-meta {
  font-size: 13px;
  color: rgb(255 255 255 / 0.55);
  margin: 0 0 2px;
}

.pn-venue {
  font-size: 12px;
  color: rgb(255 255 255 / 0.38);
  margin: 0 0 10px;
}

.pn-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pn-facts span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.72);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}

.pn-cat {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgb(212 196 160 / 0.16);
  color: #d4c4a0;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.pn-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pn-line-total {
  font-family: var(--font-heading);
  font-weight: 700;
  min-width: 72px;
  text-align: right;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.pn-remove,
.pn-clear {
  border: 0;
  background: none;
  color: rgb(255 255 255 / 0.45);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.pn-remove {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.06);
  font-size: 18px;
  line-height: 1;
}

.pn-remove:hover,
.pn-clear:hover {
  color: #fecdd3;
}

.pn-clear:hover {
  color: #ff8a8a;
}

.pn-recap {
  position: sticky;
  top: 88px;
  background: rgb(12 12 12 / 0.55);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pn-recap-kicker {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4c4a0;
}

.pn-recap h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: #fff;
}

.pn-recap-count {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgb(255 255 255 / 0.45);
}

.pn-recap dl {
  margin: 0 0 18px;
}

.pn-recap dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 7px 0;
}

.pn-recap dt {
  color: rgb(255 255 255 / 0.5);
}

.pn-recap dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.pn-offert {
  color: #3ecf8e !important;
}

.pn-total {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  margin-top: 6px;
  padding-top: 12px;
}

.pn-total dt {
  font-weight: 700;
  color: #fff;
}

.pn-total dd {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: #ffe29a;
  font-variant-numeric: tabular-nums;
}

.pn-recap .btn,
.pn-checkout-cta {
  width: 100%;
  min-height: 48px;
  height: auto;
}

.pn-checkout-cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #ffe29a, #d4c4a0 55%, #b89a62);
  color: #111;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(212 196 160 / 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.pn-checkout-cta:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.pn-checkout-cta:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  filter: none;
}

.pn-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 0.55);
}

.pn-continue:hover {
  color: #fff;
}

.pn-guarantees {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
  color: rgb(255 255 255 / 0.5);
}

.pn-guarantees li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pn-guarantees .pn-g-ico {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #6ee7b7;
}

.pn-guarantees .pn-g-ico svg {
  display: block;
  width: 16px;
  height: 16px;
}

.chk-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.chk-card {
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}

.chk-card h2 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.chk-field {
  margin-bottom: 12px;
}

.chk-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-heading);
}

.chk-field input,
.chk-field select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--color-filter-border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
}

.chk-field input:focus,
.chk-field select:focus {
  outline: none;
  border-color: var(--color-filter-active-border);
  box-shadow: 0 0 0 3px rgb(14 132 148 / 0.22);
}

.chk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.chk-secure {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-price);
}

.chk-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.chk-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.chk-brands {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #6d6d6d;
}

.chk-brands span {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 8px;
  background: #fff;
}

.order-confirm {
  max-width: 920px;
  margin: 0 auto;
}

.order-confirm-head {
  text-align: center;
  margin-bottom: 28px;
}

.order-confirm-head .order-ok {
  margin-left: auto;
  margin-right: auto;
}

.order-confirm-head h2 {
  margin-bottom: 8px;
}

.order-confirm-head > p {
  color: rgb(255 255 255 / 0.62);
  max-width: 520px;
  margin: 0 auto 10px;
}

.order-confirm-rule {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #d4c4a0 !important;
}

.order-pass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.confirm-pass {
  --c1: #00338d;
  --c2: #0076b6;
  --c3: #c60c30;
  background: rgb(12 12 12 / 0.48);
  border: 1px solid color-mix(in srgb, var(--c1) 45%, rgb(255 255 255 / 0.12));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.28);
}

.confirm-pass-visual {
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--c2) 55%, transparent), transparent 50%),
    radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--c1) 60%, transparent), transparent 45%),
    linear-gradient(165deg, #0b1020, color-mix(in srgb, var(--c1) 40%, #0b1020));
  padding: 14px;
}

.confirm-pass-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.confirm-live-ticket {
  border-radius: 14px;
  padding: 16px 14px 12px;
  background:
    linear-gradient(160deg, var(--c1) 0%, var(--c2) 55%, color-mix(in srgb, var(--c3) 70%, #0b1020) 100%);
  color: #fff;
  text-align: center;
}

.confirm-live-num {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.confirm-live-qr {
  width: 132px !important;
  height: 132px !important;
  margin: 0 auto 8px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
}

.confirm-live-scan {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confirm-live-dash {
  border: 0;
  border-top: 1.5px dashed rgb(255 255 255 / 0.4);
  margin: 0 0 12px;
}

.confirm-live-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.confirm-live-venue {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.confirm-live-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.14);
  text-align: left;
}

.confirm-live-meta em {
  display: block;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}

.confirm-live-meta b {
  font-size: 13px;
  font-weight: 700;
}

.confirm-live-barcode {
  height: 36px;
  margin: 0 8px 6px;
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.confirm-live-bartext {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.9;
}

.confirm-pass-barcode-label {
  font-size: 11px !important;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 0.45) !important;
}

.confirm-pass-meta {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.confirm-pass-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--c2) 70%, #fff);
}

.confirm-pass-meta strong {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #fff;
}

.confirm-pass-meta span {
  font-size: 13px;
  color: rgb(255 255 255 / 0.55);
}

.confirm-pass-code {
  font-family: var(--font-heading);
  font-size: 12px !important;
  letter-spacing: 0.08em;
  color: #d4c4a0 !important;
  margin-top: 4px;
}

.confirm-pass-together {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgb(62 207 142 / 0.14);
  color: #6ee7b7 !important;
  font-size: 11px !important;
  font-weight: 700;
}

.order-confirm-lines {
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 14px;
  padding: 8px 16px;
  margin-bottom: 18px;
}

.order-confirm .btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.order-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 28px;
}

.order-ok {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #dcfce7;
  color: #067d45;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.order-box h2 {
  margin-bottom: 6px;
}

.order-box > p {
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

.order-mail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  justify-content: center;
}

.order-mail-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #d4c4a0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-lines {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-bottom: 16px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
}

.btn-ghost {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}

.info-body > section {
  padding: 28px 0 8px;
}

.info-page .section-head h2,
.info-page .card h3,
.info-page .tba-item h3,
.info-page .tl-item h3,
.info-page .method strong,
.bowl-page .section-head h2,
.bowl-page .card h3,
.bowl-page .tba-item h3,
.bowl-page .tl-item h3,
.bowl-page .method strong,
.event-page .map-card h3,
.shop-page h2,
.pn-line h2,
.pn-recap h2,
.chk-card h2,
.order-box h2,
.empty h3 {
  color: #fff;
}

.info-page .section-head p,
.info-page .card p,
.info-page .tba-item p,
.info-page .tl-item p,
.info-page .intrigue-card p,
.info-page .method,
.bowl-page .section-head p,
.bowl-page .card p,
.bowl-page .tba-item p,
.bowl-page .tl-item p,
.bowl-page .method,
.event-page .sched-meta,
.event-page .map-caption,
.pn-empty p,
.order-box > p {
  color: rgb(255 255 255 / 0.58);
}

.event-page .promo-banner {
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.7);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.event-page .promo-banner strong {
  color: #fff;
}

.event-page .ended-banner {
  background: rgb(12 12 12 / 0.48);
  border-color: rgb(255 255 255 / 0.18);
  color: rgb(255 255 255 / 0.7);
}

.event-page .best-deal-chip {
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.86);
  border: 1px solid rgb(255 255 255 / 0.18);
}

.event-page .listing {
  border-radius: 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.event-page .listing:hover {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.08);
}

.event-page .listing.is-open {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.08);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
}

.event-page .listing-row {
  padding: 14px 16px;
}

.event-page .listing-cat {
  border-color: color-mix(in srgb, var(--cat-accent) 50%, transparent);
  background: color-mix(in srgb, var(--cat-accent) 16%, transparent);
}

.event-page .listing-price {
  color: #e8dcc0;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.event-page .listing-each {
  color: rgb(255 255 255 / 0.38);
}

.event-page .listing-zone {
  color: rgb(255 255 255 / 0.38);
}

.event-page .listing-qty {
  color: rgb(255 255 255 / 0.42);
}

.event-page .listing-together {
  color: #6ee7b7;
}

.pn-seat-line .listing-together {
  display: inline-flex;
  vertical-align: -2px;
  margin-left: 1px;
}

.event-page .deal.amazing {
  background: rgb(16 185 129 / 0.16);
  color: #6ee7b7;
}

.event-page .deal.great {
  background: rgb(52 211 153 / 0.12);
  color: #86efac;
}

.event-page .qty-stepper {
  height: 38px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.18);
  overflow: hidden;
}

.event-page .qty-stepper button {
  height: 38px;
  background: transparent;
  color: #fff;
}

.event-page .qty-stepper button:hover:not(:disabled) {
  background: rgb(255 255 255 / 0.12);
  color: #fff;
}

.event-page .cart-add {
  border-top-color: rgb(255 255 255 / 0.1);
}

.event-page .btn-primary {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.06);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.event-page .btn-primary:hover {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.4);
  color: #fff;
}

.event-page .map-card h3 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(255 255 255 / 0.55);
}

.event-page .sched-meta {
  margin-bottom: 10px;
  font-size: 12px;
}

.info-page .card,
.info-page .method,
.info-page .tba-item,
.info-page .tl-item,
.bowl-page .card,
.bowl-page .method,
.bowl-page .tba-item,
.bowl-page .tl-item,
.listing,
.map-card,
.chk-card,
.order-box,
.empty {
  background: rgb(12 12 12 / 0.48);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.filter-pill,
.sort-toggle {
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sort-toggle button {
  color: #fff;
}

.filter-pill[data-selected="true"],
.filter-pill.is-open,
.sort-toggle button[aria-pressed="true"] {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.4);
  color: #fff;
}

.filter-dropdown,
.filter-dropdown button {
  background: transparent;
  color: #fff;
  border-color: transparent;
}

.filter-dropdown {
  background: rgb(12 12 12 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.1);
}

.filter-dropdown button:hover,
.filter-dropdown button[data-selected="true"] {
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
}

.listing-row {
  background: transparent;
}

.listing-seat,
.listing-price,
.pn-line-total,
.pn-recap dd,
.pn-total dt,
.pn-total dd,
.confirmed-list span {
  color: #fff;
}

.tba-item .when,
.tl-item .date,
.info-page .kicker {
  color: #d4c4a0;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-add,
.qty-stepper,
.qty-stepper button {
  background: rgb(255 255 255 / 0.04);
  border-color: rgb(255 255 255 / 0.12);
  color: #fff;
}

.qty-stepper output {
  color: #fff;
  border-color: rgb(255 255 255 / 0.12);
}

.chip {
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.7);
}

.pn-cat {
  background: rgb(212 196 160 / 0.16);
  color: #d4c4a0;
}

.pn-remove {
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.55);
}

.pn-meta,
.pn-recap dt,
.pn-guarantees,
.chk-hint {
  color: rgb(255 255 255 / 0.5);
}

.chk-field label {
  color: rgb(255 255 255 / 0.72);
}

.chk-field input,
.chk-field select {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.14);
  color: #fff;
}

.pn-total,
.pn-guarantees,
.order-lines {
  border-color: rgb(255 255 255 / 0.1);
}

.btn-primary {
  background: #d4c4a0;
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #e2d4b4;
  color: #1a1a1a;
}

.cart-add-total strong,
.pn-offert,
.chk-secure {
  color: #d4c4a0;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 92px 0 24px;
    min-height: 0;
  }

  .hero-media {
    height: 1040px;
  }

  .home-stage {
    padding-bottom: 56px;
  }

  .match-board {
    margin-top: 0;
    padding: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }

  .trust-grid li:nth-child(2) {
    border-right: 0;
  }

  .trust-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }

  .hero-stage,
  .hero-offer {
    grid-template-columns: 1fr;
  }

  .hero-offer-art {
    min-height: 210px;
  }

  .hero-inner h1 {
    font-size: 2.15rem;
  }

  .hero-when {
    margin-bottom: 24px;
  }

  .brand span:not(.brand-lockup) {
    display: none;
  }

  .site-header nav a {
    display: none;
  }

  .site-header nav a.nav-hot {
    display: inline-flex;
  }

  .cart-btn-label {
    display: none;
  }

  .pn-grid,
  .chk-grid,
  .chk-row {
    grid-template-columns: 1fr;
  }

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

  .pn-recap {
    position: static;
  }

  .pn-line {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .pn-thumb {
    width: 72px;
  }

  .pn-event-teams {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 6px;
  }

  .pn-event-teams .event-team-name,
  .pn-event-teams .event-team-name:first-child,
  .pn-event-teams .event-team-name:last-child {
    text-align: left;
    font-size: 13px;
  }

  .pn-event-teams .event-logos {
    order: -1;
  }

  .pn-event-teams .event-logos img {
    width: 34px;
    height: 34px;
  }

  .pn-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255 / 0.08);
  }

  .pn-list-head {
    align-items: center;
  }

  .search {
    max-width: none;
  }

  .event-card {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px 10px 10px;
    align-items: center;
  }

  .event-date {
    padding: 8px 4px;
  }

  .event-date .day {
    font-size: 18px;
  }

  .event-team-name {
    font-size: 12px;
  }

  .event-teams {
    gap: 6px;
  }

  .event-logos {
    gap: 4px;
  }

  .event-logos img {
    width: 28px;
    height: 28px;
  }

  .event-vs {
    font-size: 14px;
  }

  .event-matchup p {
    font-size: 11px;
    margin-top: 4px;
  }

  .from-price {
    font-size: 14px;
  }

  .event-side {
    gap: 4px;
  }

  .event-card--intrigue {
    margin-bottom: 10px;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .event-card--intrigue .event-side--intrigue {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255 / 0.08);
    text-align: left;
  }

  .event-side--intrigue .countdown--row {
    width: 100%;
  }

  .event-side--intrigue .type-pill--locked {
    align-self: flex-start;
  }

  .event-mark-locked {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .countdown--row .cd-cell {
    padding: 8px 2px 7px;
  }

  .countdown--row .cd-cell b {
    font-size: 1.05rem;
  }

  .countdown--row .cd-cell span {
    font-size: 8px;
    margin-top: 3px;
    letter-spacing: 0.08em;
  }

  .type-pill--locked {
    font-size: 10px;
    padding: 4px 8px;
  }

  .event-top.has-hero {
    min-height: 320px;
    padding: 96px 0 64px;
  }

  .event-heading {
    gap: 12px;
  }

  .event-heading-logos img {
    width: 36px;
    height: 36px;
  }

  .event-top.has-hero .event-heading-logos img {
    width: 44px;
    height: 44px;
  }

  .ticket-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ticket-layout > * {
    min-width: 0;
  }

  .map-card {
    position: static;
    order: -1;
    width: 100%;
    max-width: 100%;
  }

  .sec-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  }

  .sort-toggle {
    margin-left: 0;
  }

  .best-deal-chip {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid li,
  .trust-grid li:nth-child(2),
  .trust-grid li:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }

  .trust-grid li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .footer-cta {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-cta {
    max-width: none;
  }

  .footer-btn-wide {
    max-width: none;
  }

  .footer-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 32px;
    padding: 18px 0;
  }

  .footer-trust-left,
  .footer-trust-right {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@keyframes lx-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes lx-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lx-shine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

/* —— Super Bowl landing —— */
.bowl-page {
  background: var(--ink);
  color: #f4f1ea;
  padding-top: 0;
}

.lx-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.lx-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
  transform: scale(1.04);
  animation: lx-kenburns 32s ease-out forwards;
}

.lx-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.12) 62%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, transparent 30%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.72) 84%, #050505 100%);
  pointer-events: none;
}

.lx-hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - clamp(72px, 16vw, 220px)));
  margin-left: clamp(72px, 14vw, 200px);
  margin-right: auto;
  padding: 120px 0 80px;
  animation: lx-fade-up 0.9s ease-out both;
}

.lx-hero-copy {
  max-width: 36rem;
  margin-left: 0;
}

.lx-local {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 100%;
}

.lx-local a {
  color: rgb(255 255 255 / 0.55);
}

.lx-local a:hover {
  color: #fff;
}

.lx-local-cta {
  padding: 8px 14px;
  border: 1px solid rgb(212 175 55 / 0.45);
  border-radius: 999px;
  color: var(--champagne) !important;
  flex-shrink: 0;
}

.lx-eyebrow,
.lx-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.lx-title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #fff;
  margin: 0 0 18px;
}

.lx-title span,
.lx-title em {
  display: block;
}

.lx-title em {
  font-style: normal;
  color: var(--champagne);
}

.lx-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgb(255 255 255 / 0.72);
  margin: 0 0 28px;
  max-width: 22rem;
}

.lx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 22px;
}

.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.lx-btn-gold {
  background: linear-gradient(180deg, #e8d5a8 0%, var(--gold) 55%, #b8922e 100%);
  color: #1a1408;
  border: 0;
  position: relative;
  overflow: hidden;
}

.lx-btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.35), transparent);
  animation: lx-shine 4.5s ease-in-out infinite;
}

.lx-btn-gold:hover {
  color: #1a1408;
  filter: brightness(1.05);
}

.lx-btn-ghost {
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.28);
  color: #fff;
}

.lx-btn-ghost:hover {
  border-color: rgb(255 255 255 / 0.55);
  color: #fff;
  background: rgb(255 255 255 / 0.05);
}

.lx-disclaimer {
  color: rgb(255 255 255 / 0.38);
  font-size: 12px;
  max-width: 36rem;
}

.lx-status {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  background: #080808;
}

.lx-status-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
  list-style: none;
  margin: 0;
}

.lx-status-row span {
  display: block;
  color: rgb(255 255 255 / 0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lx-status-row strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.lx-block {
  padding: 96px 0 40px;
}

.lx-h {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
}

.lx-lead {
  color: rgb(255 255 255 / 0.58);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 40px;
}

.lx-exp-rail {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.lx-exp-wide {
  grid-column: 1 / -1;
  min-height: 420px;
}

.lx-exp {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  color: inherit;
  isolation: isolate;
}

.lx-exp img,
.lx-show > img,
.lx-there > img,
.lx-final-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lx-exp:hover img {
  transform: scale(1.04);
}

.lx-exp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.lx-exp div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px 24px;
}

.lx-exp span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lx-exp strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.lx-exp p,
.lx-cat p {
  color: rgb(255 255 255 / 0.62);
  font-size: 14px;
}

.lx-show,
.lx-there {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 24px 0 0;
}

.lx-show::after,
.lx-there::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.35) 55%, rgba(5, 5, 5, 0.2) 100%);
  z-index: 1;
}

.lx-show-copy,
.lx-there-copy {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  max-width: 560px;
}

.lx-tba {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 24px 0 28px;
}

.lx-tba dt {
  color: rgb(255 255 255 / 0.42);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lx-tba dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}

.lx-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lx-cat {
  display: flex;
  flex-direction: column;
  background: #0c0c0c;
  border: 1px solid rgb(255 255 255 / 0.08);
  overflow: hidden;
}

.lx-cat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lx-cat div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}

.lx-cat h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.lx-cat strong {
  color: var(--champagne);
  font-size: 14px;
  font-weight: 600;
}

.lx-avail {
  color: rgb(255 255 255 / 0.4);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lx-cat .lx-btn {
  margin-top: auto;
  width: 100%;
}


.bowl-intro {
  position: relative;
  min-height: min(88svh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.bowl-intro-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 35%;
}

.bowl-intro-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, transparent 30%, rgba(5, 5, 5, 0.35) 70%, #050505 100%);
  pointer-events: none;
}

.bowl-intro-layout {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - clamp(32px, 6vw, 96px)));
  margin-inline: clamp(28px, 5vw, 72px) auto;
  padding: 108px 0 56px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(248px, 300px);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.bowl-intro-copy {
  max-width: 32rem;
  padding-bottom: 4px;
}

.bowl-intro-copy .back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgb(255 255 255 / 0.6);
}

.bowl-intro-copy .back-link:hover {
  color: #fff;
}

.bowl-intro-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne, #d4c4a0);
  margin: 0 0 14px;
}

.bowl-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 16px;
  max-width: 12ch;
}

.bowl-intro-lead {
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 34rem;
}

.bowl-intro-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bowl-intro-points li {
  position: relative;
  padding-left: 18px;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  font-weight: 500;
}

.bowl-intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold, #d4af37);
}

.bowl-intro-note {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.38);
  font-size: 12px;
  max-width: 28rem;
}

.bowl-night-card {
  width: 100%;
  max-width: none;
  padding: 20px 18px 16px;
  border-radius: 18px;
  background: rgb(10 10 10 / 0.78);
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bowl-night-kicker {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne, #d4c4a0);
}

.bowl-night-head h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bowl-night-head p {
  margin: 0 0 14px;
  color: rgb(255 255 255 / 0.55);
  font-size: 13px;
}

.bowl-night-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bowl-night-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.bowl-night-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.bowl-night-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.06);
  color: var(--champagne, #d4c4a0);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bowl-night-icon-am {
  background: #fff;
  padding: 6px;
}

.bowl-night-icon-am img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bowl-night-icon-mark {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.28);
}

.bowl-night-icon-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.bowl-night-icon-pic {
  padding: 0;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgb(255 255 255 / 0.12);
}

.bowl-night-icon-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.bowl-night-list strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.bowl-am-wordmark {
  display: block;
  height: 14px;
  width: auto;
  color: #fff;
  filter: brightness(0) invert(1);
}

.bowl-night-list p {
  margin: 0;
  color: rgb(255 255 255 / 0.5);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .bowl-intro-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 28px;
    padding: 100px 0 48px;
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .bowl-night-card {
    order: 2;
    max-width: 420px;
  }

  .bowl-intro-copy {
    order: 1;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .bowl-intro {
    min-height: 0;
    align-items: flex-end;
  }

  .bowl-intro-bg {
    object-position: 62% 30%;
  }

  .bowl-intro-veil {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.82) 55%, rgba(5, 5, 5, 0.55) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, transparent 28%, rgba(5, 5, 5, 0.45) 68%, #050505 100%);
  }

  .bowl-intro-layout {
    width: min(1180px, calc(100% - 28px));
    margin-inline: auto;
    padding: 92px 0 36px;
    gap: 22px;
  }

  .bowl-intro-title {
    max-width: none;
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1.05;
  }

  .bowl-intro-lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .bowl-intro-points li {
    font-size: 13px;
  }

  .bowl-intro-note {
    font-size: 11px;
    line-height: 1.45;
    max-width: none;
  }

  .bowl-night-card {
    max-width: none;
    padding: 18px 16px 14px;
  }

  .bowl-night-list li {
    gap: 12px;
  }
}

.bowl-shop-only {
  padding: 40px 0 72px;
}

.bowl-offers {
  position: relative;
  z-index: 2;
  padding: 48px 0 88px;
}

.bowl-offers-head {
  max-width: 38rem;
  margin-bottom: 34px;
}

.bowl-offers-kicker {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne, #d4c4a0);
}

.bowl-offers-head h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.bowl-offers-head .event-sub {
  color: rgb(255 255 255 / 0.55);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.bowl-offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: stretch;
}

.bowl-offer {
  --offer-accent: var(--champagne, #d4c4a0);
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.03), transparent 28%),
    linear-gradient(165deg, rgb(20 20 20 / 0.98), rgb(8 8 8 / 0.96));
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow:
    0 18px 48px rgb(0 0 0 / 0.35),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  animation: bowl-offer-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--offer-delay, 0ms);
}

.bowl-offer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--offer-accent), transparent 75%);
  opacity: 0.85;
  z-index: 3;
  pointer-events: none;
}

.bowl-offer.is-featured {
  border-color: color-mix(in srgb, var(--offer-accent) 42%, rgb(255 255 255 / 0.12));
  box-shadow:
    0 24px 56px rgb(0 0 0 / 0.42),
    0 0 0 1px color-mix(in srgb, var(--offer-accent) 28%, transparent),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.bowl-offer.is-featured::after {
  content: "Most picked";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgb(8 8 8 / 0.72);
  border: 1px solid color-mix(in srgb, var(--offer-accent) 55%, transparent);
  color: var(--offer-accent);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.bowl-offer:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--offer-accent) 62%, transparent);
  box-shadow:
    0 32px 70px rgb(0 0 0 / 0.5),
    0 0 48px color-mix(in srgb, var(--offer-accent) 28%, transparent);
}

.bowl-offer-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #0a0a0a;
}

.bowl-offer-media img,
.bowl-offer-media .bowl-offer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(1.18) contrast(1.06);
}

.bowl-offer-media .bowl-offer-video {
  display: block;
  pointer-events: none;
}

.bowl-offer:hover .bowl-offer-media img,
.bowl-offer:hover .bowl-offer-media .bowl-offer-video {
  transform: scale(1.1);
}

.bowl-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.02) 0%, transparent 32%, rgb(8 8 8 / 0.9) 100%),
    linear-gradient(115deg, color-mix(in srgb, var(--offer-accent) 42%, transparent), transparent 52%);
  pointer-events: none;
}

.bowl-offer-index {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgb(255 255 255 / 0.14);
  pointer-events: none;
  transition: color 0.3s ease;
}

.bowl-offer:hover .bowl-offer-index {
  color: color-mix(in srgb, var(--offer-accent) 55%, rgb(255 255 255 / 0.18));
}

.bowl-offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--offer-accent) 92%, #111);
  color: #111;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.28);
}

.bowl-offer-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 4px 18px 18px;
  flex: 1;
}

.bowl-offer-vibe {
  margin: 0;
  color: color-mix(in srgb, var(--offer-accent) 78%, #fff);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bowl-offer-body h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.bowl-offer-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 0;
  color: rgb(255 255 255 / 0.55);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bowl-offer-partner-logo {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 1px 6px rgb(0 0 0 / 0.35));
}

.bowl-offer-blurb {
  margin: 0;
  color: rgb(255 255 255 / 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.bowl-offer-perks {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bowl-offer-perks li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.86rem;
  line-height: 1.3;
  font-weight: 500;
}

.bowl-offer-perk-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--offer-accent);
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.bowl-offer-perk-ico svg,
.bowl-offer-perk-svg {
  display: block;
  width: 18px;
  height: 18px;
}

.bowl-offer-foot {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.bowl-offer-price {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: end;
}

.bowl-offer-price > span {
  grid-column: 1 / -1;
  color: rgb(255 255 255 / 0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bowl-offer-price strong {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bowl-offer-price em {
  color: rgb(255 255 255 / 0.42);
  font-style: normal;
  font-size: 12px;
  padding-bottom: 3px;
}

.bowl-offer-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--offer-accent), color-mix(in srgb, var(--offer-accent) 55%, #fff));
  color: #111;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 10px 28px color-mix(in srgb, var(--offer-accent) 42%, transparent),
    0 0 24px color-mix(in srgb, var(--offer-accent) 22%, transparent);
}

.bowl-offer-cta:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.bowl-offer-cta:disabled {
  opacity: 0.7;
  cursor: wait;
}

.bowl-offer--early .bowl-offer-badge {
  background: linear-gradient(135deg, #2ee6c5, #7bffe8);
}

.bowl-offer--insured .bowl-offer-badge {
  background: linear-gradient(135deg, #ffc857, #ffe29a);
}

.bowl-offer--mid .bowl-offer-badge {
  background: linear-gradient(135deg, #ff7a45, #ffb088);
}

@keyframes bowl-offer-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .bowl-offer {
    grid-column: span 6;
  }

  .bowl-offer.is-featured {
    grid-column: span 12;
  }

  .bowl-offer.is-featured .bowl-offer-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 700px) {
  .bowl-offers {
    padding: 28px 0 56px;
  }

  .bowl-offers-head {
    margin-bottom: 22px;
  }

  .bowl-offer,
  .bowl-offer.is-featured {
    grid-column: span 12;
  }

  .bowl-offer:hover {
    transform: none;
  }

  .bowl-offer-media,
  .bowl-offer.is-featured .bowl-offer-media {
    aspect-ratio: 16 / 10;
  }

  .bowl-offer-body {
    padding: 16px 16px 18px;
    gap: 8px;
  }

  .bowl-offer-body h3 {
    font-size: 1.2rem;
  }

  .bowl-offer-blurb {
    font-size: 0.9rem;
  }

  .bowl-offer-partner-logo {
    height: 22px;
    width: auto;
    max-width: min(140px, 55vw);
  }

  .bowl-offer-price strong {
    font-size: 1.45rem;
  }
}

.bowl-more-bridge {
  margin: 56px 0 28px;
  text-align: center;
  color: #fff;
}

.bowl-more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.22);
  color: var(--champagne, #d4c4a0);
  text-decoration: none;
  animation: bowl-more-bob 1.6s ease-in-out infinite;
}

.bowl-more-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

@keyframes bowl-more-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.bowl-more-kicker {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne, #d4c4a0);
}

.bowl-more-bridge h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bowl-more-bridge > p:last-child {
  margin: 0 auto;
  max-width: 28rem;
  color: rgb(255 255 255 / 0.55);
  font-size: 0.95rem;
}

.bowl-hosp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bowl-hosp {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.28);
  animation: bowl-offer-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--hosp-delay, 0ms);
}

.bowl-hosp.is-sold {
  opacity: 0.92;
}

.bowl-hosp-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.bowl-hosp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bowl-hosp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 7px 11px 7px 9px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.18);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.bowl-hosp-badge-ico {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 3px;
  background:
    linear-gradient(currentColor 0 0) 3px 4px / 8px 1.5px no-repeat,
    linear-gradient(currentColor 0 0) 3px 7px / 8px 1.5px no-repeat,
    linear-gradient(currentColor 0 0) 3px 10px / 5px 1.5px no-repeat,
    rgb(0 0 0 / 0.06);
  box-shadow: inset 0 0 0 1.4px currentColor;
}

.bowl-hosp-badge--seat {
  color: #1a8f55;
}

.bowl-hosp-badge--hot {
  color: #d11b4a;
  border: 1px solid rgb(209 27 74 / 0.2);
}

.bowl-hosp-badge--hot .bowl-hosp-badge-ico {
  background:
    radial-gradient(circle at 50% 45%, currentColor 0 1.6px, transparent 1.8px),
    conic-gradient(from 0deg, transparent 0 20%, currentColor 0 25%, transparent 0 45%, currentColor 0 50%, transparent 0 70%, currentColor 0 75%, transparent 0);
  box-shadow: none;
  border-radius: 999px;
}

.bowl-hosp-sold-stamp {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgb(0 0 0 / 0.45);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.45);
}

.bowl-hosp-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
  flex: 1;
  color: #141414;
}

.bowl-hosp-body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bowl-hosp-body > p {
  margin: 0;
  color: #5c5c5c;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bowl-hosp-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bowl-hosp-perks li {
  position: relative;
  padding-left: 22px;
  color: #3a3a3a;
  font-size: 0.82rem;
  line-height: 1.35;
}

.bowl-hosp-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background:
    linear-gradient(#fff 0 0) center / 6px 1.5px no-repeat,
    linear-gradient(#fff 0 0) center / 1.5px 6px no-repeat,
    #9aa0a6;
}

.bowl-hosp-more {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  align-self: flex-start;
  cursor: pointer;
  color: #6b6b6b;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bowl-hosp-price {
  margin-top: auto;
  color: #141414;
  font-size: 0.92rem;
}

.bowl-hosp-price strong {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.bowl-hosp-price em {
  font-style: normal;
  font-weight: 700;
}

.bowl-hosp-plans {
  margin: -4px 0 0;
  color: #2a2a2a;
  font-size: 0.78rem;
  font-weight: 700;
}

.bowl-hosp-sold-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 auto !important;
  color: #6b6b6b !important;
  font-size: 0.88rem !important;
}

.bowl-hosp-sold-note::before {
  content: "×";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid #9aa0a6;
  color: #9aa0a6;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.bowl-hosp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bowl-hosp-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.bowl-hosp-cta.is-sold {
  background: #e8e8e8;
  color: #6b6b6b;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

@media (max-width: 980px) {
  .bowl-hosp {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .bowl-more-bridge {
    margin-top: 40px;
  }

  .bowl-hosp {
    grid-column: span 12;
  }
}

.bowl-shop-head {
  margin-bottom: 22px;
}

.bowl-shop-head h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.bowl-shop-head .event-sub {
  color: rgb(255 255 255 / 0.55);
}

.bowl-page .back-link {
  color: rgb(255 255 255 / 0.55);
}

.bowl-page .back-link:hover {
  color: #fff;
}

.lx-fine {
  color: rgb(255 255 255 / 0.38);
  font-size: 13px;
  margin: -24px 0 28px;
}

.lx-there .lx-h em {
  font-style: normal;
  color: var(--champagne);
}

.lx-there p {
  color: rgb(255 255 255 / 0.7);
  margin: 0 0 24px;
}

.lx-there .lx-btn {
  margin-bottom: 28px;
}

.lx-count {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.lx-count div {
  min-width: 64px;
}

.lx-count b {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.lx-count span {
  color: rgb(255 255 255 / 0.42);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lx-trust {
  padding: 40px 0;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.lx-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lx-trust-row strong {
  display: block;
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lx-trust-row span {
  color: rgb(255 255 255 / 0.45);
  font-size: 13px;
}

.lx-faq-wrap {
  max-width: 760px;
}

.lx-final {
  position: relative;
  min-height: 56svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 96px 0;
}

.lx-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  z-index: 1;
}

.lx-final .wrap {
  position: relative;
  z-index: 2;
}

.lx-final .lx-lead {
  margin-left: auto;
  margin-right: auto;
}

.bowl-page .info-body {
  opacity: 0.88;
  padding-top: 48px;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.bowl-page .card {
  background: #111;
  border-color: rgb(255 255 255 / 0.08);
}

.bowl-page .confirmed-list b {
  color: rgb(255 255 255 / 0.42);
}

.bowl-page .confirmed-list span {
  color: #fff;
}

.lx-exp {
  color: inherit;
}

#experience,
#hospitality,
#show,
#lx-faq,
#lx-there,
#lx-final,
#bowl-tickets {
  scroll-margin-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  .lx-hero-img,
  .lx-btn-gold::after {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .lx-exp-rail {
    grid-template-columns: 1fr 1fr;
  }

  .lx-exp-wide {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .lx-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .lx-status-row,
  .lx-trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .lx-local-cta {
    margin-left: 0;
  }

  .lx-show,
  .lx-there {
    min-height: 70svh;
  }
}

@media (max-width: 700px) {
  .lx-status-row,
  .lx-exp-rail,
  .lx-cat-grid,
  .lx-trust-row {
    grid-template-columns: 1fr;
  }

  .lx-exp-wide,
  .lx-exp {
    min-height: 300px;
  }

  .lx-hero-inner {
    padding: 100px 0 52px;
    width: min(720px, calc(100% - 48px));
    margin-left: 24px;
  }

  .lx-block {
    padding: 64px 0 24px;
  }
}

/* —— Mobile polish —— */
@media (max-width: 700px) {
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top, 0px));
  }

  .site-header .wrap {
    gap: 6px;
    min-height: 48px;
    padding: 0 8px 0 10px;
    width: min(var(--max), calc(100% - 20px));
  }

  .brand {
    gap: 7px;
    min-width: 0;
  }

  .brand-mark {
    height: 26px;
  }

  .brand-lockup strong {
    font-size: 14px;
  }

  .brand-lockup em {
    font-size: 7.5px;
    letter-spacing: 0.16em;
  }

  .search {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .search input {
    height: 34px;
    padding: 0 10px 0 34px;
    font-size: 16px;
  }

  .search input::placeholder {
    font-size: 12px;
  }

  .search svg {
    left: 11px;
    width: 14px;
    height: 14px;
  }

  .site-header nav {
    gap: 0;
    flex-shrink: 0;
  }

  .site-header nav a.nav-hot {
    padding: 6px 2px;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .cart-btn {
    height: 34px;
    padding: 0 8px;
    gap: 5px;
  }

  .cart-badge {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 0 5px;
  }

  .home-hero {
    padding: 84px 0 20px;
  }

  .hero-media {
    height: 720px;
  }

  .hero-inner h1 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .hero-when {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero-sponsors {
    margin-block: 10px;
  }

  .trust-grid {
    gap: 0;
    margin-bottom: 24px;
  }

  .trust-grid li {
    padding: 14px 0;
  }

  .match-intro h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .event-teams {
    gap: 4px 6px;
  }

  .event-team-name {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .event-logos img {
    width: 28px;
    height: 28px;
  }

  .event-matchup p {
    font-size: 11px;
    line-height: 1.35;
  }

  .from-price {
    font-size: 15px;
  }

  .from-price small {
    font-size: 10px;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-pill {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .seat-cat {
    min-height: 84px;
    padding: 12px;
  }
}
