:root {
  --font-main: "Urbanist", sans-serif;
  --font-display: "Urbanist", sans-serif;

  --bg: #060916;
  --bg-soft: #101a2d;
  --surface: #11172d;
  --surface-soft: #1a2440;
  --surface-light: #eef2fa;
  --border: rgba(255, 255, 255, 0.11);

  --text: #f4f7ff;
  --text-muted: #b3bfd7;
  --text-faint: #8794ad;

  --accent: #f4c538;
  --accent-2: #e6473f;
  --accent-3: #43cfff;
  --ok: #22d37b;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --container-gutter: clamp(14px, 3vw, 28px);
  --section-y: clamp(52px, 7vw, 78px);

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;

  --shadow-1: 0 16px 30px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 26px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(52% 38% at 12% 12%, rgba(18, 77, 151, 0.28), rgba(18, 77, 151, 0) 64%),
    radial-gradient(45% 38% at 82% 14%, rgba(89, 54, 151, 0.25), rgba(89, 54, 151, 0) 62%),
    radial-gradient(48% 34% at 78% 88%, rgba(17, 92, 96, 0.2), rgba(17, 92, 96, 0) 64%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 2px,
      transparent 2px,
      transparent 72px
    ),
    linear-gradient(180deg, #071120 0%, #070718 48%, var(--bg) 100%);
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
}

@supports (overflow-x: clip) {
  body {
    overflow-x: clip;
  }
}

body.light-page {
  background:
    radial-gradient(55% 35% at 10% 20%, rgba(32, 109, 255, 0.18), rgba(32, 109, 255, 0) 60%),
    radial-gradient(40% 40% at 90% 90%, rgba(243, 197, 29, 0.2), rgba(243, 197, 29, 0) 60%),
    linear-gradient(180deg, #edf2fb, #e8eef8);
  color: #1c2438;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 8px 12px;
  border-radius: 8px;
  color: #121212;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus-visible {
  left: 12px;
}

.scroll-progress {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 280;
  width: 4px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.worldcup-announcement {
  position: relative;
  z-index: 260;
  overflow: hidden;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 226, 122, 0.66);
  background:
    linear-gradient(90deg, rgba(255, 229, 111, 0.98), rgba(244, 197, 56, 0.95) 48%, rgba(255, 179, 60, 0.98)),
    var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(104, 70, 10, 0.22),
    0 10px 24px rgba(244, 197, 56, 0.18);
}

.announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  gap: clamp(42px, 6vw, 86px);
  color: #10172a;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: announcementMarquee 24s linear infinite;
}

.announcement-track span {
  flex: 0 0 auto;
}

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

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    width: 100%;
    justify-content: center;
    animation: none;
  }

  .announcement-track span:not(:first-child) {
    display: none;
  }
}

.container {
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section-copy {
  margin: 12px auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--text-muted);
}

.section-kicker,
.hero-chip {
  width: fit-content;
  margin-inline: auto;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: #d4ddf5;
}

.section-kicker {
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 5.8vw, 84px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(22px, 2.6vw, 38px);
}

p {
  margin: 0;
}

.centered {
  text-align: center;
}

.accent {
  color: var(--accent);
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  touch-action: manipulation;
}

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

.btn-pill {
  min-height: 42px;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  font-size: 13px;
}

.btn-primary {
  min-height: 48px;
  border-radius: var(--radius-pill);
  padding: 0 24px;
  color: #121212;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(243, 197, 29, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(243, 197, 29, 0.45);
}

