/* ============================================================
   FASTSPIN MALAYSIA — Sport-Editorial System
   ============================================================ */

:root {
  --cream: #F6F3ED;
  --ink: #171717;
  --red: #EF4136;
  --orange: #FBB040;
  --white: #FFFFFF;

  --font-display: 'Anton', Impact, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --edge: 28px;
  /* diagonal seam height */
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
}

.ticker__track {
  display: inline-flex;
  gap: 2.5em;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

.ticker__track span {
  flex: 0 0 auto;
}

.ticker__track span:nth-child(odd) {
  color: var(--orange);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============ ENTRANCE MOTION ============ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {

  .eyebrow,
  .hero-title__row,
  .lede,
  .hero-games,
  .hero-games__stack,
  .ticket {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-block;
  transition: opacity 0.15s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 26px;
  width: auto;
  filter: drop-shadow(1px 0 0 var(--ink)) drop-shadow(-1px 0 0 var(--ink)) drop-shadow(0 1px 0 var(--ink)) drop-shadow(0 -1px 0 var(--ink));
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-cta__register {
  animation: header-cta-bounce 1.8s ease-in-out infinite;
}

.header-cta__register:hover {
  animation-play-state: paused;
}

@keyframes header-cta-bounce {

  0%,
  100% {
    transform: translate(0, 0);
    box-shadow: 5px 5px 0 var(--ink);
  }

  50% {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--ink);
  }
}

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

.nav-edge-tab {
  display: none;
  position: absolute;
  top: 50%;
  left: -40px;
  width: 44px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 24px 0 0 24px;
  padding: 22px 0;
  cursor: pointer;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: -2px 0 6px rgba(23, 23, 23, 0.12);
  transition: transform 0.2s ease;
}

.nav-edge-tab:hover,
.nav-edge-tab:focus-visible {
  transform: translateY(-50%) translateX(-4px);
}

.nav-edge-tab:active {
  transform: translateY(-50%) translateX(-2px);
}

.nav-close {
  display: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 0 100%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 5px 5px 0 var(--ink);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-primary {
  background: var(--red);
  border-color: var(--ink);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline--dark {
  border-color: var(--cream);
  color: var(--cream);
  box-shadow: 5px 5px 0 var(--cream);
}

.btn-outline--dark:hover {
  box-shadow: 7px 7px 0 var(--cream);
}

.btn-light {
  background: var(--cream);
  border-color: var(--ink);
  color: var(--ink);
}

/* ============ HERO ============ */
.hero {
  position: relative;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 56px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
  padding-top: 10px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  animation: fade-up 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) both;
}

.hero-title {
  margin: 0 0 28px;
}

.hero-title__row {
  display: block;
  font-size: clamp(42px, 5.6vw, 90px);
  line-height: 0.94;
  animation: fade-up 0.65s cubic-bezier(0.16, 0.8, 0.3, 1) both;
}

.hero-title__row:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-title__row:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-title__row--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.text-red-inv {
  color: var(--red);
}

.lede {
  font-size: 18px;
  max-width: 48ch;
  animation: fade-up 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) 0.26s both;
}

.lede a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.lede a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---- hero games (full-bleed carousel above copy/ticket) ---- */
.hero-games {
  width: 100%;
  overflow: hidden;
  padding: 24px 0 60px;
  animation: fade-up 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) 0.34s both;
}

.hero-games__stack {
  display: flex;
  width: max-content;
  padding-left: 41px;
  animation: hero-games-scroll 38s linear infinite;
}

.hero-games:hover .hero-games__stack {
  animation-play-state: paused;
}

@keyframes hero-games-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-games__card {
  position: relative;
  flex: 0 0 auto;
  width: 190px;
  height: 190px;
  margin: 0 0 0 -41px;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-games__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(1) contrast(1.05); */
}

/* .hero-games__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  mix-blend-mode: multiply;
  opacity: 0.55;
} */

/* .hero-games__card:nth-child(even)::after {
  background: var(--orange);
  opacity: 0.5;
} */

.hero-games__card:nth-child(12n+1) {
  transform: rotate(-9deg);
  z-index: 1;
}

.hero-games__card:nth-child(12n+2) {
  transform: rotate(6deg);
  z-index: 2;
}

.hero-games__card:nth-child(12n+3) {
  transform: rotate(-5deg);
  z-index: 3;
}

.hero-games__card:nth-child(12n+4) {
  transform: rotate(8deg);
  z-index: 4;
}

.hero-games__card:nth-child(12n+5) {
  transform: rotate(-7deg);
  z-index: 5;
}

.hero-games__card:nth-child(12n+6) {
  transform: rotate(4deg);
  z-index: 6;
}

.hero-games__card:nth-child(12n+7) {
  transform: rotate(-3deg);
  z-index: 7;
}

.hero-games__card:nth-child(12n+8) {
  transform: rotate(7deg);
  z-index: 8;
}

.hero-games__card:nth-child(12n+9) {
  transform: rotate(-6deg);
  z-index: 9;
}

.hero-games__card:nth-child(12n+10) {
  transform: rotate(5deg);
  z-index: 10;
}

.hero-games__card:nth-child(12n+11) {
  transform: rotate(-8deg);
  z-index: 11;
}

.hero-games__card:nth-child(12n+12) {
  transform: rotate(6deg);
  z-index: 12;
}

/* ---- ticket (player pass) ---- */
.ticket {
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 3px solid var(--ink);
  border-left-style: dashed;
  padding: 20px 20px 18px;
  transform: rotate(1.4deg);
  box-shadow: 8px 8px 0 var(--ink);
  animation: fade-in 0.8s ease-out 0.2s both;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: -12px;
  width: 21px;
  height: 21px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.ticket::before {
  top: -12px;
}

.ticket::after {
  bottom: -12px;
}

.ticket__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 11px;
  margin-bottom: 16px;
}

.ticket__label {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
}

.ticket__serial {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(23, 23, 23, 0.5);
  white-space: nowrap;
}

.ticket__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

.ticket__stats {
  border-top: 1px solid rgba(23, 23, 23, 0.15);
  margin-bottom: 18px;
}

.ticket__stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(23, 23, 23, 0.3);
}

.ticket__stats span {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket__stats em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.55);
  text-align: right;
}

