:root {
  --bg: #0a0c0f;
  --panel: #161a1f;
  --ink: #f4f1ea;
  --muted: #a39e94;
  --line: rgba(255, 236, 210, 0.1);
  --accent: #ffb454;
  --accent-2: #ff8a4c;
  --hot: #ff6b4a;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1080px;
  --ig: https://www.instant-gaming.com/fr/?igr=gamer-47bd4c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(900px 520px at 8% -18%, rgba(255, 180, 84, 0.14), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(255, 107, 74, 0.1), transparent 45%),
    linear-gradient(180deg, #12151a, var(--bg) 42%, #060708);
  line-height: 1.5;
}

body:has(.sticky-aff) {
  padding-bottom: 4.5rem;
}

.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 0%, black, transparent 70%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(10, 12, 15, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.95rem;
  align-items: center;
}

nav a,
nav .nav-current {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover {
  color: #fff;
}

nav .nav-current {
  color: #fff;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}

.nav-cta {
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px;
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent) !important;
  border: 1px solid rgba(255, 180, 84, 0.35);
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: rgba(255, 180, 84, 0.2);
  border-color: rgba(255, 180, 84, 0.55);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem 1.2rem 1.2rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.lead {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  color: #d9d2c6;
  font-size: 1.08rem;
}

.lead strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  max-width: 520px;
  padding: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 180, 84, 0.35);
  background: linear-gradient(135deg, rgba(255, 180, 84, 0.14), rgba(20, 24, 30, 0.95));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: soft-float 5.5s ease-in-out infinite;
}

.hero-feature .game-badges {
  inset: auto;
  left: 0.55rem;
  bottom: 0.55rem;
  right: 0.55rem;
  top: 0.55rem;
  width: 160px;
  max-width: 42%;
}

.hero-feature:hover {
  border-color: rgba(255, 180, 84, 0.75);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: none;
}

.hero-feature img {
  width: 160px;
  max-width: 42%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hero-feature strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.hero-feature em {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  border: 0;
  transition: transform 0.15s ease, filter 0.15s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, #7dffb3, #b6ff78);
  color: #071018;
}

.btn.buy {
  background: linear-gradient(135deg, #ff8a65, #ff5c45);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 92, 69, 0.28);
}

.btn.buy:hover {
  box-shadow: 0 12px 28px rgba(255, 92, 69, 0.4);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--line);
}

.btn.small {
  padding: 0.55rem 0.95rem;
  font-size: 0.86rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.2rem 2rem;
}

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

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.path {
  display: block;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 180, 84, 0.08), transparent 55%),
    rgba(18, 25, 37, 0.92);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.path:hover {
  border-color: rgba(255, 180, 84, 0.5);
  transform: translateY(-3px);
  background:
    linear-gradient(160deg, rgba(255, 180, 84, 0.14), transparent 55%),
    rgba(22, 28, 36, 0.95);
}

.path-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.path span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.95rem;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 180, 84, 0.07), transparent 42%),
    #14181e;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  min-height: 9.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
  border-color: rgba(255, 180, 84, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.guide-card--featured {
  background:
    linear-gradient(145deg, rgba(255, 180, 84, 0.16), transparent 50%),
    #1a1510;
  border-color: rgba(255, 180, 84, 0.28);
}

.guide-thumb {
  display: block;
  width: calc(100% + 2.3rem);
  margin: -1.15rem -1.15rem 0.65rem;
  aspect-ratio: 460 / 160;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.guide-num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 180, 84, 0.35);
  line-height: 1;
}

.guide-card:has(.guide-thumb) .guide-num {
  top: auto;
  bottom: 1rem;
  color: rgba(255, 180, 84, 0.45);
}

.guide-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 180, 84, 0.14);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.12rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.guide-card > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #1c2026, #101318);
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 180, 84, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.game-cover-link {
  display: block;
  position: relative;
  background: #0a0c0f;
  line-height: 0;
  overflow: hidden;
}

.game-cover {
  display: block;
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: contain;
  object-position: center center;
  background: #0a0c0f;
  transition: transform 0.35s ease;
}

.game-card:hover .game-cover {
  transform: scale(1.04);
}

