:root {
  --ink: #243447;
  --ink-strong: #12202c;
  --muted: #6b7c86;
  --paper: #f4f8fa;
  --accent: #0d9488;
  --accent-2: #e85d04;
  --gold: #ff7a45;
  --gold-2: #ff8d5c;
  --gold-deep: #f06530;
  --gold-shadow: #c44e22;
  --violet: #123a48;
  --violet-2: #184656;
  --footer: #0b1c24;
  --line: #d5e3e8;
  --hero: #0f5c68;
  --max: 1200px;
  --radius: 5px;
  --offer: "beepbeep";
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Roboto, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-2);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  font-weight: 800;
}

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

.shell,
.page-canvas,
.foot {
  max-width: 100%;
}

.wrap {
  max-width: var(--max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.mast {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  max-width: 100%;
  min-height: 80px;
  background: var(--paper);
  box-shadow: 0 10px 40px 0 rgba(18, 88, 98, 0.18);
}

.mast-inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 80px;
  gap: 8px;
}

.brand {
  width: 25%;
  min-width: 140px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
}

.brand img {
  width: 120px;
  height: 57px;
}

.nav-primary {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  display: block;
  padding: 31px 16px;
  color: var(--ink-strong);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
}

.nav-primary a:hover,
.nav-primary a.is-on {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mast-actions {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 80px;
}

.burger,
.nav-toggle {
  display: none;
}

.burger {
  width: 24px;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #151515;
  margin-bottom: 4px;
}

.mobile-panel {
  display: none;
}

/* CTA base */
[role="button"][aria-label="beepbeep"] {
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

[role="button"][aria-label="beepbeep"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.gate-mast-login,
.gate-mast-register,
.gate-mob-login,
.gate-mob-register,
.gate-404-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 9px;
  margin-left: 10px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.18s ease-in-out,
    box-shadow 0.18s ease-in-out;
}

.gate-mast-login,
.gate-mob-login {
  min-width: 105px;
  background: linear-gradient(180deg, #343434 0, #1f1f1f 100%);
  color: #fff;
  box-shadow:
    0 4px 0 #000,
    0 7px 11px rgba(0, 0, 0, 0.22);
}

.gate-mast-register,
.gate-mob-register,
.gate-404-offer {
  min-width: 155px;
  background: linear-gradient(180deg, var(--gold-2) 0, var(--gold-deep) 100%);
  color: #12202c;
  box-shadow:
    0 4px 0 var(--gold-shadow),
    0 7px 11px rgba(0, 0, 0, 0.18);
}

.gate-mast-login:hover,
.gate-mast-register:hover,
.gate-mob-login:hover,
.gate-mob-register:hover,
.gate-404-offer:hover {
  transform: translateY(-1px);
}

/* Page */
.page-canvas {
  padding: 0 0 60px;
}

.prose {
  color: var(--ink);
}

.prose h1,
.prose h2,
.prose h3 {
  color: var(--ink-strong);
  font-weight: 700;
  line-height: 1.3;
}

.prose h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 18px 0 10px;
  overflow-wrap: break-word;
}

.prose h2 {
  font-size: 20px;
  margin: 22px 0 10px;
}

.prose h3 {
  font-size: 20px;
  margin: 20px 0 8px;
}

.prose p {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 1.45em;
  margin: 0;
}

.prose img {
  border-radius: 5px;
  margin: 0.45em auto 1.45em;
}

.figure-cta {
  margin: 1.45em 0;
}

.figure-cta img {
  width: 100%;
  border-radius: 5px;
}

.prose ul,
.prose ol {
  margin: 0 0 1.45em 30px;
}

.prose li {
  padding: 5px;
}

.prose ul li {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--accent);
}

.crumb li:not(:last-child)::after {
  content: "→";
  margin-left: 8px;
  color: #bbb;
}

/* Ticker */
.offer-ticker {
  width: 100%;
  overflow: hidden;
  margin: 28px 0;
  padding: 12px 0;
  background:
    radial-gradient(circle at center, rgba(13, 148, 136, 0.18), transparent 55%),
    linear-gradient(180deg, #07161b 0, #041014 100%);
  border-top: 2px solid #2dd4bf;
  border-bottom: 2px solid #e85d04;
  box-shadow:
    0 0 18px rgba(45, 212, 191, 0.22),
    0 0 28px rgba(232, 93, 4, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 42px;
  white-space: nowrap;
  animation: 22s linear infinite ticker-move;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  color: #5eead4;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-shadow:
    0 0 6px rgba(45, 212, 191, 0.95),
    0 0 14px rgba(232, 93, 4, 0.55),
    0 2px 0 rgba(0, 0, 0, 0.9);
}

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

.offer-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.gate-ticker-home,
.gate-bonus-pack-ftd,
.gate-bonus-pack-ndb,
.gate-bonus-pack-reload,
.gate-bonus-pack-third,
.gate-bonus-pack-fourth,
.gate-bonus-pack-any,
.gate-bonus-pack-bday,
.gate-login-pack-ftd,
.gate-login-pack-reload,
.gate-login-areas {
  display: block;
}

/* Bonus hero */
.offer-hero {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto;
  padding: 38px 26px 34px;
  border-radius: 34px;
  background: var(--violet);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-hero h2,
.offer-hero .offer-hero-title {
  max-width: 850px;
  margin: 0 auto 16px;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 900;
  color: #fff;
}

.offer-hero p {
  max-width: 850px;
  margin: 0 auto 24px;
  padding: 0;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto 30px;
}

.offer-grid div {
  min-width: 0;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.offer-grid span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.offer-grid strong {
  display: block;
  font-size: 20px;
  color: #fff;
}

.gate-hero-home,
.gate-hero-bonus,
.gate-login-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 18px 42px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 0 rgba(196, 78, 34, 0.85);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gate-hero-home:hover,
.gate-hero-bonus:hover,
.gate-login-code:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 0 rgba(196, 78, 34, 0.85);
}

.offer-note {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

.code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 10px;
  background: var(--gold);
  color: #111;
  font-size: 1.15em;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 0 rgba(196, 78, 34, 0.65);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.facts > div {
  padding: 16px 14px;
  text-align: center;
  background: var(--violet-2);
  border-radius: 16px;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.25);
}

.facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.facts span {
  color: #fff;
  font-weight: 800;
}

.gate-facts-home,
.gate-facts-bonus,
.gate-facts-login {
  display: block;
}

.cta-row {
  width: 100%;
  text-align: center;
  margin: 24px 0;
}

.gate-yellow-promos,
.gate-yellow-security,
.gate-yellow-login,
.gate-vip-bonus,
.gate-reset-login,
.gate-ndb-login {
  display: inline-block;
  min-width: 340px;
  padding: 18px 46px 16px;
  background: var(--gold-2);
  color: #000;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  border-radius: 999px;
  box-shadow:
    0 7px 0 var(--gold-shadow),
    0 10px 18px rgba(0, 0, 0, 0.22);
  transition: 0.18s ease-in-out;
}

.gate-yellow-promos:hover,
.gate-yellow-security:hover,
.gate-yellow-login:hover,
.gate-vip-bonus:hover,
.gate-reset-login:hover,
.gate-ndb-login:hover {
  background: #ffb08a;
  transform: translateY(-2px);
}

.gate-reset-login,
.gate-ndb-login,
.gate-vip-bonus {
  font-size: 22px;
  min-width: 260px;
  padding: 14px 28px;
}

/* Steps / cards */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.steps article {
  background: #f7f3ff;
  border: 1px solid #ece4ff;
  border-radius: 16px;
  padding: 16px;
}

.steps b {
  display: block;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 8px;
}

.safe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.safe-grid div {
  background: var(--footer);
  color: var(--gold);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  font-weight: 800;
}

/* Footer */
.foot {
  overflow: hidden;
  background: var(--footer);
  color: #777;
  padding: 30px 0;
}

.foot-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
}

.foot-badges a {
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  background: #1a1a1a;
}

.foot-badges a:hover {
  color: #fff;
  text-decoration: underline;
}

.foot-badges a:has(img) {
  border: 0;
  background: transparent;
  padding: 0;
}

.foot-badges img {
  max-width: 150px;
  height: auto;
  background: #fff;
  border-radius: 5px;
  padding: 6px;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-grid p,
.foot-copy p {
  margin: 5px 0;
  color: #777;
  font-size: 16px;
  line-height: 1.5;
}

.foot-grid > div {
  flex: 1 1 320px;
}

.foot-copy {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.legal-line {
  margin-top: 12px;
  color: #aaa;
  font-weight: 700;
}

.page-404 {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-404 h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

/* Login split panel */
.access-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin: 24px 0;
  background: linear-gradient(180deg, #24105f, #160a3d);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
}

.access-panel h2,
.access-panel p {
  color: #fff;
}

.access-lead {
  margin: 0 0 12px;
  padding: 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
}

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

.gate-login-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .mast-inner,
  .mast {
    min-height: 60px;
  }

  .mast .wrap {
    width: 100%;
    max-width: 100%;
  }

  .nav-primary {
    display: none;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    padding: 6px 0;
  }

  .brand img {
    width: 96px;
    height: auto;
    max-height: 42px;
  }

  .mast-actions {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin-left: auto;
    position: relative;
    z-index: 50;
  }

  .burger span {
    background: var(--ink-strong);
  }

  .nav-toggle:checked ~ .mobile-panel {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 0;
    background: rgba(45, 52, 54, 0.95);
    z-index: 80;
  }

  .mobile-card {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 92vw);
    background: var(--paper);
    padding: 45px 30px;
    overflow: auto;
  }

  .mobile-card nav a,
  .mobile-card .gate-mob-login,
  .mobile-card .gate-mob-register {
    display: block;
    margin: 10px 0;
    padding: 10px 0;
    /* color: #151515; */
    text-decoration: none;
    font-weight: 700;
  }

  .close-nav {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
    color: #151515;
  }
}

@media (max-width: 768px) {
  .mast-actions .gate-mast-login,
  .mast-actions .gate-mast-register {
    padding: 7px 9px 6px;
    margin-left: 0;
    font-size: 11px;
  }

  .gate-mast-login,
  .gate-mob-login {
    min-width: 0;
  }

  .gate-mast-register,
  .gate-mob-register {
    min-width: 0;
  }

  .offer-hero {
    padding: 30px 18px 28px;
    border-radius: 24px;
  }

  .offer-hero h2,
  .offer-hero .offer-hero-title {
    font-size: 29px;
  }

  .offer-hero p,
  .offer-badge {
    font-size: 14px;
  }

  .offer-grid,
  .facts,
  .steps,
  .safe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gate-hero-home,
  .gate-hero-bonus,
  .gate-login-code {
    width: 100%;
    min-width: 0;
    font-size: 24px;
    padding: 17px 20px;
  }

  .gate-yellow-promos,
  .gate-yellow-security,
  .gate-yellow-login {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    font-size: 26px;
    padding: 16px 28px 14px;
  }

  .ticker-track span {
    font-size: 15px;
  }

  .access-panel {
    grid-template-columns: 1fr;
  }

  .foot-grid > div {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .prose h1 {
    font-size: 1.777em;
  }

  .facts,
  .safe-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 84px;
    max-height: 38px;
  }

  .mast-actions {
    display: none;
  }

  .burger {
    margin-left: auto;
  }
}

/* Promo hero */
.promo-hero {
  --hero-purple: var(--hero);
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  margin: 0 -15px 8px;
  overflow: hidden;
  background: var(--hero) url("/images/main-hero.webp") 36% center / cover no-repeat;
}

.promo-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpolygon fill='%23f4f8fa' points='0,0 18,0 9,14'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 18px 14px;
}

.promo-hero-copy {
  position: relative;
  z-index: 1;
  width: min(360px, 44%);
  padding: 36px 12px 28px 20px;
  text-align: center;
  color: #fff;
  font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.35);
}

.prose .promo-hero p {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.promo-hero-kicker,
.promo-hero-sub {
  margin: 0;
  padding: 0;
  font-size: clamp(22px, 3.2vw, 32px);
  letter-spacing: 0.5px;
}

.promo-hero-amount {
  margin: 6px 0 4px;
  padding: 0;
  color: var(--gold);
  font-size: clamp(36px, 5.4vw, 52px);
  letter-spacing: 0.5px;
}

.promo-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  margin-top: 16px;
  padding: 11px 28px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-family: Roboto, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-shadow: none;
  box-shadow: 0 4px 0 var(--gold-shadow);
}

/* Bonus ticket packs */
.promo-pack {
  --pack: #e45a7c;
  --pack-dark: #b33d5c;
  display: flex;
  width: 100%;
  min-height: 248px;
  margin: 1.45em 0;
  overflow: hidden;
  background: #222;
  color: #eee;
}

.promo-pack--flip {
  flex-direction: row-reverse;
}

.promo-pack--pink {
  --pack: #e45a7c;
  --pack-dark: #b33d5c;
}

.promo-pack--orange {
  --pack: #ef9640;
  --pack-dark: #c46e22;
}

.promo-pack--lime {
  --pack: #9bc43a;
  --pack-dark: #6f9224;
}

.promo-pack--teal {
  --pack: #4eb5a8;
  --pack-dark: #2e857b;
}

.promo-pack--blue {
  --pack: #4bb8f0;
  --pack-dark: #2a88b8;
}

.promo-pack--maroon {
  --pack: #b4454a;
  --pack-dark: #8a2e33;
}

.promo-pack--violet {
  --pack: #5a65a8;
  --pack-dark: #3d467c;
}

.promo-pack-media {
  position: relative;
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  overflow: hidden;
  background: var(--pack);
  min-height: 220px;
}

.prose .promo-pack-media img,
.promo-pack-media img {
  width: auto;
  max-width: 92%;
  max-height: 230px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
}

.promo-pack-stamp {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10px;
  padding: 22px 6px 6px;
  background: linear-gradient(180deg, transparent, #6a2aa8 42%, #6a2aa8);
  text-align: center;
  transform: rotate(-7deg);
  line-height: 1.05;
  pointer-events: none;
}

.promo-pack-stamp b,
.promo-pack-stamp span {
  display: block;
  font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #3b1468, 1px 1px 0 #fff;
}

.promo-pack-stamp b {
  color: var(--gold);
  font-size: 22px;
}

.promo-pack-stamp span {
  color: #fff;
  font-size: 13px;
}

.promo-pack-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 18px 16px;
}

.promo-pack-ribbon {
  position: relative;
  margin: 0 -18px 12px;
  padding: 10px 18px;
  background: var(--pack);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.promo-pack:not(.promo-pack--flip) .promo-pack-ribbon::after,
.promo-pack--flip .promo-pack-ribbon::before {
  content: "";
  position: absolute;
  bottom: -8px;
  border-style: solid;
}

.promo-pack:not(.promo-pack--flip) .promo-pack-ribbon::after {
  right: 0;
  border-width: 8px 8px 0 0;
  border-color: var(--pack-dark) transparent transparent transparent;
}

.promo-pack--flip .promo-pack-ribbon::before {
  left: 0;
  border-width: 8px 0 0 8px;
  border-color: var(--pack-dark) transparent transparent transparent;
}

.prose .promo-pack-body p,
.promo-pack-body p {
  flex: 1 1 auto;
  margin: 0 0 12px;
  padding: 0;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.45;
}

.promo-pack-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.promo-pack-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 26px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 0 var(--gold-shadow);
}

.promo-pack-terms {
  color: var(--pack);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vip-board {
  margin: 1.45em 0;
  padding: 22px 16px 28px;
  background: #0f5c68 url("/images/red-bg.webp") repeat;
  color: #fff;
  text-align: center;
}

.prose .vip-board-title,
.vip-board-title {
  margin: 0 0 18px;
  padding: 0;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1.25;
  text-transform: uppercase;
}

.vip-board-title span {
  color: var(--gold);
}

.vip-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 10px;
  align-items: start;
}

.vip-board-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.prose .vip-board-item img,
.vip-board-item img {
  width: 148px;
  max-width: 100%;
  height: auto;
  margin: 0 0 8px;
  border-radius: 0;
}

.vip-board-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.vip-board-item span {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .vip-board-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 280px;
    margin: 0 auto;
  }

  .prose .vip-board-item img,
  .vip-board-item img {
    width: 184px;
  }
}

@media (max-width: 768px) {
  .promo-hero {
    min-height: 340px;
    margin: 0 0 8px;
    background-position: 52% 42%;
    background-size: cover;
  }

  .promo-hero-copy {
    width: min(100%, 420px);
    padding: 42px 16px 24px;
    background: linear-gradient(90deg, rgba(15, 92, 104, 0.94) 0%, rgba(15, 92, 104, 0.68) 62%, transparent);
  }

  .promo-pack,
  .promo-pack--flip {
    flex-direction: column;
    min-height: 0;
  }

  .promo-pack-media {
    flex-basis: auto;
    min-height: 190px;
  }

  .promo-pack-ribbon {
    font-size: 13px;
  }

  .prose .promo-pack-body p,
  .promo-pack-body p {
    font-size: 13px;
  }

  .promo-pack-actions {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