.ticket__register {
  display: inline-flex;
  margin-bottom: 20px;
}

.ticket__barcode {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-bottom: 8px;
}

.ticket__barcode span {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--ink);
}

.ticket__barcode span:nth-child(3n) {
  width: 2px;
  height: 68%;
}

.ticket__barcode span:nth-child(5n) {
  width: 5px;
}

.ticket__barcode span:nth-child(7n) {
  height: 50%;
}

.ticket__code {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(23, 23, 23, 0.5);
}

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  padding: 24px 0 56px;
}

.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.02;
  margin: 16px 0 22px;
  animation: fade-up 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) 0.08s both;
}

.page-hero .lede {
  margin-bottom: 0;
  animation: fade-up 0.6s cubic-bezier(0.16, 0.8, 0.3, 1) 0.18s both;
}

.page-hero__inner p+p {
  margin-top: 14px;
  max-width: 640px;
  color: rgba(23, 23, 23, 0.72);
}

.eff-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 16px 0 18px;
}

/* ---- legal pages (privacy policy, terms & conditions) ---- */
.legal {
  max-width: 720px;
}

.section.section--legal {
  padding-top: 24px;
}

.legal-section {
  padding-block: 32px;
  border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: none;
}

.legal-section h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 70ch;
  color: rgba(23, 23, 23, 0.75);
}

.legal-section p a {
  color: var(--ink);
  border-bottom: 1px solid var(--red);
}

.legal-closing {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(23, 23, 23, 0.72);
}

