:root {
  --bg: #0b0c10;
  --bg-soft: #111827;
  --paper: #fbf4e8;
  --ink: #fff9ef;
  --muted: #b9c0c8;
  --muted-strong: #d9e0e5;
  --gold: #f3c969;
  --gold-dark: #b56d23;
  --mint: #36d4b1;
  --blue: #4d8dff;
  --rose: #ff6f8f;
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(160deg, rgba(77, 141, 255, 0.18), transparent 26rem),
    linear-gradient(20deg, rgba(243, 201, 105, 0.14), transparent 30rem),
    #0b0c10;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 70%);
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 18px clamp(16px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(243, 201, 105, 0.08), transparent 34%, rgba(255, 255, 255, 0.04)),
    rgba(11, 12, 16, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand,
.nav,
.hero-actions,
.quick-stats,
.availability-row,
.order-head,
.total,
.final-cta,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: #f7ead0;
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(243, 201, 105, 0.18);
  white-space: nowrap;
}

.brand::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 999px;
}

.brand::after {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

.brand span {
  position: relative;
  padding: 0 2px 4px;
}

.brand span::after {
  content: "";
  position: absolute;
  left: 6%;
  right: calc(6% + 0.14em);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 201, 105, 0.9), transparent);
}

.nav {
  position: relative;
  gap: 28px;
  padding: 0;
  color: var(--muted-strong);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav a {
  position: relative;
  padding: 8px 0 10px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff1b0);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  color: #fff3d7;
  text-shadow: 0 10px 28px rgba(243, 201, 105, 0.22);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-cta {
  justify-self: end;
  position: relative;
  overflow: hidden;
  padding: 13px 20px;
  color: #1a1208;
  background:
    linear-gradient(135deg, #fff9ec 0%, #f8df9b 48%, #eda23d 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  font-weight: 900;
  box-shadow:
    0 16px 42px rgba(243, 201, 105, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -10px 18px rgba(181, 109, 35, 0.12);
}

.top-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.top-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.top-cta:hover::after {
  transform: translateX(130%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(42px, 7vw, 92px) clamp(16px, 5vw, 72px) clamp(52px, 7vw, 98px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -20vw;
  z-index: -1;
  width: 58vw;
  max-width: 760px;
  aspect-ratio: 1;
  background: conic-gradient(from 160deg, var(--gold), var(--rose), var(--blue), var(--mint), var(--gold));
  filter: blur(70px);
  opacity: 0.3;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.button:hover,
.top-cta:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: #111;
  background:
    linear-gradient(135deg, #fff3b6 0%, var(--gold) 46%, #f09b3f 100%);
  box-shadow:
    0 18px 44px rgba(243, 201, 105, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button-soft {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  gap: 0;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.quick-stats div {
  position: relative;
  min-width: 0;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  border-radius: 18px;
}

.quick-stats div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
}

.quick-stats dt {
  color: rgba(217, 224, 229, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.poster-wrap {
  position: relative;
  width: min(100%, 540px);
  margin-inline: auto;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.poster-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(243, 201, 105, 0.42), rgba(54, 212, 177, 0.18));
  border-radius: 48px;
  filter: blur(24px);
  opacity: 0.72;
}

.poster-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 16px 18px;
  background: rgba(11, 12, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.floating-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.floating-card-price {
  top: 8%;
  right: -12px;
}

.floating-card-left {
  left: -10px;
  bottom: 11%;
}

.status-panel,
.purchase,
.rules,
.final-cta {
  margin-inline: clamp(16px, 5vw, 72px);
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.status-panel h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
}

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

.availability-row {
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.availability-row strong {
  color: var(--ink);
}

.meter {
  height: 14px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--rose));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.purchase {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 500px);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding-block: clamp(70px, 9vw, 120px);
}

.purchase-copy {
  max-width: 740px;
}

.purchase-copy > p,
.feature-list p,
.rule-grid p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature-list article,
.rule-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-list span,
.rule-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: #111;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.order-card {
  position: sticky;
  top: 98px;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075)),
    rgba(11, 12, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.order-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.order-head h3 {
  margin-bottom: 0;
}

.price {
  flex: 0 0 auto;
  padding: 11px 14px;
  color: #111;
  background: var(--paper);
  border-radius: 999px;
  font-weight: 900;
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
}

.field input::placeholder {
  color: rgba(217, 224, 229, 0.5);
}

.field input:focus {
  outline: 3px solid rgba(243, 201, 105, 0.32);
  border-color: rgba(243, 201, 105, 0.7);
}

.stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 10px;
}

.icon-button {
  min-height: 56px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.total {
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.total span {
  color: var(--muted);
  font-weight: 800;
}

.total strong {
  color: var(--gold);
  font-size: 30px;
}

.full {
  width: 100%;
}

.form-note {
  min-height: 44px;
  margin: 14px 0 0;
  font-size: 13px;
}

.rules {
  padding-block: clamp(64px, 9vw, 110px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.rule-grid article {
  min-height: 250px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rule-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.105);
}

.final-cta {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(243, 201, 105, 0.18), rgba(77, 141, 255, 0.14)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 5vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

.payment-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.payment-box {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(11, 12, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.payment-box h1 {
  max-width: none;
  font-size: clamp(40px, 7vw, 78px);
}

.payment-box p {
  color: var(--muted);
  line-height: 1.65;
}

.payment-box form {
  margin-top: 28px;
}

.ticket-result {
  margin: 18px 0;
  color: var(--gold) !important;
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .status-panel,
  .purchase,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .poster-wrap {
    max-width: 560px;
    transform: none;
  }

  .poster-wrap img {
    height: auto;
    aspect-ratio: auto;
  }

  .order-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand {
    gap: 8px;
    font-size: 22px;
    letter-spacing: 0.08em;
  }

  .brand::before,
  .brand::after {
    width: 18px;
  }

  .top-cta {
    padding: 12px 14px;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .quick-stats {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
    padding: 8px;
  }

  .quick-stats div {
    border-radius: var(--radius-sm);
  }

  .quick-stats div + div::before {
    left: 14px;
    right: 14px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  }

  .floating-card {
    position: static;
    margin-top: 10px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
