:root {
  --bg: #050811;
  --bg-soft: #0a1120;
  --surface: rgba(11, 18, 34, 0.82);
  --surface-strong: rgba(9, 14, 26, 0.94);
  --surface-alt: rgba(18, 26, 48, 0.72);
  --border: rgba(132, 155, 222, 0.18);
  --border-strong: rgba(132, 155, 222, 0.34);
  --text: #f3f7ff;
  --text-muted: #a9b7d4;
  --text-faint: #7383a4;
  --blue: #2d6bff;
  --green: #35d46a;
  --red: #ff4f5f;
  --purple: #af61ff;
  --cyan: #53e7f3;
  --gold: #ffd347;
  --orange: #ff8a3d;
  --magenta: #ff5f7a;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 20px 48px rgba(4, 8, 19, 0.42);
  --container: min(1400px, calc(100vw - 32px));
  --transition: 220ms ease;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(175, 97, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #04070f 0%, #060a15 22%, #050811 100%);
  color: var(--text);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
  pointer-events: none;
  z-index: -2;
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 8, 16, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 400px) auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-main {
  color: #ffffff;
}

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

.main-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-width: 0;
  padding-left: 8px;
  gap: 18px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
}

.nav-link--hot {
  color: #ff5969;
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: rgba(15, 22, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-icon,
.utility-card__icon,
.trust-pill__icon,
.reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle__open,
.menu-toggle__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-icon svg,
.menu-toggle svg,
.utility-card__icon svg,
.trust-pill__icon svg,
.reason-card__icon svg,
.platform-card__arrow svg,
.section-link svg {
  width: 18px;
  height: 18px;
}

.header-search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  min-width: 0;
}

.header-search input::placeholder {
  color: var(--text-faint);
}

.header-search button,
.button,
.product-card__actions a,
.section-link,
.header-pill {
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.header-search button {
  padding: 0.74rem 1.1rem;
  border: 0;
  background: linear-gradient(135deg, var(--blue), #4f89ff);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
}

.header-pill.is-active {
  background: rgba(45, 107, 255, 0.16);
  border-color: rgba(45, 107, 255, 0.34);
  box-shadow: 0 14px 28px rgba(45, 107, 255, 0.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
}

.menu-toggle__close {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__inner {
  display: grid;
  gap: 14px;
  padding: 18px 0 24px;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(86vh, 980px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero--category,
.hero--legal {
  min-height: 62vh;
}

.hero--home {
  min-height: 960px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 16, 0.9) 0%, rgba(4, 8, 16, 0.6) 28%, rgba(4, 8, 16, 0.16) 56%, rgba(4, 8, 16, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.18) 0%, rgba(4, 8, 16, 0.7) 100%);
}

.hero--home .hero-media::after {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.38) 0%, rgba(4, 8, 16, 0.46) 14%, rgba(4, 8, 16, 0.24) 42%, rgba(4, 8, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 8, 16, 0.78) 0%, rgba(4, 8, 16, 0.3) 34%, rgba(4, 8, 16, 0.18) 62%, rgba(4, 8, 16, 0.74) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(120px, 16vh, 180px) 0 72px;
}

.hero__inner--legal {
  align-items: center;
}

.hero__inner--home {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: end;
  gap: 14px;
  padding: 88px 0 22px;
}

.hero__content {
  width: min(42rem, 100%);
}

.hero__content--narrow {
  width: min(38rem, 100%);
}

.hero__content--home {
  width: min(31rem, 100%);
}

.eyebrow,
.section-kicker,
.platform-card__kicker {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.reason-card h3,
.copy-card h2,
.legal-card h2,
.promo-card__content h2,
.newsletter-card__content h2 {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.8rem, 9vw, 7.8rem);
  max-width: 10ch;
  text-transform: uppercase;
}

.hero--home h1 {
  display: grid;
  gap: 4px;
  max-width: 7ch;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-style: italic;
  line-height: 0.88;
}

.hero--category h1,
.hero--legal h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.hero--home h1 em {
  color: var(--blue);
  font-style: italic;
}

.hero__lead,
.section-head p,
.copy-card p,
.reason-card p,
.promo-card__content p,
.newsletter-card__content p,
.footer-brand p,
.footer-column a,
.footer-bottom p,
.footer-meta p,
.legal-card p,
.hero__note,
.platform-card__copy,
.product-card__body p,
.trust-pill p,
.utility-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 38rem;
  font-size: 1.05rem;
}

.hero--home .hero__lead {
  max-width: 20rem;
  margin-top: 18px;
  font-size: 1rem;
}

.hero__actions,
.newsletter-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 700;
}

.button--primary,
.product-card__actions a {
  background: linear-gradient(135deg, var(--blue), #467eff);
  color: white;
  box-shadow: 0 18px 34px rgba(45, 107, 255, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
}

.button--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__note {
  margin-top: 22px;
  max-width: 42rem;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(5, 10, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-platform-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  width: min(880px, 72vw);
  margin: 2px auto 0;
}

.hero-platform-badges__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 10, 19, 0.4);
  color: white;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-platform-badges__item--playstation {
  box-shadow: inset 0 0 0 1px rgba(45, 107, 255, 0.3), 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-platform-badges__item--xbox {
  box-shadow: inset 0 0 0 1px rgba(53, 212, 106, 0.3), 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-platform-badges__item--nintendo {
  box-shadow: inset 0 0 0 1px rgba(255, 79, 95, 0.3), 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-platform-badges__item--pc {
  box-shadow: inset 0 0 0 1px rgba(175, 97, 255, 0.3), 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-home__stage {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  align-items: end;
  min-height: 280px;
}

.hero-home__platform-intro {
  text-align: center;
}

.hero-home__platform-intro h2 {
  margin: 6px 0 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-style: italic;
  line-height: 0.92;
  text-transform: uppercase;
}

.utility-bar,
.platform-section,
.content-section,
.trust-strip,
.newsletter-section {
  position: relative;
  padding: 34px 0 0;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.utility-card,
.trust-pill,
.reason-card,
.copy-card,
.legal-card,
.related-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.9), rgba(8, 13, 24, 0.88));
  box-shadow: var(--shadow-card);
}

.utility-card,
.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 18px;
}

.utility-card h2,
.trust-pill h2,
.footer-column h2,
.product-card__body h3,
.reason-card h3,
.copy-card h2,
.legal-card h2,
.related-card strong {
  margin: 0;
  font-size: 1.1rem;
}

.utility-card__icon,
.trust-pill__icon,
.reason-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

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

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-head h2,
.copy-card h2,
.newsletter-card__content h2,
.promo-card__content h2,
.legal-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.section-head p:last-child {
  max-width: 54rem;
  margin: 14px 0 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.platform-grid,
.product-grid,
.reasons-grid,
.copy-grid,
.related-grid,
.legal-grid {
  display: grid;
  gap: 22px;
}

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

.platform-grid--hero {
  gap: 18px;
}

.platform-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  align-items: flex-start;
  overflow: hidden;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, rgba(255, 255, 255, 0.12));
  background: rgba(13, 18, 30, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 54px rgba(0, 0, 0, 0.32);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.18) 36%, rgba(5, 10, 18, 0.9) 100%),
    radial-gradient(circle at top right, var(--accent-soft), transparent 34%);
  z-index: 1;
}

.platform-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.platform-card > * {
  position: relative;
  z-index: 2;
}

.platform-card__title {
  display: block;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.platform-card__copy {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-grid--hero .platform-card {
  min-height: 236px;
  padding: 18px;
  border-radius: 20px;
}

.platform-grid--hero .platform-card::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.16) 42%, rgba(5, 10, 18, 0.9) 100%),
    radial-gradient(circle at top right, var(--accent-soft), transparent 38%);
}

.platform-grid--hero .platform-card__title {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.platform-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.platform-grid--hero .platform-card__arrow {
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

.product-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(11, 17, 31, 0.94), rgba(8, 12, 23, 0.94));
  box-shadow: var(--shadow-card);
}

.product-card__art {
  position: relative;
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 500ms ease;
}

.product-card__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 12, 24, 0.12) 0%, rgba(7, 12, 24, 0.24) 44%, rgba(7, 12, 24, 0.88) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 36%);
}