.legal-closing a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}

/* ---- hero polaroids (scattered photo stack, contained) ---- */
.hero-polaroids {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 48px;
  animation: fade-in 0.7s ease-out 0.3s both;
}

.hero-polaroids__card {
  flex: none;
  width: clamp(78px, 22vw, 168px);
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.15);
  box-shadow: 6px 6px 0 rgba(23, 23, 23, 0.18);
  padding: clamp(6px, 1.4vw, 10px) clamp(6px, 1.4vw, 10px) clamp(10px, 2vw, 14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-polaroids__card:not(:first-child) {
  margin-left: -14px;
}

.hero-polaroids__card:nth-child(1) {
  transform: rotate(-6deg);
  z-index: 1;
  margin-top: 10px;
}

.hero-polaroids__card:nth-child(2) {
  transform: rotate(4deg);
  z-index: 2;
  margin-top: -4px;
}

.hero-polaroids__card:nth-child(3) {
  transform: rotate(-3deg);
  z-index: 3;
  margin-top: 14px;
}

.hero-polaroids__card:nth-child(4) {
  transform: rotate(5deg);
  z-index: 4;
  margin-top: 0;
}

@media (max-width:420px) {
  .hero-polaroids {
    row-gap: 6px;
  }

  .hero-polaroids__card {
    width: clamp(104px, 40vw, 148px);
    margin: 0;
  }

  .hero-polaroids__card:nth-child(3) {
    margin-left: 0;
    margin-top: 4px;
  }

  .hero-polaroids__card:nth-child(4) {
    margin-top: -6px;
  }
}

.hero-polaroids__card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 8px 8px 0 rgba(23, 23, 23, 0.25);
  z-index: 5;
}

.hero-polaroids__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.hero-polaroids__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-polaroids__caption {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: clamp(8px, 1.6vw, 10px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- hero panels (full-bleed interlocking diagonal-cut carousel, subpages) ---- */
.hero-panels {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 400;
  margin-bottom: 40px;
  overflow: hidden;
  animation: fade-in 0.7s ease-out 0.28s both;
  touch-action: pan-y;
  cursor: grab;
}

.hero-panels.is-dragging {
  cursor: grabbing;
}

.hero-panels.is-static {
  cursor: default;
}

.hero-panels__slides {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-panels__slides.is-dragging {
  transition: none;
}

.hero-panels__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-panels__frame {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  background: var(--ink);
}

.hero-panels__frame:not(:first-child) {
  margin-left: -3.5%;
}

.hero-panels__frame:only-child {
  clip-path: none;
  margin-left: 0;
}

.hero-panels__frame:nth-child(1) {
  z-index: 1;
}

.hero-panels__frame:nth-child(2) {
  z-index: 2;
}

.hero-panels__frame:nth-child(3) {
  z-index: 3;
}

.hero-panels__frame:nth-child(4) {
  z-index: 4;
}

.hero-panels__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panels__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
  transform: scale(1);
  transition: filter 0.3s ease, transform 0.4s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.hero-panels__slides.is-dragging,
.hero-panels__slides.is-dragging * {
  user-select: none;
}

.hero-panels__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0.1;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero-panels__frame:hover img,
.hero-panels__frame:focus-within img {
  filter: brightness(1);
  transform: scale(1.08);
}

.hero-panels__frame:hover::after,
.hero-panels__frame:focus-within::after {
  opacity: 0;
}

.hero-panels__nav {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 10;
  display: flex;
  gap: 8px;
  background: rgba(23, 23, 23, 0.55);
  padding: 7px 9px;
}

.hero-panels__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1.5px solid var(--cream);
  background: transparent;
  cursor: pointer;
}

.hero-panels__dot[aria-current="true"] {
  background: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  .hero-panels__slides {
    transition: none;
  }
}

@media (max-width:960px) {
  .hero-panels {
    aspect-ratio: 1600 / 500;
  }
}

@media (max-width:560px) {
  .hero-panels {
    aspect-ratio: 1080 / 540;
    margin-bottom: 0;
  }

  .hero-panels__frame img {
    filter: brightness(1);
  }

  .hero-panels__frame::after {
    opacity: 0;
  }

  .hero-panels__nav {
    right: 10px;
    bottom: 10px;
    padding: 6px 7px;
    gap: 6px;
    max-width: calc(100% - 20px);
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-panels__dot {
    width: 7px;
    height: 7px;
  }

}

/* ============ SECTION SCAFFOLD ============ */
.section {
  position: relative;
  padding: 96px 0;
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
  clip-path: polygon(0 var(--edge), 100% 0, 100% calc(100% - var(--edge)), 0 100%);
  margin: calc(var(--edge) * -1) 0;
  padding: calc(96px + var(--edge)) 0;
  z-index: 1;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.section-dark .section-num {
  color: var(--orange);
}

.section-head h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-bottom: 28px;
}

.section-lede {
  font-size: 17px;
  max-width: 66ch;
  margin-bottom: 40px;
}

.section-dark .section-lede {
  color: rgba(246, 243, 237, 0.8);
}

.section-foot {
  margin-top: 40px;
  max-width: 70ch;
  color: rgba(246, 243, 237, 0.75);
  font-size: 15px;
}

.section-light .section-foot {
  color: rgba(23, 23, 23, 0.72);
}

.section-foot a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.section-foot a:hover {
  color: var(--white);
  border-color: var(--white);
}

.section-light .section-foot a {
  color: var(--red);
  border-bottom-color: var(--red);
}

.section-light .section-foot a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ---- split (about section) ---- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
}

.split__head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

.split__body {
  border-left: 3px solid var(--ink);
  padding-left: 40px;
  align-self: center;
}

.section-dark .split__body {
  border-left-color: var(--cream);
  border-top-color: var(--cream);
}

@media (max-width:640px) {
  #who-is-behind .split {
    gap: 0;
  }

  #who-is-behind .split__body {
    padding-top: 20px;
  }
}