.btn-outline {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold {
  color: #121212;
  background: linear-gradient(135deg, var(--accent), #f7aa19);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 220;
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(12px);
  background: rgba(4, 8, 16, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  height: 44px;
  width: auto;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 100%;
  max-width: min(36vw, 210px);
  object-fit: contain;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 9px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  touch-action: manipulation;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--text);
}

.hero {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 50% 0 / 86px 86px,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 50% 0 / 86px 86px,
    radial-gradient(68% 38% at 50% 100%, rgba(31, 174, 112, 0.16), rgba(31, 174, 112, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 88%);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-chip {
  margin-bottom: 20px;
  margin-inline: 0;
}

.hero-content h1 span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(244, 197, 56, 0.28);
}

.hero-sub {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.trust-row {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
}

.trust-row img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.trust-row span {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-row span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.hero-metrics {
  margin-top: 24px;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(6, 12, 25, 0.72);
  padding: 12px;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(20px, 2.3vw, 32px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  min-height: clamp(360px, 44vw, 500px);
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
  opacity: 0.78;
}

.hero-glow-a {
  width: 220px;
  height: 220px;
  top: 8%;
  left: 6%;
  background: rgba(243, 197, 29, 0.26);
  animation: heroDrift 6.5s ease-in-out infinite;
}

.hero-glow-b {
  width: 250px;
  height: 250px;
  right: 2%;
  bottom: 4%;
  background: rgba(67, 207, 255, 0.25);
  animation: heroDrift 7.3s ease-in-out infinite reverse;
}

.hero-3d-card {
  position: relative;
  width: min(100%, clamp(320px, 38vw, 460px));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2);
  transform: perspective(1200px) rotateY(-12deg) rotateX(6deg);
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-3d-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(5, 9, 17, 0.05), rgba(5, 9, 17, 0.92) 66%);
}

.hero-card-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  color: #f0d778;
  font-weight: 700;
}

.hero-card-overlay h3 {
  margin-top: 10px;
  font-size: clamp(26px, 2.6vw, 34px);
}

.hero-card-chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-card-chips span {
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  max-width: min(220px, 46%);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 17, 30, 0.88);
  box-shadow: var(--shadow-1);
  color: #dce6ff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-float-1 {
  top: 9%;
  right: clamp(0px, 1.6vw, 14px);
  animation: heroBadgeFloat 5.9s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 10%;
  left: clamp(0px, 1.8vw, 16px);
  animation: heroBadgeFloat 6.4s ease-in-out infinite reverse;
}

.worldcup-ticket {
  --ticket-line: rgba(127, 140, 180, 0.22);
  position: relative;
  isolation: isolate;
  margin-top: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr) minmax(220px, 270px);
  overflow: hidden;
  border: 1px solid rgba(151, 165, 210, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(42% 82% at 3% 8%, rgba(34, 81, 143, 0.36), rgba(34, 81, 143, 0)),
    radial-gradient(70% 88% at 48% 20%, rgba(69, 46, 115, 0.25), rgba(69, 46, 115, 0)),
    linear-gradient(120deg, rgba(15, 31, 55, 0.96), rgba(18, 16, 46, 0.98) 58%, rgba(10, 16, 31, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ticket-brand {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 3vw, 36px);
}

.ticket-year {
  color: #03040a;
  font-size: clamp(104px, 10.4vw, 154px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.08em;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.26));
}

.ticket-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(76px, 8.8vw, 116px);
  max-height: 78%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.46));
}

.ticket-main {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.8vw, 38px);
  border-left: 1px solid var(--ticket-line);
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  text-align: center;
}

.ticket-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(230, 71, 63, 0.55);
  background: rgba(230, 71, 63, 0.12);
  color: #ff685e;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5d55;
  box-shadow: 0 0 14px rgba(255, 93, 85, 0.72);
}