.product-card__art > * {
  position: relative;
  z-index: 1;
}

.product-card__badge,
.product-card__platform {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__badge {
  width: fit-content;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card__platform {
  justify-self: flex-start;
  width: fit-content;
  color: white;
  background: rgba(5, 10, 18, 0.68);
}

.product-card__highlight {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card__body {
  padding: 20px 20px 22px;
}

.product-card__body h3 {
  font-size: 1.18rem;
}

.product-card__body p {
  margin: 12px 0 0;
  min-height: 78px;
  font-size: 0.96rem;
}

.product-card__actions {
  margin-top: 18px;
}

.product-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-grid--catalog {
  gap: 24px;
}

.product-grid__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.product-grid__actions .button:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.theme-blue .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(45, 107, 255, 0.48);
}

.theme-green .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(53, 212, 106, 0.48);
}

.theme-red .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(255, 79, 95, 0.48);
}

.theme-purple .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(175, 97, 255, 0.48);
}

.theme-cyan .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(83, 231, 243, 0.48);
}

.theme-gold .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(255, 211, 71, 0.48);
}

.theme-orange .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(255, 138, 61, 0.48);
}

.theme-magenta .product-card__platform {
  box-shadow: inset 0 0 0 1px rgba(255, 95, 122, 0.48);
}