.split__body p {
  font-size: 17px;
  max-width: 56ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  margin-top: 8px;
}

.text-link span {
  transition: transform 0.15s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-dark .text-link {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---- lineup (demo games list) ---- */
.lineup {
  border-top: 2px solid rgba(246, 243, 237, 0.25);
}

.lineup__row {
  display: grid;
  grid-template-columns: 56px 320px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 2px solid rgba(246, 243, 237, 0.25);
}

.lineup__index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange);
  text-transform: uppercase;
}

.lineup__title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.lineup__desc {
  color: rgba(246, 243, 237, 0.75);
  font-size: 15px;
}

.cta-row {
  margin-top: 48px;
}

.cta-row p {
  color: rgba(246, 243, 237, 0.85);
  margin-bottom: 24px;
  max-width: 70ch;
}

.cta-row a:not(.btn) {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cta-row a:not(.btn):hover {
  color: var(--white);
  border-color: var(--white);
}

/* ---- stat list (why different — oversized ghost numerals) ---- */
.stat-list {
  border-top: 3px solid var(--ink);
}

.stat-list__row {
  display: grid;
  grid-template-columns: clamp(80px, 12vw, 140px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 2px solid var(--ink);
}

.stat-list__num {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.stat-list__row:nth-child(even) .stat-list__num {
  -webkit-text-stroke: 2px var(--red);
}

.stat-list__body h3 {
  font-size: clamp(19px, 2.2vw, 26px);
  margin-bottom: 8px;
}

.stat-list__body p {
  font-size: 15px;
  max-width: 52ch;
  color: rgba(23, 23, 23, 0.72);
}

@media (max-width:640px) {
  .stat-list__row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .stat-list__num {
    font-size: 40px;
  }
}

/* ---- tale of the tape (catalogue grid, subpages) ---- */
.tape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.tape__item {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.tape__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
}

.tape__item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 12px 0 10px;
  color: var(--ink);
}

.tape__item p {
  font-size: 14.5px;
  color: rgba(23, 23, 23, 0.75);
}

/* ---- game grid (demo / slots game cards) ---- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.game-card {
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.game-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.06);
}

.game-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  padding: 14px 16px 0;
}

.game-card__actions {
  margin-top: auto;
  padding: 14px 16px 16px;
}

.game-card__actions .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 12px;
  box-shadow: 4px 4px 0 var(--ink);
}

.game-card__actions .btn:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

@media (max-width:960px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .game-card__name {
    font-size: 15px;
  }
}

.body-note {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.section-dark .body-note {
  color: rgba(246, 243, 237, 0.9);
}

/* ---- dash list (generic bulleted list) ---- */
.dash-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.15);
  font-size: 16px;
}