.ticket-countdown {
  margin: clamp(16px, 2vw, 22px) auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.ticket-countdown div {
  min-width: 58px;
  text-align: center;
}

.ticket-countdown strong {
  display: block;
  color: #ffffff;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 0.95;
  font-weight: 900;
}

.ticket-countdown span {
  display: block;
  margin-top: 8px;
  color: rgba(224, 230, 255, 0.56);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticket-details {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: clamp(20px, 2.6vw, 28px) 0 0;
  border-top: 1px solid var(--ticket-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ticket-details dt,
.ticket-stub dt {
  color: rgba(224, 230, 255, 0.46);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-details dd,
.ticket-stub dd {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.ticket-prompt {
  margin-top: clamp(24px, 3vw, 34px);
  color: rgba(245, 245, 255, 0.78);
  text-align: center;
  font-size: clamp(14px, 1.55vw, 22px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ticket-stub {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px) clamp(18px, 2.2vw, 26px);
  border-left: 2px dashed rgba(126, 139, 178, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  left: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #060916;
  box-shadow: inset 0 0 0 1px rgba(151, 165, 210, 0.08);
}

.ticket-stub::before {
  top: -18px;
}

.ticket-stub::after {
  bottom: -18px;
}

.barcode {
  height: 76px;
  border-radius: 7px;
  background:
    repeating-linear-gradient(
      90deg,
      #0b0d13 0 2px,
      transparent 2px 5px,
      #0b0d13 5px 7px,
      transparent 7px 10px
    ),
    #f4f4f5;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ticket-stub > p {
  margin-top: 18px;
  color: rgba(224, 230, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ticket-stub dl {
  margin: 20px 0 0;
}

.ticket-stub dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(126, 139, 178, 0.18);
}

.ticket-stub dd {
  margin: 0;
  color: var(--accent-3);
  font-size: 20px;
}

.ticket-cta {
  margin-top: 22px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ticket-cta:hover {
  background: #ffffff;
  color: #11172d;
  transform: translateY(-1px);
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(-9px);
  }
}

@keyframes heroBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8px, -11px) scale(1.06);
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.rail-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 17px;
}

.rail-controls button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.poster-rail {
  --poster-gap: 16px;
  --poster-cols: 4;
  display: flex;
  gap: var(--poster-gap);
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.poster-rail.auto-loop {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.poster-rail.auto-loop::-webkit-scrollbar {
  display: none;
}

.poster-rail.continuous-loop {
  overflow: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  touch-action: none;
  user-select: none;
}

.poster-rail.continuous-loop > * {
  scroll-snap-align: none;
  pointer-events: none;
}

.poster-card {
  flex: 0 0 calc((100% - (var(--poster-gap) * (var(--poster-cols) - 1))) / var(--poster-cols));
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-1);
  overflow: hidden;
  padding: 0;
  scroll-snap-align: start;
}

.poster-card img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.poster-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #121212;
  background: #f8fafd;
  font-size: 12px;
  font-weight: 700;
}

.poster-card h3 {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 9, 18, 0), rgba(4, 9, 18, 0.92));
  pointer-events: none;
}

.featured-vod {
  --poster-gap: 24px;
  --poster-cols: 3;
  overflow: hidden;
  min-height: clamp(260px, 26vw, 336px);
  padding-bottom: 0;
  scrollbar-width: none;
}

.featured-vod .poster-card {
  min-height: clamp(250px, 24vw, 320px);
  aspect-ratio: auto;
  border-radius: 16px;
  cursor: pointer;
}

.featured-vod .poster-card img {
  transition: transform 0.5s ease;
}

.featured-vod .poster-card:hover img {
  transform: scale(1.1);
}

.featured-vod .poster-tag {
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 800;
}

.featured-vod .poster-card h3 {
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-size: clamp(18px, 1.8vw, 24px);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.featured-vod .poster-card:hover h3 {
  transform: translateY(0);
}

.featured-vod .poster-card::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 17, 0.04), rgba(5, 9, 17, 0.08) 38%, rgba(5, 9, 17, 0.84));
}

.logo-row {
  margin: clamp(26px, 4vw, 44px) auto 0;
  position: relative;
  overflow: hidden;
  width: min(100%, 1040px);
  padding: 4px 0;
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 4.2vw, 64px);
  width: 100%;
}

.logo-cell,
.logo-track > img {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  animation: logoFloat 3.6s ease-in-out infinite;
}

.logo-cell:nth-child(2),
.logo-track > img:nth-child(2) {
  animation-delay: -0.45s;
}

.logo-cell:nth-child(3),
.logo-track > img:nth-child(3) {
  animation-delay: -0.9s;
}

.logo-cell:nth-child(4),
.logo-track > img:nth-child(4) {
  animation-delay: -1.35s;
}

.logo-cell:nth-child(5),
.logo-track > img:nth-child(5) {
  animation-delay: -1.8s;
}

.logo-cell:nth-child(6),
.logo-track > img:nth-child(6) {
  animation-delay: -2.25s;
}

.logo-cell.is-changing {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(var(--logo-exit-x, 46px), var(--logo-exit-y, 0), 0) scale(0.9);
}

.logo-cell.is-entering {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(var(--logo-enter-x, -46px), var(--logo-enter-y, 12px), 0) scale(0.9);
}

.logo-cell img,
.logo-track > img {
  width: min(100%, 112px);
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
  opacity: 0.96;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-cell:hover img,
.logo-track > img:hover {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes logoFloat {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.88;
    transform: translate3d(0, 6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-cell,
  .logo-track > img {
    animation: none;
  }
}

.benefit-grid {
  margin-top: clamp(24px, 3.2vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.benefits {
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(45% 52% at 6% 50%, rgba(40, 124, 255, 0.22), rgba(40, 124, 255, 0)),
    radial-gradient(40% 45% at 95% 52%, rgba(131, 88, 255, 0.2), rgba(131, 88, 255, 0));
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.features-intro {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}

.features-chip {
  width: fit-content;
  margin: 0 auto 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #e5ecff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.features-intro h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  text-wrap: balance;
}

.features-intro p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.6;
  text-wrap: pretty;
}

.features-divider {
  width: min(440px, 76%);
  height: 4px;
  margin: 18px auto 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #18dcff 0%, #4f8fff 48%, #8f5cff 100%);
  box-shadow: 0 0 22px rgba(24, 220, 255, 0.28);
}

.feature-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 30px) clamp(14px, 1.9vw, 24px) clamp(16px, 1.8vw, 22px);
  min-height: clamp(300px, 27vw, 352px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-panel::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: -36%;
  height: 62%;
  border-radius: 50%;
  opacity: 0.38;
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.feature-panel-a::before {
  background: rgba(24, 220, 255, 0.42);
}

.feature-panel-b::before {
  background: rgba(255, 210, 27, 0.38);
}

.feature-panel-c::before {
  background: rgba(34, 234, 138, 0.4);
}

.feature-panel-d::before {
  background: rgba(120, 237, 255, 0.38);
}

.feature-icon {
  width: clamp(58px, 5vw, 74px);
  height: clamp(58px, 5vw, 74px);
  margin: 0 auto clamp(14px, 1.7vw, 22px);
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 26, 0.65);
}

.feature-icon svg {
  width: clamp(26px, 2.3vw, 36px);
  height: clamp(26px, 2.3vw, 36px);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-cyan {
  color: #18dcff;
  box-shadow: 0 0 22px rgba(24, 220, 255, 0.33);
}

.icon-gold {
  color: #ffd21b;
  box-shadow: 0 0 22px rgba(255, 210, 27, 0.33);
}

.icon-green {
  color: #22ea8a;
  box-shadow: 0 0 22px rgba(34, 234, 138, 0.3);
}

.icon-sky {
  color: #78edff;
  box-shadow: 0 0 22px rgba(120, 237, 255, 0.35);
}

.feature-panel h3 {
  font-size: clamp(20px, 1.8vw, 34px);
  text-align: center;
  line-height: 1.18;
  text-wrap: balance;
}

.feature-panel p {
  margin-top: clamp(10px, 1.2vw, 14px);
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: clamp(13px, 0.96vw, 16px);
  text-wrap: pretty;
}

.feature-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.feature-meta span {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #d8e2fb;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
}

.sports .centered {
  margin-bottom: 26px;
}

.poster-rail.tall {
  gap: 10px;
}

#sports-rail .poster-tall {
  min-width: clamp(182px, 14.2vw, 202px);
  max-width: clamp(182px, 14.2vw, 202px);
}

.poster-tall {
  min-width: 158px;
  max-width: 158px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.poster-tall img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.league-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.league-grid span {
  min-height: 58px;
  border-radius: 12px;
  background: #f1f4fa;
  border: 1px solid #d3dae8;
  display: grid;
  place-items: center;
  padding: 8px;
}

.league-grid img {
  max-height: clamp(34px, 3vw, 50px);
  max-width: 92%;
  width: auto;
  object-fit: contain;
}

.plans {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(40% 55% at 10% 18%, rgba(42, 116, 255, 0.16), rgba(42, 116, 255, 0)),
    radial-gradient(40% 54% at 90% 76%, rgba(255, 145, 35, 0.15), rgba(255, 145, 35, 0)),
    linear-gradient(180deg, #060d1d 0%, #040914 100%);
}

.plans::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35) 75%, transparent 100%);
}

.plans .container {
  position: relative;
  z-index: 1;
}

.plans .section-copy {
  max-width: 620px;
}

.plan-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}

.plan-grid-pro {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.pricing-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(133, 153, 188, 0.28);
  background: linear-gradient(160deg, rgba(23, 33, 55, 0.9), rgba(11, 18, 34, 0.9));
  padding: 24px 22px 20px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.plan-card-pro {
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.32s ease, box-shadow 0.32s ease;
}

.plan-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(88% 60% at 0% 0%, rgba(113, 164, 255, 0.17), rgba(113, 164, 255, 0));
  z-index: 0;
}

.plan-card-pro::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  border-radius: 0 0 10px 10px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(120, 166, 255, 0.8), rgba(120, 166, 255, 0));
  opacity: 0.8;
  z-index: 1;
}

.plan-card-pro.tilt-3d:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 205, 87, 0.52);
  box-shadow: 0 30px 52px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(252, 205, 87, 0.16);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.plan-device {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffda68;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 83, 0.3);
  background: rgba(255, 198, 65, 0.09);
  width: fit-content;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(28px, 2vw, 36px);
  letter-spacing: -0.01em;
  line-height: 1.04;
  position: relative;
  z-index: 2;
}