.theme-blue {
  --toplist-accent: var(--blue);
}

.theme-green {
  --toplist-accent: var(--green);
}

.theme-red {
  --toplist-accent: var(--red);
}

.theme-purple {
  --toplist-accent: var(--purple);
}

.theme-cyan {
  --toplist-accent: var(--cyan);
}

.theme-gold {
  --toplist-accent: var(--gold);
}

.theme-orange {
  --toplist-accent: var(--orange);
}

.theme-magenta {
  --toplist-accent: var(--magenta);
}

.hero--toplist .hero__content--narrow {
  width: min(46rem, 100%);
}

.toplist-promo {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.toplist-promo__copy,
.toplist-stat,
.toplist-shell,
.toplist-podium-card,
.toplist-leader {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.92), rgba(8, 13, 24, 0.92));
  box-shadow: var(--shadow-card);
}

.toplist-promo__copy {
  padding: 28px;
  border-radius: 28px;
}

.toplist-promo__copy h2 {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 0.96;
}

.toplist-promo__copy p:last-of-type {
  margin: 16px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.toplist-promo__leaders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.toplist-leader {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 24px;
}

.toplist-leader img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.toplist-leader::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.12) 0%, rgba(7, 12, 24, 0.22) 34%, rgba(7, 12, 24, 0.92) 100%),
    radial-gradient(circle at top left, color-mix(in srgb, var(--toplist-accent) 28%, transparent), transparent 40%);
}

.toplist-leader > * {
  position: relative;
  z-index: 1;
}

.toplist-leader__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  margin: 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--toplist-accent) 44%, rgba(255, 255, 255, 0.18));
  background: rgba(4, 8, 16, 0.74);
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.toplist-leader__body {
  position: absolute;
  inset: auto 18px 18px;
}

.toplist-leader__body p,
.toplist-podium-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toplist-leader__body h3,
.toplist-podium-card__body h3 {
  margin: 10px 0 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.toplist-leader__body span,
.toplist-podium-card__body span {
  display: inline-flex;
  margin-top: 10px;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toplist-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.toplist-stat {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
}

.toplist-stat strong {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.toplist-stat span,
.toplist-statusbar p,
.toplist-card__microcopy {
  color: var(--text-muted);
  line-height: 1.6;
}

.toplist-shell {
  padding: 22px;
  border-radius: 30px;
}

.toplist-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.2fr) auto;
  gap: 14px;
  align-items: center;
}

.toplist-search input,
.toplist-sort select {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 29, 0.92);
  color: white;
}

.toplist-sort {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toplist-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toplist-filter {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.toplist-filter.is-active {
  background: rgba(45, 107, 255, 0.16);
  border-color: rgba(45, 107, 255, 0.36);
  color: white;
}

.toplist-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.toplist-statusbar p {
  margin: 0;
}

.toplist-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.toplist-podium-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
}

.toplist-podium-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.toplist-podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.12) 0%, rgba(7, 12, 24, 0.2) 30%, rgba(7, 12, 24, 0.92) 100%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--toplist-accent) 34%, transparent), transparent 42%);
}

.toplist-podium-card > * {
  position: relative;
  z-index: 1;
}

.toplist-podium-card__position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  margin: 16px;
  border-radius: 16px;
  background: rgba(4, 8, 16, 0.72);
  border: 1px solid color-mix(in srgb, var(--toplist-accent) 44%, rgba(255, 255, 255, 0.18));
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.toplist-podium-card__body {
  position: absolute;
  inset: auto 18px 18px;
}

.toplist-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.toplist-entry.is-targeted .toplist-card {
  border-color: rgba(83, 231, 243, 0.54);
  box-shadow: 0 20px 54px rgba(83, 231, 243, 0.12);
}