.dash-list li:first-child {
  border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.section-dark .dash-list li {
  border-bottom-color: rgba(246, 243, 237, 0.2);
  color: rgba(246, 243, 237, 0.85);
}

.section-dark .dash-list li:first-child {
  border-top-color: rgba(246, 243, 237, 0.2);
}

/* ---- contact methods (icon link cards) ---- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.section-dark .contact-methods {
  border-color: rgba(246, 243, 237, 0.2);
}

.contact-methods__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 0.2s ease;
}

.section-dark .contact-methods__item {
  border-color: rgba(246, 243, 237, 0.2);
}

.contact-methods__item:hover {
  background: rgba(239, 65, 54, 0.08);
}

.contact-methods__icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}

.contact-methods__item:hover .contact-methods__icon {
  transform: scale(1.1);
}

.contact-methods__icon--whatsapp {
  color: #25d366;
}

.contact-methods__icon--telegram {
  color: #229ed9;
}

.contact-methods__name {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-methods__desc {
  font-size: 14.5px;
  color: rgba(23, 23, 23, 0.7);
}

.section-dark .contact-methods__desc {
  color: rgba(246, 243, 237, 0.75);
}

@media (max-width:720px) {
  .contact-methods {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-methods__item {
    border-right: none;
  }
}

/* ---- game list (image + name grid, opens details in a modal) ---- */
.game-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  margin-top: 24px;
}

.section-dark .game-list {
  border-color: rgba(246, 243, 237, 0.2);
}

.game-list__item {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.section-dark .game-list__item {
  border-color: rgba(246, 243, 237, 0.2);
}

.game-list__trigger {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.game-list__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.game-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-list__trigger:hover .game-list__thumb img {
  transform: scale(1.08);
}

.game-list__name {
  font-family: var(--font-display);
  font-size: 18px;
  padding: 16px 16px 4px;
  transition: color 0.15s ease;
}

.game-list__trigger:hover .game-list__name {
  color: var(--orange);
}

.game-list__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.game-list__cta span {
  transition: transform 0.15s ease;
}

.game-list__trigger:hover .game-list__cta span {
  transform: translateX(4px);
}

.game-list__viewall {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: inherit;
  background: rgba(246, 243, 237, 0.04);
  transition: background 0.15s ease, color 0.15s ease;
}

.section-light .game-list__viewall {
  background: rgba(23, 23, 23, 0.03);
}

.game-list__viewall-text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
}

.game-list__viewall-arrow {
  font-family: var(--font-mono);
  font-size: 20px;
  transition: transform 0.15s ease;
}

.game-list__viewall:hover {
  color: var(--red);
  background: rgba(246, 243, 237, 0.08);
}

.section-light .game-list__viewall:hover {
  color: var(--red);
  background: rgba(23, 23, 23, 0.05);
}

.game-list__viewall:hover .game-list__viewall-arrow {
  transform: translateX(4px);
}

@media (max-width:960px) {
  .game-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .game-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-list__name {
    font-size: 16px;
  }
}

/* ---- game modal ---- */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.game-modal[hidden] {
  display: none;
}

.game-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 32px 28px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.game-modal.is-open .game-modal__backdrop {
  opacity: 1;
}

.game-modal.is-open .game-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.game-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  background: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.game-modal__media {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
}

.game-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-modal__title {
  font-size: 26px;
  margin-bottom: 12px;
}

.game-modal__body {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.75);
}