.plan-sub {
  margin-top: 8px;
  color: #bfcee9;
  font-size: 12px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

.plan-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.plan-price [data-plan-price-value] {
  font-size: clamp(44px, 4.1vw, 58px);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-price > span:last-child {
  font-size: 12px;
  color: #a8b8d7;
  text-transform: uppercase;
  letter-spacing: 0.32px;
}

.plan-badge-note {
  margin-top: 10px;
  color: #ffd874;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 197, 52, 0.11);
  border: 1px solid rgba(255, 210, 92, 0.2);
  position: relative;
  z-index: 2;
}

.plan-card ul {
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.plan-card li {
  color: #d0dbef;
  font-size: 13px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #121212;
  background: linear-gradient(135deg, #ffd451, #ff9827);
  box-shadow: 0 0 0 1px rgba(255, 189, 52, 0.24);
}

.plan-card .btn {
  width: 100%;
  position: relative;
  z-index: 2;
}

.plan-card-pro .purchase-btn {
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 213, 84, 0.18), rgba(255, 154, 39, 0.14));
  color: #f8fbff;
  border: 1px solid rgba(255, 189, 78, 0.4);
  box-shadow: 0 12px 22px rgba(255, 164, 48, 0.2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 800;
}

.plan-card-pro .purchase-btn:hover {
  background: linear-gradient(135deg, rgba(255, 220, 107, 0.28), rgba(255, 166, 60, 0.24));
  box-shadow: 0 16px 28px rgba(255, 175, 62, 0.3);
}

.plan-card-pro.featured .purchase-btn {
  color: #141414;
  border-color: transparent;
  background: linear-gradient(135deg, #ffd54b, #ff8d1c);
  box-shadow: 0 14px 28px rgba(255, 174, 54, 0.35);
}

.plan-card-pro.featured .purchase-btn:hover {
  background: linear-gradient(135deg, #ffe16f, #ffa340);
  box-shadow: 0 18px 32px rgba(255, 180, 68, 0.45);
}

.plan-hint {
  margin-top: 11px;
  color: #e2ebfd;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.plan-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255, 204, 84, 0.7);
  background: linear-gradient(165deg, rgba(45, 36, 27, 0.92), rgba(21, 17, 23, 0.9));
  box-shadow: 0 32px 58px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 172, 46, 0.18);
}

.plan-card.featured::before {
  background: radial-gradient(78% 54% at 8% 0%, rgba(255, 184, 54, 0.3), rgba(255, 184, 54, 0));
}

.plan-card.featured.tilt-3d:hover {
  transform: translateY(-11px);
}

.plan-card.featured .plan-price [data-plan-price-value] {
  color: #ffd86a;
}

.plan-card-gold {
  border-color: rgba(255, 192, 74, 0.48);
  background: linear-gradient(165deg, rgba(26, 35, 58, 0.9), rgba(13, 20, 36, 0.9));
}

.plan-card-lifetime {
  grid-column: 1 / -1;
  margin-top: clamp(34px, 5vw, 64px);
  max-width: min(640px, 100%);
  justify-self: center;
  padding: 40px 26px 24px;
  border-radius: 20px;
  border: 2px solid rgba(245, 198, 72, 0.58);
  background:
    radial-gradient(90% 74% at 50% 0%, rgba(255, 194, 79, 0.2), rgba(255, 194, 79, 0)),
    linear-gradient(165deg, rgba(58, 49, 34, 0.92), rgba(38, 32, 24, 0.9));
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.46), 0 0 24px rgba(255, 183, 58, 0.2);
  align-items: stretch;
  text-align: center;
  overflow: visible;
  position: relative;
}

.plan-card-lifetime::before {
  content: none;
}

.lifetime-inner {
  position: relative;
  z-index: 2;
}

.lifetime-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.24;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
}

.lifetime-shimmer::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 45%;
  height: 140%;
  background: linear-gradient(95deg, transparent, rgba(255, 221, 120, 0.48), transparent);
  transform: skewX(-16deg);
  animation: lifetimeShimmer 5s linear infinite;
}

.plan-card-lifetime .plan-top {
  justify-content: center;
}

.plan-card-lifetime h3 {
  font-size: clamp(42px, 4vw, 54px);
}

.plan-card-lifetime .plan-sub {
  margin-top: 10px;
  font-size: 17px;
  color: #edf2ff;
}

.plan-card-lifetime .lifetime-pill {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  min-width: 240px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #101010;
  background: linear-gradient(135deg, #ffd64f, #ff8d1d);
  border: 3px solid rgba(255, 236, 168, 0.72);
  box-shadow: 0 12px 24px rgba(255, 164, 44, 0.45);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.plan-card-lifetime .lifetime-pill svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.plan-card-lifetime .lifetime-price {
  margin-top: 18px;
  justify-content: center;
}

.plan-card-lifetime .lifetime-price [data-plan-price-value] {
  font-size: clamp(66px, 6vw, 86px);
  letter-spacing: -0.03em;
  color: #ffd025;
}

.plan-card-lifetime .lifetime-note {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #f9d452;
}

.plan-card-lifetime .lifetime-save {
  margin: 14px auto 0;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  color: #ffe36d;
  background: rgba(255, 202, 69, 0.18);
  border: 1px solid rgba(255, 215, 118, 0.26);
}

.plan-card-lifetime .lifetime-device-row {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd44a;
  font-weight: 800;
}

.plan-card-lifetime .lifetime-device-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.plan-card-lifetime .lifetime-device-icons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.plan-card-lifetime .lifetime-device-label {
  font-size: 17px;
}

.plan-card-lifetime .lifetime-gift {
  margin: 14px 0 0;
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 201, 65, 0.14);
  border-color: rgba(255, 210, 100, 0.34);
  gap: 8px;
}

.plan-card-lifetime .lifetime-gift svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.plan-card-lifetime ul {
  margin: 22px auto 20px;
  width: min(500px, 100%);
  gap: 12px;
}

.plan-card-lifetime li {
  text-align: left;
  font-size: 14px;
  padding-left: 32px;
}

.plan-card-lifetime li::before {
  top: 0.08em;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #ffd34f;
  font-size: 18px;
}

.plan-card-lifetime .purchase-btn {
  min-height: 64px;
  margin-top: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #121212;
  border-color: transparent;
  background: linear-gradient(135deg, #ffd72f, #ff8916);
  box-shadow: 0 18px 34px rgba(255, 176, 54, 0.46);
}

.plan-card-lifetime .purchase-btn:hover {
  background: linear-gradient(135deg, #ffe253, #ff9f31);
  box-shadow: 0 22px 36px rgba(255, 182, 64, 0.52);
}

.plan-card-lifetime .plan-hint {
  margin-top: 12px;
  font-size: 13px;
}

@keyframes lifetimeShimmer {
  0% {
    transform: translateX(-30%) skewX(-16deg);
  }
  100% {
    transform: translateX(260%) skewX(-16deg);
  }
}

.plan-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: auto;
  text-align: left;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd350, #ff9223);
  color: #141414;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28px;
  padding: 6px 12px;
  transform: none;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(255, 168, 47, 0.28);
}

.payment-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-row span {
  min-width: 126px;
  min-height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 234, 255, 0.78)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(33, 52, 96, 0.2);
  display: grid;
  place-items: center;
  padding: 10px;
}

.payment-row img {
  max-height: 32px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}

.offer-card {
  margin-top: 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.offer-card h3 {
  font-size: clamp(32px, 3.9vw, 52px);
}

.offer-card p {
  margin-top: 10px;
  color: var(--text-muted);
}

.step-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.step-grid::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(243, 197, 29, 0.15), rgba(243, 197, 29, 0.45), rgba(243, 197, 29, 0.15));
  pointer-events: none;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(130, 145, 178, 0.22);
  background:
    radial-gradient(95% 70% at 0% 0%, rgba(243, 197, 29, 0.12), rgba(243, 197, 29, 0) 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 22px 20px 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 197, 29, 0.45);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.42);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-index {
  min-width: 44px;
  height: 30px;
  border-radius: var(--radius-pill);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 197, 29, 0.2);
  border: 1px solid rgba(243, 197, 29, 0.45);
  color: #ffd65f;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(9, 18, 35, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
  box-shadow: 0 0 0 5px rgba(243, 197, 29, 0.08);
  animation: stepPulse 3.2s ease-in-out infinite;
}