.game-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.game-badge {
  position: absolute;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.game-badge--price {
  left: 0.55rem;
  bottom: 0.55rem;
  color: #0a0c0f;
  background: rgba(255, 214, 102, 0.95);
}

.game-badge--out {
  right: 0.55rem;
  top: 0.55rem;
  color: #fff;
  background: rgba(180, 40, 40, 0.92);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.game-card.is-oos .game-cover,
.hero-feature.is-oos img {
  filter: grayscale(0.35) brightness(0.82);
}

.btn.is-oos {
  cursor: not-allowed;
  opacity: 0.72;
  background: #3a4048;
  color: #c8d0da;
  border-color: #3a4048;
  pointer-events: none;
}

.game-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.1rem;
}

.game-card--tip {
  background: linear-gradient(165deg, rgba(255, 180, 84, 0.12), #12161c);
}

.game-card .tag {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card h3 {
  margin: 0.4rem 0 0.35rem;
  font-size: 1.15rem;
  color: #fff;
}

.game-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.game-card .row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.why {
  color: #b9c8da;
  font-size: 0.95rem;
}

.why li + li {
  margin-top: 0.35rem;
}

.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.8rem 1.2rem 2.8rem;
}

.back-nav {
  margin: 0 0 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.back-link:hover,
.article .back-link:hover {
  color: var(--accent);
}

.article .back-link {
  color: var(--muted);
}

.article .meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.article h1 {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
}

.article h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
  color: #fff;
}

.article p,
.article li {
  color: #c2d0e2;
  font-size: 0.98rem;
}

.article a {
  color: var(--accent-2);
}

.tldr {
  margin: 0 0 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 180, 84, 0.1);
  border: 1px solid rgba(255, 180, 84, 0.28);
  color: #f3e6d2;
  font-size: 0.95rem;
}

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

.steps {
  margin: 0;
  padding-left: 1.15rem;
}

.steps li {
  margin: 0.45rem 0;
}

.aff-box {
  margin-top: 1.5rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 89, 0.35);
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.14), rgba(18, 25, 37, 0.9));
}

.aff-box h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #fff;
}

.aff-box p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.6rem 1.2rem 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin: 0.6rem 0;
}

.footer-links a {
  color: #d9d2c6;
  text-decoration: none;
}

.fine {
  font-size: 0.75rem;
  opacity: 0.85;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.deals-toolbar {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
}

.deals-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.sort-wrap select {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.check-chip input {
  accent-color: var(--accent);
}

.check-chip:has(input:checked) {
  color: #111;
  background: var(--accent);
  border-color: transparent;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: 28;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 15, 0.9);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  border-color: rgba(255, 180, 84, 0.5);
  color: var(--accent);
}

.related-guides {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.related-guides h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.related-guides ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.related-guides li + li {
  margin-top: 0.4rem;
}

.related-guides a {
  color: var(--accent-2);
  font-weight: 600;
}

.money-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.money-links a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 180, 84, 0.08), transparent 55%),
    #14181e;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.money-links a:hover {
  border-color: rgba(255, 180, 84, 0.45);
  transform: translateY(-2px);
}

.money-links strong {
  color: #fff;
  font-size: 1.02rem;
}

.money-links span {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(18, 22, 28, 0.9);
  padding: 0.85rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  list-style: none;
}

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

.faq-list summary::before {
  content: "+";
  display: inline-block;
  width: 1.2rem;
  color: var(--accent);
  font-weight: 800;
}

.faq-list details[open] summary::before {
  content: "–";
}

.faq-a {
  margin: 0.65rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.search-wrap input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}

.search-wrap input::placeholder {
  color: var(--muted);
}

.search-wrap input:focus {
  outline: 2px solid rgba(255, 180, 84, 0.45);
  outline-offset: 1px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.chip.is-active,
.chip:hover {
  color: #111;
  background: var(--accent);
  border-color: transparent;
}

.deals-count {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.aff-strip {
  margin: 0 0 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 180, 84, 0.28);
  background: rgba(255, 180, 84, 0.08);
}

.aff-strip p {
  margin: 0 0 0.75rem;
  color: #f0e6d6;
  font-size: 0.92rem;
}

.deals-empty {
  color: var(--muted);
  text-align: center;
  padding: 1.5rem 0;
}

.sticky-aff {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 0.45rem 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.9);
  border: 1px solid rgba(255, 180, 84, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.sticky-aff-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-aff .btn {
  box-shadow: none;
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  counter-reset: how;
}

.how-steps li {
  counter-increment: how;
  position: relative;
  padding: 1.15rem 1.15rem 1.2rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(255, 180, 84, 0.07), transparent 50%),
    #14181e;
}

.how-steps li::before {
  content: counter(how);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 180, 84, 0.16);
  color: var(--accent);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}

.how-steps strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.how-steps span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.anim-fade {
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}
.delay-4 {
  animation-delay: 0.34s;
}

.game-cover-link:hover .game-cover {
  filter: brightness(1.06);
}

@media (max-width: 800px) {
  .paths,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .sticky-aff-label {
    display: none;
  }

  .sticky-aff {
    padding: 0.35rem;
  }
}

@media (max-width: 600px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .anim-fade,
  .hero-feature {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .game-card:hover,
  .path:hover,
  .btn:hover {
    transform: none;
  }
}