/* ---- rtp table (slots comparison) ---- */
.rtp-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
}

.rtp-table th,
.rtp-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.15);
  font-size: 15px;
}

.rtp-table th {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 3px solid var(--ink);
}

.rtp-table td:first-child {
  font-family: var(--font-display);
  font-size: 16px;
}

.rtp-table td:nth-child(2) {
  font-family: var(--font-mono);
  font-weight: 700;
}

.section-dark .rtp-table th,
.section-dark .rtp-table td {
  border-bottom-color: rgba(246, 243, 237, 0.2);
}

.section-dark .rtp-table th {
  border-bottom-color: var(--cream);
}

/* ---- qa grid (understanding mechanics) ---- */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 8px;
}

.qa-grid h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 12px;
  color: var(--red);
}

.qa-grid p {
  font-size: 15px;
  max-width: 48ch;
}

@media (max-width:720px) {
  .qa-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

/* ---- steps (login/register) ---- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 16px;
}

.steps__line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(246, 243, 237, 0.25);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.step__num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-size: 20px;
  background: var(--red);
  color: var(--white);
}

.step__toggle h3 {
  flex: 1;
  font-size: 22px;
  margin: 0;
  transition: color 0.15s ease;
}

.step__toggle:hover h3 {
  color: var(--orange);
}

.step__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.15s ease;
}

.step__toggle:hover .step__icon {
  transform: scale(1.15);
}

.step__icon::before,
.step__icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: transform 0.2s ease;
}

.step__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.step__icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
}

.step__toggle[aria-expanded="true"] .step__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.step__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.step__answer p {
  padding-top: 16px;
  padding-left: 66px;
  font-size: 15px;
  color: rgba(246, 243, 237, 0.8);
}

.section-light .steps__line {
  background: rgba(23, 23, 23, 0.15);
}

.section-light .step__answer p {
  color: rgba(23, 23, 23, 0.72);
}


/* ---- versus (android/ios) ---- */
.versus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 48px 0;
}

.versus__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 8px;
}

.versus__side--right {
  align-items: flex-end;
  text-align: right;
}

.versus__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  margin-bottom: 16px;
}

.versus__side p {
  margin-bottom: 24px;
  max-width: 44ch;
}

.versus__mid {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  -webkit-text-stroke: 1px var(--ink);
  text-align: center;
}

/* ---- mobile play (content + app banner image) ---- */
#mobile-play .section-inner {
  max-width: 1400px;
}

.mobile-play__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  grid-template-areas:
    "head   media"
    "lede   media"
    "versus versus";
  gap: 8px 56px;
  align-items: start;
}

.mobile-play__content {
  display: contents;
}

#mobile-play .section-head {
  grid-area: head;
}

#mobile-play .section-lede {
  grid-area: lede;
}

.mobile-play__media {
  grid-area: media;
  margin: 0;
}

.mobile-play__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

#mobile-play .versus {
  grid-area: versus;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin-top: 32px;
  text-align: left;
}

#mobile-play .versus__side--right {
  align-items: flex-end;
  text-align: right;
}

#mobile-play .versus__mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.versus__icon {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
}

.versus__icon--android {
  color: var(--ink);
}

.versus__icon--ios {
  color: var(--ink);
}

@media (max-width:960px) {
  .mobile-play__layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "lede"
      "media"
      "versus";
  }

  #mobile-play .versus {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---- play safe ---- */
.section-safety {
  padding: 96px 0;
  background: var(--white);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.safety-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.15);
  font-size: 16px;
}