.step-card:nth-child(2) .step-icon {
  animation-delay: 0.4s;
}

.step-card:nth-child(3) .step-icon {
  animation-delay: 0.8s;
}

.step-card h3 {
  margin-top: 14px;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.12;
}

.step-card p {
  margin-top: 10px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.step-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.step-points li {
  color: #d6deef;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.step-points li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #f4c933;
  font-size: 11px;
}

.step-link {
  margin-top: auto;
  align-self: flex-start;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #eff5ff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.step-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.step-link-primary {
  color: #151515;
  border-color: transparent;
  background: linear-gradient(135deg, #f6d534, #ff8f1f);
}

.step-link-primary:hover {
  background: linear-gradient(135deg, #ffe05a, #ff9e3d);
}

.how-cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.how-cta p {
  color: #d5def0;
  font-weight: 600;
  margin: 0;
}

@keyframes stepPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(243, 197, 29, 0.08);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(243, 197, 29, 0.15);
  }
}

.review-carousel {
  position: relative;
  margin-top: 4px;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.review-card {
  flex: 0 0 min(620px, calc(100% - 8px));
  scroll-snap-align: start;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-1);
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.review-card * {
  pointer-events: none;
}

.review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.review-meta {
  margin-top: 9px;
  color: #eccf77;
  font-weight: 700;
}

.review-text {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.slider-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
}

.slider-dots button[aria-current="true"] {
  background: var(--accent);
}

.device-grid {
  margin-top: 28px;
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.device-grid span {
  min-height: clamp(74px, 6vw, 92px);
  border-radius: 18px;
  border: 1px solid rgba(142, 156, 184, 0.3);
  background: linear-gradient(165deg, rgba(30, 42, 67, 0.95), rgba(24, 33, 52, 0.95));
  display: grid;
  place-items: center;
  padding: 10px 12px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.35s, border-color 0.35s, background 0.35s, box-shadow 0.35s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.device-grid img {
  max-height: clamp(30px, 2.7vw, 46px);
  max-width: 92%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) contrast(1.08);
  opacity: 0.9;
  transition: filter 0.45s, opacity 0.45s, transform 0.45s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.device-grid span:hover,
.device-grid span:focus-within,
.device-grid span:active {
  border-color: rgba(243, 197, 29, 0.55);
  background: linear-gradient(165deg, rgba(42, 58, 90, 0.96), rgba(30, 41, 65, 0.96));
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
}

.device-grid span:hover img,
.device-grid span:focus-within img,
.device-grid span:active img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.device-note {
  margin: 20px auto 0;
  width: fit-content;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 9px 16px;
}

.faq-group {
  margin-top: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  padding: 22px;
}

.faq-group h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 21px;
  line-height: 1;
  transition: transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-answer {
  display: block;
}

.support-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 70px;
  border-top: 0;
  background: #02040a;
}

.footer-grid {
  padding-block: 52px 44px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(18px, 3vw, 40px);
}

.footer-brand {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand-col p {
  max-width: 340px;
}

.site-footer h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 34px);
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #b9c5dc;
  line-height: 1.62;
  font-size: 15px;
}

.site-footer ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #f5f8ff;
}

.footer-contact-col .footer-pay-title {
  margin-top: 24px;
}

.footer-pay-image {
  margin-top: 12px;
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.footer-bottom {
  border-top: 0;
  padding: 0 0 20px;
}

.footer-bottom p {
  margin: 0;
  color: #8a95ad;
  font-size: 13px;
}

.floating-chat {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 260;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  background: linear-gradient(145deg, #2ad56f, #149147);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.48);
  animation: whatsapp-float 2.8s ease-in-out infinite;
  isolation: isolate;
}

.floating-chat::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.34), rgba(37, 211, 102, 0));
  z-index: -1;
  animation: whatsapp-pulse 2s ease-out infinite;
}