.toplist-card {
  display: grid;
  grid-template-columns: 92px minmax(160px, 240px) minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(9, 15, 27, 0.96), rgba(7, 11, 21, 0.96)),
    radial-gradient(circle at top right, color-mix(in srgb, var(--toplist-accent) 18%, transparent), transparent 40%);
}

.toplist-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.toplist-card__rank,
.toplist-card__community {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.toplist-card__rank-label,
.toplist-card__scorebox span {
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toplist-card__rank strong,
.toplist-card__scorebox strong {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 2.6rem;
  line-height: 0.9;
}

.toplist-card__movement {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-weight: 700;
}

.toplist-card__movement.is-up {
  background: rgba(53, 212, 106, 0.16);
  color: #97ffc0;
}

.toplist-card__movement.is-down {
  background: rgba(255, 79, 95, 0.16);
  color: #ffafba;
}

.toplist-card__media {
  position: relative;
  overflow: hidden;
}

.toplist-card__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.toplist-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.08) 0%, rgba(7, 12, 24, 0.18) 46%, rgba(7, 12, 24, 0.68) 100%),
    radial-gradient(circle at top left, color-mix(in srgb, var(--toplist-accent) 18%, transparent), transparent 38%);
}

.toplist-card__body {
  padding: 22px 0;
}

.toplist-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toplist-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toplist-chip--genre {
  color: white;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--toplist-accent) 42%, rgba(255, 255, 255, 0.18));
}

.toplist-card__body h2 {
  margin: 16px 0 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.toplist-card__body p {
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.toplist-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.toplist-card__actions a,
.toplist-card__actions .button {
  min-height: 48px;
  padding: 0 18px;
}

.toplist-card__scorebox {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.toplist-card__meter {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.toplist-card__meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--toplist-accent) 72%, #ffffff), var(--toplist-accent));
}

.toplist-card__votegrid {
  display: grid;
  gap: 10px;
  width: 100%;
}

.toplist-vote {
  display: grid;
  gap: 4px;
  justify-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.toplist-vote strong {
  font-size: 1.1rem;
}

.toplist-vote.is-selected {
  border-color: color-mix(in srgb, var(--toplist-accent) 42%, rgba(255, 255, 255, 0.16));
  background: color-mix(in srgb, var(--toplist-accent) 16%, rgba(255, 255, 255, 0.04));
}

.toplist-vote:disabled {
  opacity: 0.68;
  cursor: wait;
}

.toplist-vote--up:hover,
.toplist-vote--down:hover,
.toplist-filter:hover {
  transform: translateY(-1px);
}

.copy-card--faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.promo-card,
.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 14, 26, 0.92);
  box-shadow: var(--shadow-card);
}

.promo-card img,
.newsletter-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.promo-card {
  min-height: 540px;
}

.promo-card::after,
.newsletter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.9) 0%, rgba(5, 10, 18, 0.7) 34%, rgba(5, 10, 18, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.08), rgba(5, 10, 18, 0.66));
}

.promo-card__content,
.newsletter-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
}

.split-layout__main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.reason-card,
.copy-card,
.legal-card,
.related-card {
  padding: 24px;
  border-radius: 24px;
}

.reason-card__icon {
  margin-bottom: 18px;
}

.newsletter-card {
  min-height: 320px;
}

.newsletter-card__content {
  width: min(44rem, 100%);
}

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

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

.related-card {
  min-height: 220px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 20%, transparent), transparent 40%),
    linear-gradient(180deg, rgba(13, 20, 37, 0.95), rgba(8, 13, 24, 0.9));
}