.safety-list li:first-child {
  border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.safety-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.safety-stamp {
  width: 110px;
  height: 110px;
  border: 3px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  flex-shrink: 0;
}

.safety-stamp--mini {
  display: none;
}

.helpline {
  margin-top: 40px;
  border-left: 4px solid var(--red);
  padding: 20px 28px;
  background: var(--cream);
}

.helpline p {
  margin-bottom: 6px;
}

.helpline__number {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.helpline__number a {
  color: var(--red);
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.helpline__number a:hover {
  border-color: var(--red);
}

/* ---- FAQ ---- */
.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 2px solid var(--ink);
}

.faq-question-heading {
  margin: 0;
  font: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--red);
}

.faq-question span:first-child {
  transition: transform 0.15s ease;
}

.faq-question:hover span:first-child {
  transform: translateX(6px);
}

.faq-question:hover .faq-icon {
  transform: scale(1.15);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  transition: transform 0.15s ease;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  transition: transform 0.2s ease;
}

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

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

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 26px;
  max-width: 75ch;
  color: rgba(23, 23, 23, 0.78);
}

.faq-answer p a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}

.faq-answer p a:hover {
  color: var(--ink);
}

/* ---- final CTA ---- */
.section-cta {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  clip-path: polygon(0 var(--edge), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--edge) * -1);
}

.section-cta h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 24px;
  padding-top: var(--edge);
}

.section-cta p {
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.section-cta p a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.15s ease;
}

.section-cta p a:hover {
  border-color: var(--white);
}

.section-cta .btn-light {
  box-shadow: 5px 5px 0 var(--ink);
}

/* ============ GAME CARDS (new games showcase) ============ */
.game-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.game-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.16);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.game-card:hover,
.game-card:focus-visible {
  box-shadow: 0 16px 32px rgba(23, 23, 23, 0.24);
  transform: translateY(-2px);
}

.game-card__media {
  position: relative;
  aspect-ratio: 540 / 460;
  margin: 0;
  overflow: hidden;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.06);
}

.game-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--tint, var(--ink)));
  pointer-events: none;
}

.game-card__new {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}

.game-card__date {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.game-card__date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.game-card__body {
  position: relative;
  background: var(--tint, var(--ink));
  color: var(--white);
  padding: 16px 16px 18px;
}

.game-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(max-content, 1fr));
  gap: 6px;
}

.game-card__stats--secondary {
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(246, 243, 237, 0.16);
}

.game-card__stat {
  min-width: 0;
}

.game-card__stat-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
}

.game-card__icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: var(--orange);
}

.game-card__stat-label {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(246, 243, 237, 0.6);
  text-transform: capitalize;
}

@media (max-width:960px) {
  .game-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:560px) {
  .game-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 72px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
}

.footer-logo {
  height: 22px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(1px 0 0 var(--red)) drop-shadow(-1px 0 0 var(--red)) drop-shadow(0 1px 0 var(--red)) drop-shadow(0 -1px 0 var(--red));
}