.floating-chat-badge {
  position: absolute;
  top: 2px;
  right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ff2d2d;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.72);
  animation: whatsapp-badge 1.35s ease-in-out infinite;
}

.floating-chat-badge::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #ffd0d0;
}

.floating-chat:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.58);
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.95;
    transform: scale(0.88);
  }
  70% {
    opacity: 0;
    transform: scale(1.32);
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes whatsapp-badge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.7);
  }
  60% {
    transform: scale(1.18);
    box-shadow: 0 0 0 9px rgba(255, 45, 45, 0);
  }
}

.tilt-3d {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tilt-3d:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 197, 29, 0.35);
  box-shadow: var(--shadow-2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

section[id] {
  scroll-margin-top: 100px;
}

/* Shared inner pages */
.inner-main {
  padding-top: 96px;
  padding-bottom: 70px;
}

.inner-card,
.legal-article,
.checkout-shell,
.payment-shell,
.loading-shell,
.contact-shell {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-1);
}

.inner-card,
.legal-article,
.checkout-shell,
.payment-shell,
.contact-shell {
  padding: 24px;
}

.inner-main h1 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 10px;
}

.inner-lead {
  color: var(--text-muted);
  max-width: 760px;
}

.legal-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.legal-article h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
}

.legal-article h3 {
  font-size: 22px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.legal-article p,
.legal-article li {
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-article ul {
  margin: 0;
  padding-left: 18px;
}

.checkout-wrap,
.payment-wrap,
.contact-wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.checkout-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.summary-card h3,
.payment-shell h3 {
  font-size: 28px;
}

.summary-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.summary-list li {
  color: var(--text-muted);
  font-size: 14px;
}

.loading-screen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

.loading-shell {
  width: min(760px, 92vw);
  padding: 28px;
  text-align: center;
}

.loading-shell h1 {
  font-size: clamp(32px, 5vw, 54px);
}

.loading-shell p {
  margin-top: 10px;
  color: var(--text-muted);
}

.loading-meter {
  margin-top: 18px;
  width: 100%;
  height: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loading-meter span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.loading-steps {
  margin-top: 14px;
  text-align: left;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.loading-steps li {
  color: var(--text-muted);
}

.loading-steps li.active {
  color: var(--text);
  font-weight: 700;
}

.payment-methods {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-methods span {
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  padding: 8px;
}

.payment-methods img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

.contact-info-grid {
  display: grid;
  gap: 12px;
}

.contact-shell-main h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.contact-list span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: var(--text-faint);
  font-weight: 700;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.contact-list p {
  margin: 0;
  color: var(--text-muted);
}

.contact-info-grid a,
.contact-info-grid p {
  color: var(--text-muted);
}

.contact-info-grid .btn {
  color: var(--text);
  justify-content: center;
}

/* Responsive */
@media (max-width: 1220px) {
  .poster-card {
    --poster-cols: 3;
  }

  .featured-vod {
    --poster-cols: 2;
  }

  .logo-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .plan-grid-pro,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card-lifetime {
    grid-column: 1 / -1;
    max-width: min(620px, 100%);
    justify-self: center;
  }

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

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

  .checkout-wrap,
  .payment-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu.is-collapsible {
    position: absolute;
    top: 100%;
    left: 4vw;
    right: 4vw;
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(7, 12, 22, 0.98);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .nav-menu.is-collapsible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu.is-collapsible a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .nav-menu.is-collapsible a:hover {
    background: rgba(255, 255, 255, 0.09);
  }

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

  section[id] {
    scroll-margin-top: 86px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-chip {
    margin-inline: auto;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .trust-row {
    margin-inline: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-metrics {
    margin-inline: auto;
  }

  .worldcup-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-brand {
    min-height: 190px;
    border-bottom: 1px solid var(--ticket-line);
  }

  .ticket-main {
    border-left: 0;
  }

  .ticket-stub {
    border-left: 0;
    border-top: 2px dashed rgba(126, 139, 178, 0.22);
  }

  .ticket-stub::before,
  .ticket-stub::after {
    left: auto;
    top: -18px;
    bottom: auto;
  }

  .ticket-stub::before {
    left: -18px;
  }

  .ticket-stub::after {
    right: -18px;
  }

  .hero-visual {
    min-height: clamp(340px, 56vw, 420px);
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-float-1 {
    right: 4%;
  }

  .hero-float-2 {
    left: 4%;
  }

  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .section {
    padding-block: 52px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .ticket-main {
    padding: 26px 16px 30px;
  }

  .ticket-head h2 {
    white-space: normal;
  }

  .ticket-head {
    gap: 14px;
  }

  .ticket-countdown {
    gap: 10px;
  }

  .ticket-countdown div {
    min-width: 52px;
  }

  .ticket-details {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .ticket-prompt {
    letter-spacing: 0.08em;
  }

  .hero-card-overlay h3,
  .faq-group h3,
  .step-card h3,
  .plan-card h3 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .hero-3d-card {
    width: min(390px, 92vw);
    transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
  }

  .hero-float {
    font-size: 11px;
    padding: 9px 12px;
  }

  .poster-card {
    --poster-cols: 2;
  }

  .featured-vod {
    --poster-cols: 1;
    min-height: 320px;
  }

  .logo-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .featured-vod .poster-card {
    min-height: 320px;
  }

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

  .plan-grid-pro,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card-lifetime {
    max-width: 100%;
    grid-column: auto;
  }

  .plan-card-lifetime {
    padding: 34px 16px 16px;
  }

  .plan-card-lifetime .lifetime-pill {
    min-width: 190px;
    font-size: 13px;
    padding: 8px 14px;
    top: -20px;
  }

  .plan-card-lifetime .lifetime-price [data-plan-price-value] {
    font-size: clamp(52px, 12vw, 70px);
  }

  .plan-card-lifetime .lifetime-note {
    font-size: 15px;
  }

  .plan-card-lifetime .lifetime-save {
    font-size: 12px;
  }

  .plan-card-lifetime .lifetime-device {
    font-size: 15px;
  }

  .plan-card-lifetime .lifetime-device-row {
    margin-top: 14px;
  }

  .plan-card-lifetime li {
    font-size: 13px;
  }

  .plan-card-lifetime .purchase-btn {
    min-height: 62px;
    font-size: 16px;
  }

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

  .step-grid::before {
    display: none;
  }

  .step-card {
    min-height: 0;
  }

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

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

  .floating-chat {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  :root {
    --container-gutter: 12px;
  }

  .poster-card {
    --poster-cols: 1;
  }

  .featured-vod {
    min-height: 300px;
  }

  .featured-vod .poster-card {
    min-height: 300px;
  }

  .hero-cta-row,
  .support-cta {
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .ticket-brand {
    min-height: 142px;
  }

  .ticket-year {
    font-size: 98px;
  }

  .ticket-emblem {
    width: 68px;
  }

  .ticket-countdown strong {
    font-size: 28px;
  }

  .ticket-countdown span {
    font-size: 10px;
  }

  .ticket-stub {
    padding: 18px 16px;
  }

  .barcode {
    height: 58px;
  }

  .ticket-stub dl {
    margin-top: 14px;
  }

  .ticket-stub dl div {
    padding: 10px 0;
  }

  .ticket-prompt {
    margin-top: 20px;
  }

  .ticket-cta {
    width: 100%;
  }

  .hero-float {
    display: none;
  }

  .btn-primary,
  .purchase-btn {
    width: 100%;
  }

  .plan-ribbon {
    top: 10px;
    right: 10px;
    font-size: 9px;
    padding: 5px 10px;
  }

  .plan-card-lifetime .lifetime-pill {
    min-width: 170px;
    top: -15px;
    font-size: 12px;
    padding: 7px 12px;
  }

  .plan-card-lifetime .lifetime-pill svg {
    width: 13px;
    height: 13px;
  }

  .plan-card-lifetime .lifetime-price [data-plan-price-value] {
    font-size: clamp(44px, 13vw, 56px);
  }

  .plan-card-lifetime .lifetime-note {
    font-size: 13px;
  }

  .plan-card-lifetime .lifetime-save {
    font-size: 11px;
    padding: 7px 12px;
  }

  .plan-card-lifetime .lifetime-device {
    font-size: 13px;
  }

  .plan-card-lifetime li {
    font-size: 12px;
  }

  .plan-card-lifetime .purchase-btn {
    min-height: 56px;
    font-size: 15px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

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

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

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

  .how-cta {
    flex-direction: column;
  }

  .floating-chat {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .floating-chat-badge {
    width: 14px;
    height: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