.related-card span {
  display: inline-flex;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card strong {
  display: block;
  margin-top: 18px;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.related-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.related-card small {
  display: inline-block;
  margin-top: 16px;
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: white;
}

.site-footer {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(3, 6, 12, 0.92);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr);
  gap: 28px;
  padding: 42px 0 26px;
}

.brand--footer {
  margin-bottom: 14px;
}

.footer-socials,
.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials span,
.payment-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 700;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column a {
  transition: color var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-meta {
  padding-bottom: 34px;
}

.footer-meta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-consent-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.legal-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-copy {
  display: grid;
  gap: 14px;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--cyan);
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 80;
  width: min(920px, calc(100vw - 36px));
  margin-left: auto;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 19, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 22px 24px;
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__eyebrow {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner__copy strong {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cookie-banner__copy p:last-child {
  margin: 0;
  color: var(--text-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.button:hover,
.product-card__actions a:hover,
.section-link:hover,
.header-pill:hover,
.header-search button:hover {
  transform: translateY(-2px);
}

.platform-card:hover img {
  transform: scale(1.05);
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.platform-card:hover,
.product-card:hover,
.reason-card:hover,
.related-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-open .mobile-nav {
  display: block;
}

.menu-open .menu-toggle__open {
  display: none;
}

.menu-open .menu-toggle__close {
  display: inline-flex;
}

@media (max-width: 1320px) {
  .main-nav {
    display: none;
  }

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

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 1220px) {

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

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

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

  .split-layout,
  .footer-top,
  .copy-grid,
  .legal-grid,
  .legal-shell,
  .toplist-promo {
    grid-template-columns: 1fr;
  }

  .toplist-stats,
  .toplist-podium {
    grid-template-columns: 1fr;
  }

  .toplist-toolbar {
    grid-template-columns: 1fr;
  }

  .toplist-card {
    grid-template-columns: 86px 200px minmax(0, 1fr);
  }

  .toplist-card__community {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: stretch;
    gap: 14px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 940px) {
  .hero--home {
    min-height: auto;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
  }

  .header-search {
    min-width: 0;
    width: 100%;
  }

  .header-pill {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner,
  .hero__inner--legal {
    align-items: flex-end;
    padding: 112px 0 48px;
  }

  .hero__inner--home {
    grid-template-rows: auto 1fr auto auto;
    gap: 16px;
    padding: 96px 0 28px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 16, 0.52) 0%, rgba(4, 8, 16, 0.88) 78%, rgba(4, 8, 16, 0.98) 100%);
  }

  .hero--home .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 16, 0.32) 0%, rgba(4, 8, 16, 0.56) 18%, rgba(4, 8, 16, 0.78) 68%, rgba(4, 8, 16, 0.97) 100%);
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero--category h1,
  .hero--legal h1 {
    font-size: clamp(2.8rem, 6.8vw, 4.5rem);
  }

  .hero--home h1 {
    max-width: 7ch;
  }

  .hero-platform-badges {
    width: 100%;
    max-width: 520px;
  }

  .hero-home__stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content--home {
    width: min(28rem, 100%);
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .toplist-card {
    grid-template-columns: 78px minmax(150px, 200px) minmax(0, 1fr);
  }

  .toplist-card__body h2 {
    font-size: clamp(1.7rem, 4vw, 2.2rem);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
    grid-template-areas:
      "brand menu"
      "search search";
  }

  .brand {
    grid-area: brand;
  }

  .header-search {
    grid-area: search;
    min-width: 0;
    width: 100%;
  }

  .header-actions {
    grid-area: menu;
    justify-content: flex-end;
  }

  .hero__inner {
    padding-top: 108px;
  }

  .hero__inner--home {
    grid-template-rows: auto 1fr auto auto;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .hero--category h1,
  .hero--legal h1 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
    max-width: 12ch;
  }

  .hero--home h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-platform-badges {
    display: none;
  }

  .utility-grid,
  .trust-strip__grid,
  .product-grid,
  .product-grid--compact,
  .reasons-grid,
  .copy-grid,
  .related-grid,
  .legal-grid,
  .footer-columns,
  .legal-shell,
  .toplist-stats,
  .toplist-promo__leaders,
  .toplist-podium {
    grid-template-columns: 1fr;
  }

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

  .platform-grid--hero {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .platform-grid--hero .platform-card {
    scroll-snap-align: start;
  }

  .platform-card {
    min-height: 360px;
  }

  .platform-grid--hero .platform-card {
    min-height: 250px;
  }

  .promo-card,
  .newsletter-card {
    min-height: 420px;
  }

  .toplist-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .toplist-statusbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toplist-card {
    grid-template-columns: 1fr;
  }

  .toplist-card__rank,
  .toplist-card__community {
    justify-items: flex-start;
  }

  .toplist-card__rank {
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 12px;
  }

  .toplist-card__rank strong {
    font-size: 2.2rem;
  }

  .toplist-card__media {
    min-height: 240px;
  }

  .toplist-card__body {
    padding: 0 18px 20px;
  }

  .toplist-card__body h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .toplist-card__community {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .toplist-card__actions {
    flex-direction: column;
  }

  .toplist-card__actions a,
  .toplist-card__actions .button {
    width: 100%;
  }

  .footer-bottom,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    inset: auto 12px 12px;
    width: calc(100vw - 24px);
  }

  .cookie-banner__inner {
    padding: 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