.footer-brand p {
  color: rgba(246, 243, 237, 0.7);
  font-size: 14px;
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.footer-nav a {
  font-size: 14.5px;
  color: rgba(246, 243, 237, 0.85);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-responsible p {
  font-size: 13.5px;
  color: rgba(246, 243, 237, 0.7);
}

.footer-responsible a {
  color: var(--orange);
  transition: color 0.15s ease;
}

.footer-responsible a:hover {
  color: var(--white);
}

.footer-responsible__number {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 243, 237, 0.15);
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(246, 243, 237, 0.55);
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width:960px) {
  :root {
    --edge: 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-title__row {
    font-size: clamp(40px, 11vw, 64px);
  }

  .ticket {
    transform: rotate(0);
    border-left-style: solid;
    border-top-style: dashed;
    max-width: 380px;
  }

  .ticket::before,
  .ticket::after {
    left: auto;
    top: -12px;
  }

  .ticket::before {
    left: 24px;
  }

  .ticket::after {
    right: 24px;
    bottom: auto;
  }

  .hero-games__stack {
    padding-left: 24px;
    animation-duration: 26s;
  }

  .hero-games__card {
    width: 110px;
    height: 110px;
    margin-left: -24px;
    box-shadow: 4px 4px 0 var(--ink);
  }

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

  .split__body {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--ink);
    padding-top: 32px;
  }

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

  .steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .steps__line {
    display: none;
  }

  .versus {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .versus__side--right {
    align-items: flex-start;
    text-align: left;
  }

  .versus__mid {
    margin: 8px 0;
  }

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

@media (max-width:720px) {
  .header-inner {
    padding: 14px 18px;
    gap: 16px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(calc(100% - 4px));
    box-shadow: -2px 0 6px rgba(23, 23, 23, 0.12);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }

  .main-nav.is-dragging {
    transition: none;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .main-nav a {
    color: var(--white);
    font-size: 22px;
  }

  .main-nav a.is-active {
    color: var(--white);
  }

  .main-nav a::after {
    background: var(--ink);
  }

  .header-cta {
    margin-left: auto;
    gap: 8px;
  }

  .header-cta .btn {
    padding: 11px 14px;
    font-size: 11px;
  }

  .nav-edge-tab {
    display: flex;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .lineup__row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .lineup__desc {
    grid-column: 2 / 3;
  }

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

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

  .section-safety .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .section-safety .section-num {
    flex-basis: 100%;
  }

  .section-safety .section-head h2 {
    margin-bottom: 0;
  }

  .safety-stamp--mini {
    display: flex;
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .safety-grid .safety-stamp {
    display: none;
  }

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

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

/* ============ DECORATIVE MASCOTS ============ */
.deco-mascot {
  display: block;
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(6px 6px 0 var(--ink));
  z-index: 20;
}

.deco-mascot--vampire {
  top: 10px;
  right: 4%;
  width: 275px;
  transform: rotate(-9deg);
}

.deco-mascot--fox-knight {
  bottom: -115px;
  right: 4%;
  width: 185px;
  transform: rotate(7deg);
}

.deco-mascot--yeti {
  bottom: -30px;
  left: 3%;
  width: 195px;
  transform: rotate(-6deg);
  z-index: 1;
}

.deco-mascot--penguin {
  top: -55px;
  right: 4%;
  width: 355px;
  transform: rotate(6deg);
}

.deco-mascot--trio {
  bottom: 10px;
  left: 1%;
  width: 275px;
  transform: rotate(-4deg);
  z-index: 20;
}

.deco-mascot--pumpkin {
  top: 88px;
  right: 60%;
  width: 170px;
  transform: rotate(-8deg);
}

.deco-mascot--trio-mobile {
  display: none;
}

@media (max-width: 960px) {
  .deco-mascot {
    filter: drop-shadow(3px 3px 0 var(--ink));
  }

  .deco-mascot--vampire {
    top: -26px;
    right: 5%;
    width: 155px;
    z-index: 20;
  }

  .deco-mascot--fox-knight {
    bottom: -100px;
    right: 7%;
    width: 140px;
    z-index: 20;
  }

  .deco-mascot--yeti {
    bottom: -15px;
    left: 3%;
    width: 150px;
    z-index: 1;
  }

  .deco-mascot--penguin {
    top: -40px;
    right: 3%;
    width: 180px;
    z-index: 20;
  }

  .deco-mascot--trio {
    display: none;
  }

  .deco-mascot--trio-mobile {
    display: block;
    bottom: -80px;
    left: 3%;
    width: 150px;
    transform: rotate(-4deg);
    z-index: 20;
  }

  .deco-mascot--pumpkin {
    top: -40px;
    right: 8%;
    width: 160px;
    z-index: 20;
  }
}