:root {
  --void: #05070a;
  --night: #0b1018;
  --panel: #111a26;
  --mist: #1c2736;
  --line: rgba(212, 175, 55, 0.22);
  --gold: #e8c56a;
  --gold-dim: #9a7b2d;
  --ember: #ff3b5c;
  --jade: #2ef2c0;
  --text: #e9eef5;
  --muted: #9aa7b8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(255, 59, 92, 0.12), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(46, 242, 192, 0.08), transparent 50%),
    linear-gradient(180deg, #06090e 0%, var(--void) 38%, #040508 100%);
  font-family: var(--font-ui);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

canvas#ember-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.55;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.92), rgba(6, 9, 14, 0.55));
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: conic-gradient(from 210deg, #2ef2c0, #e8c56a, #ff3b5c, #2ef2c0);
  padding: 2px;
  animation: spin-slow 18s linear infinite;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #070b10;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip-pill {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 26, 38, 0.65);
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .chip-pill {
    display: flex;
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 12px var(--jade);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.btn {
  --btn-bg: linear-gradient(135deg, #2a1f0a, #1a1206);
  --btn-edge: linear-gradient(120deg, #f6e27a, #c9a227 40%, #7a5a12);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  color: #0c0f14;
  background: var(--btn-bg);
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(232, 197, 106, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: var(--btn-edge);
  filter: blur(0.2px);
  opacity: 0.95;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(180deg, #ffe9a8, #e8c56a 55%, #b8922f);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 16px 44px rgba(232, 197, 106, 0.28);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-ghost {
  background: rgba(17, 26, 38, 0.55);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost::after {
  background: rgba(17, 26, 38, 0.9);
  border: 1px solid var(--line);
}

.btn-ghost::before {
  background: linear-gradient(120deg, rgba(46, 242, 192, 0.35), rgba(232, 197, 106, 0.35));
  opacity: 0.45;
}

.btn-hot {
  position: relative;
  overflow: visible;
  color: #fff;
  font-size: clamp(0.72rem, 1.35vw, 0.95rem);
  letter-spacing: 0.05em;
  padding: 0.78rem 1.1rem;
  isolation: isolate;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 200, 120, 0.35), 0 12px 40px rgba(255, 59, 92, 0.45), 0 0 28px rgba(255, 59, 92, 0.35);
  animation: btn-hot-pulse 2.4s ease-in-out infinite;
  text-align: center;
  line-height: 1.2;
  max-width: min(100%, 280px);
}

.btn-hot::before {
  background: conic-gradient(from 140deg, #ff3b5c, #ffb347, #ff3b5c, #7c3aed, #ff3b5c);
  opacity: 1;
  filter: blur(0.5px);
}

.btn-hot::after {
  background: linear-gradient(165deg, #ff5c7a 0%, #d61f4a 45%, #8b1532 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-hot:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(255, 220, 160, 0.5), 0 16px 48px rgba(255, 59, 92, 0.55), 0 0 36px rgba(255, 180, 100, 0.35);
}

@keyframes btn-hot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 200, 120, 0.35), 0 12px 40px rgba(255, 59, 92, 0.45), 0 0 28px rgba(255, 59, 92, 0.35);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 230, 180, 0.55), 0 14px 48px rgba(255, 59, 92, 0.6), 0 0 40px rgba(255, 200, 120, 0.45);
  }
}

.hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 242, 192, 0.35);
  background: rgba(46, 242, 192, 0.06);
  color: var(--jade);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float-y 5s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #fff6cf, #e8c56a 40%, #ff3b5c 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(232, 197, 106, 0.25);
}

.lede {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(17, 26, 38, 0.85), rgba(8, 12, 18, 0.65));
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold);
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 52vw, 460px);
}

.portal-composition {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1.08;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
}

.portal-ring-rotate {
  position: absolute;
  inset: -2%;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: spin-slow 40s linear infinite;
}

.portal-ring {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 2px dashed rgba(232, 197, 106, 0.5);
  box-shadow: 0 0 0 1px rgba(232, 197, 106, 0.12), inset 0 0 48px rgba(232, 197, 106, 0.06), 0 0 42px rgba(232, 197, 106, 0.1);
  transform: rotate(-8deg);
}

.portal-core {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 88%;
  margin: 6% auto 0;
  padding: 1rem 0.85rem 1rem;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(22, 32, 48, 0.96), rgba(8, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.portal-caption {
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}

.portal-kicker {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jade);
  border: 1px solid rgba(46, 242, 192, 0.35);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.portal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.portal-note {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.card-fan {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 200px;
}

.card-fan__hit {
  position: absolute;
  width: 46%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.card-fan__hit:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
}

.card-fan__hit img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-fan__hit:nth-child(1) {
  left: 2%;
  top: 22%;
  transform: rotate(-11deg);
  z-index: 1;
}

.card-fan__hit:nth-child(2) {
  left: 27%;
  top: 8%;
  transform: rotate(-3deg);
  z-index: 3;
}

.card-fan__hit:nth-child(3) {
  right: 2%;
  top: 20%;
  transform: rotate(11deg);
  z-index: 2;
}

.portal-composition:hover .card-fan__hit:nth-child(1) {
  transform: rotate(-14deg) translateY(-5px);
}

.portal-composition:hover .card-fan__hit:nth-child(2) {
  transform: rotate(-1deg) translateY(-9px) scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 28px 60px rgba(232, 197, 106, 0.18);
}

.portal-composition:hover .card-fan__hit:nth-child(3) {
  transform: rotate(14deg) translateY(-5px);
}

.jackpot-marquee {
  max-width: 1240px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 92, 0.35);
  background: linear-gradient(90deg, rgba(255, 59, 92, 0.12), rgba(17, 26, 38, 0.9), rgba(46, 242, 192, 0.12));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
}

.marquee-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05070a, transparent 18%, transparent 82%, #05070a);
  z-index: 1;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  padding: 0.65rem 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track strong {
  color: var(--gold);
  font-weight: 700;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
}

.section-head p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
}

.section-promo {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.promo-card {
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 59, 92, 0.35);
  background: radial-gradient(900px 280px at 0% 0%, rgba(255, 59, 92, 0.2), transparent 55%),
    radial-gradient(700px 240px at 100% 20%, rgba(46, 242, 192, 0.12), transparent 50%),
    linear-gradient(155deg, rgba(20, 14, 22, 0.98), rgba(8, 10, 16, 0.95));
  box-shadow: 0 24px 70px rgba(255, 59, 92, 0.12), var(--shadow);
}

.promo-card__ribbon {
  position: absolute;
  top: 1.1rem;
  right: -2.5rem;
  transform: rotate(38deg);
  background: linear-gradient(90deg, #ffe9a8, #e8c56a);
  color: #1a1206;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 3.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.promo-card__body {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  align-items: center;
}

@media (min-width: 820px) {
  .promo-card__body {
    grid-template-columns: 1.35fr 0.65fr;
  }
}

.promo-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jade);
}

.promo-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.promo-card__sum {
  background: linear-gradient(90deg, #fff6cf, #e8c56a 45%, #ff3b5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-card__text {
  margin: 0;
  color: #c5ceda;
  max-width: 62ch;
}

.promo-card__legal {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}

.promo-card__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

@media (min-width: 820px) {
  .promo-card__cta {
    align-items: flex-end;
  }
  .promo-card__cta .btn {
    min-width: 220px;
    justify-content: center;
  }
}

.promo-card__cta .btn-hot {
  max-width: none;
  width: 100%;
}

.section-faq .faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 880px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(17, 26, 38, 0.9), rgba(8, 12, 18, 0.75));
  padding: 0.15rem 1rem 0.15rem 0.35rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(232, 197, 106, 0.35);
}

.faq-item[open] {
  border-color: rgba(46, 242, 192, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 0.5rem 0.85rem 0.65rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.75;
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-answer {
  padding: 0 0.65rem 1rem 0.65rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

.tile {
  grid-column: span 12;
  position: relative;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: radial-gradient(800px 240px at 10% 0%, rgba(232, 197, 106, 0.12), transparent 55%),
    linear-gradient(155deg, rgba(17, 26, 38, 0.95), rgba(8, 12, 18, 0.75));
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, border-color 0.35s ease;
}

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

.tile::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06), transparent 60%);
  transform: translateX(-40%);
  transition: transform 0.9s ease;
}

.tile:hover::after {
  transform: translateX(40%);
}

.tile:hover {
  border-color: rgba(46, 242, 192, 0.35);
}

@media (min-width: 860px) {
  .tile.span-7 {
    grid-column: span 7;
  }
  .tile.span-5 {
    grid-column: span 5;
  }
  .tile.span-4 {
    grid-column: span 4;
  }
  .tile.span-8 {
    grid-column: span 8;
  }
}

.tile h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.tile .mini-cta {
  margin-top: 1rem;
}

.ribbon-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0c0f14;
  background: linear-gradient(90deg, #ffe9a8, #e8c56a);
  margin-bottom: 0.65rem;
}

.game-mosaic {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

@media (min-width: 1024px) {
  .game-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.game-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1 / 1;
  transform: perspective(900px) rotateX(6deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.35s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

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

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 10, 0.85));
  z-index: 1;
  opacity: 0.85;
}

.game-tile span {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.game-tile:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-6px);
  box-shadow: 0 26px 60px rgba(232, 197, 106, 0.12);
}

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

.editorial {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem 4rem;
}

.editorial-inner {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 26, 38, 0.55), rgba(8, 12, 18, 0.35));
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.editorial header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.editorial header p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.editorial-columns {
  columns: 1;
  column-gap: 2.25rem;
}

@media (min-width: 900px) {
  .editorial-columns {
    columns: 2;
  }
}

.editorial-columns p,
.editorial-columns h3 {
  break-inside: avoid;
  margin: 0 0 1.1rem;
}

.editorial-columns h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 1.5rem;
  color: var(--gold);
}

.editorial-columns p {
  color: #c5ceda;
  text-align: justify;
  hyphens: auto;
}

.disclaimer {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.disclaimer-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 59, 92, 0.25);
  padding: 1rem 1.15rem;
  background: rgba(255, 59, 92, 0.05);
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 3rem;
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.2), #040508);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-brand .brand-title {
  font-size: 1.2rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .portal-ring-rotate {
    animation: none;
  }

  .btn-hot {
    animation: none;
  }
}
