:root {
  --bg: #f1f2f4;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --card: #f6f6f7;
  --card-light: #eceef0;
  --accent: #e31e24;
  --accent-light: #ff3b41;
  --text: #17191c;
  --muted: #676d76;
  --line: rgba(23, 25, 28, 0.13);
  --line-bright: rgba(227, 30, 36, 0.38);
  --shadow: 0 24px 70px rgba(25, 27, 30, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(227, 30, 36, 0.1), transparent 480px),
    var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.notice-bar {
  border-bottom: 1px solid var(--line);
  background: #17191c;
  color: #d6d8db;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.notice-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(31, 33, 36, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 65px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a,
.site-footer nav a {
  color: #c7c9cd;
  font-size: 16px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.18);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  background: var(--accent-light);
  box-shadow: 0 16px 40px rgba(227, 30, 36, 0.32);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  font-size: 13px;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  color: var(--text);
}

.button--ghost:hover {
  border-color: var(--line-bright);
  background: rgba(227, 30, 36, 0.06);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
}

.hero::before {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  content: "";
  right: -170px;
  top: 30px;
  box-shadow: 0 0 0 80px rgba(227, 30, 36, 0.025), 0 0 0 160px rgba(227, 30, 36, 0.015);
}

.hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.06);
  content: "";
  filter: blur(90px);
  left: -80px;
  bottom: -60px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 74px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.section-kicker {
  display: inline-block;
  padding: 4px 12px 4px 10px;
  border-radius: 999px;
  background: rgba(227, 30, 36, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.18);
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  overflow-wrap: break-word;
}

.hero h1::after {
  display: block;
  width: 86px;
  height: 8px;
  margin-top: 26px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  max-width: 640px;
  margin: 44px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.hero-facts div {
  padding-right: 18px;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.hero-metrics {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics div {
  min-height: 118px;
  padding: 22px 24px;
  border: 1px solid rgba(227, 30, 36, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 246, 247, 0.78)),
    var(--surface);
  box-shadow: 0 18px 48px rgba(25, 27, 30, 0.08);
}

.hero-metrics dt {
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-transform: uppercase;
}

.focus-panel {
  position: relative;
  min-height: 550px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #24272b;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.focus-panel::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.18);
  content: "";
  filter: blur(75px);
  right: -70px;
  top: 100px;
}

.focus-panel__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.focus-panel__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c7c9cd;
  font-size: 11px;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  content: "";
  animation: pulseDot 2s ease-in-out infinite;
}

.focus-visual {
  position: relative;
  display: grid;
  height: 310px;
  place-items: center;
}

.focus-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.focus-orbit--one {
  width: 220px;
  height: 220px;
  animation: orbitSpin 22s linear infinite;
}

.focus-orbit--one::before,
.focus-orbit--two::before {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #24272b;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.focus-orbit--one::before {
  right: 22px;
  top: 28px;
}

.focus-orbit--two {
  width: 290px;
  height: 290px;
  border-style: dashed;
  animation: orbitSpinBack 30s linear infinite;
}

.focus-orbit--two::before {
  bottom: 16px;
  left: 67px;
  background: #ffffff;
}

.focus-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 36px;
  background: linear-gradient(145deg, #33373c, #191b1e);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.1);
  animation: floatCore 5s ease-in-out infinite;
}

.focus-core span {
  color: var(--accent);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.focus-core small {
  position: absolute;
  bottom: 18px;
  color: #c7c9cd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.focus-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  grid-template-columns: repeat(3, 1fr);
}

.focus-tab,
.filter-tab {
  cursor: pointer;
}

.focus-tab {
  padding: 9px 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c7c9cd;
  font-size: 12px;
  font-weight: 800;
}

.focus-tab.is-active {
  background: var(--accent);
  color: #ffffff;
}

.focus-result {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.focus-result[hidden] {
  display: none;
}

.focus-result strong,
.focus-result span {
  display: block;
}

.focus-result strong {
  font-size: 15px;
}

.focus-result span {
  color: #c7c9cd;
  font-size: 12px;
}

.focus-meter {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.focus-meter span {
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 280ms ease;
}

.check-section {
  padding-top: 30px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2,
.faq-intro h2,
.article-aside h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 51px);
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p,
.faq-intro p {
  margin: 0;
  color: var(--muted);
}

.check-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.check-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.check-table th,
.check-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.check-table tr:last-child td {
  border-bottom: 0;
}

.check-table th {
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.check-table td {
  font-size: 14px;
}

.check-table td:first-child {
  font-weight: 700;
}

.check-table tbody tr {
  transition: background 160ms ease;
}

.check-table tbody tr:hover {
  background: rgba(227, 30, 36, 0.025);
}

.table-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--accent);
  font-size: 9px;
}

.slots-section {
  background: var(--bg-soft);
}

.top-games-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.top-games-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 51px);
  letter-spacing: 0;
  line-height: 1.08;
}

.games-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.games-all-link:hover {
  color: var(--accent);
}

.slots-note {
  max-width: 680px;
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 17px;
}

.top-games-rail {
  display: grid;
  gap: 18px;
  padding: 4px 2px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.top-game-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(23, 25, 28, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 247, 0.9)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(25, 27, 30, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.top-game-card::after {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
  inset: 0 22px auto;
  opacity: 0;
  transition: opacity 190ms ease;
}

.top-game-card:hover,
.top-game-card:focus-within {
  border-color: rgba(227, 30, 36, 0.26);
  box-shadow: 0 24px 58px rgba(25, 27, 30, 0.15);
  transform: translateY(-5px);
}

.top-game-card:hover::after,
.top-game-card:focus-within::after {
  opacity: 1;
}

.top-game-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: #25282c;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.top-game-art::before {
  position: absolute;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.38), transparent 34%);
  content: "";
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.top-game-art::after {
  position: absolute;
  z-index: 2;
  width: 58%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  inset: -24% auto -24% -72%;
  opacity: 0;
  pointer-events: none;
  transform: skewX(-16deg);
}

.top-game-card:hover .top-game-art::after,
.top-game-card:focus-within .top-game-art::after {
  animation: gameCardShine 720ms ease forwards;
}

.top-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 320ms ease, filter 320ms ease;
}

.top-game-card:hover img,
.top-game-card:focus-within img {
  filter: saturate(1.18) contrast(1.08) brightness(0.82);
  transform: scale(1.07);
}

.top-game-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(227, 30, 36, 0.28), transparent 42%),
    rgba(16, 17, 19, 0.18);
  opacity: 0;
  transition: opacity 190ms ease;
}

.top-game-card:hover .top-game-overlay,
.top-game-card:focus-within .top-game-overlay {
  opacity: 1;
}

.top-game-overlay a {
  min-height: 38px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  transform: translateY(7px);
  transition: transform 190ms ease, background-color 190ms ease;
}

.top-game-card:hover .top-game-overlay a,
.top-game-card:focus-within .top-game-overlay a {
  transform: translateY(0);
}

.top-game-card span {
  display: block;
  min-height: 38px;
  margin: 0;
  padding: 0 4px 4px;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bonuses-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 242, 244, 0.92)),
    var(--bg);
}

.bonuses-section .section-heading {
  justify-items: center;
  margin-bottom: 46px;
  text-align: center;
}

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

.bonus-card {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  flex-direction: column;
  padding: 28px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(227, 30, 36, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 247, 0.9)),
    var(--surface);
  box-shadow: 0 18px 54px rgba(25, 27, 30, 0.08);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.bonus-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(25, 27, 30, 0.14);
}

.bonus-card--featured {
  border-color: var(--line-bright);
  background:
    radial-gradient(circle at 50% -8%, rgba(227, 30, 36, 0.13), transparent 160px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 247, 0.94)),
    var(--card);
}

.bonus-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  border: 4px solid rgba(227, 30, 36, 0.28);
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.08);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.76);
  color: var(--accent);
  font-size: 29px;
  animation: bonusIconFloat 3.8s ease-in-out infinite, bonusIconGlow 2.6s ease-in-out infinite;
  transform-origin: center;
}

.bonus-card:nth-child(2) .bonus-card__icon {
  animation-delay: 220ms, 220ms;
}

.bonus-card:nth-child(3) .bonus-card__icon {
  animation-delay: 440ms, 440ms;
}

.bonus-card:hover .bonus-card__icon {
  animation-duration: 2.4s, 1.8s;
}

.bonus-card__icon--box {
  border-radius: 14px;
}

.bonus-card__value {
  display: block;
  color: var(--accent);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.1;
}

.bonus-card__pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  padding: 7px 14px;
  border: 1px solid rgba(227, 30, 36, 0.22);
  border-radius: 8px;
  background: rgba(227, 30, 36, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.bonus-card h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.bonus-card__value + h3,
.bonus-card__icon + h3 {
  margin-top: 24px;
}

.bonus-card p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bonus-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.overview-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.overview-layout {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 270px minmax(0, 1fr);
}

.article-aside {
  position: sticky;
  top: 110px;
}

.article-aside h2 {
  font-size: 35px;
}

.article-aside nav {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.article-aside nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.article-aside nav a:hover {
  color: var(--accent);
}

.review-copy {
  max-width: 790px;
}

.article-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-intro p {
  margin: 0;
}

.review-copy h2,
.review-copy h3 {
  scroll-margin-top: 120px;
  letter-spacing: 0;
  line-height: 1.15;
}

.review-copy h2 {
  margin: 0 0 18px;
  font-size: 35px;
}

.review-copy h3 {
  margin: 46px 0 14px;
  padding-left: 15px;
  border-left: 3px solid var(--accent);
  font-size: 25px;
}

.review-copy p {
  margin: 0 0 18px;
  color: #4f555d;
  font-size: 18px;
}

.faq-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-intro {
  max-width: 390px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  right: 6px;
  top: 32px;
  width: 16px;
  height: 2px;
  background: var(--accent);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #1c1e21;
  color: #ffffff;
}

.footer-top {
  display: grid;
  gap: 60px;
  padding-block: 58px 44px;
  grid-template-columns: 1.2fr 0.65fr 1fr;
}

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

.brand--footer .brand-logo {
  width: 205px;
}

.footer-top > div > p,
.footer-responsible p {
  max-width: 360px;
  margin: 0;
  color: #c7c9cd;
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-responsible {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.footer-responsible strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: #c7c9cd;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

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

@keyframes floatCore {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-8px); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 12px var(--accent); }
  50% { box-shadow: 0 0 22px var(--accent), 0 0 5px var(--accent-light); }
}

@keyframes bonusIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-7px) rotate(-3deg); }
  70% { transform: translateY(2px) rotate(2deg); }
}

@keyframes bonusIconGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 0 7px rgba(255, 255, 255, 0.76),
      0 0 0 rgba(227, 30, 36, 0);
  }
  50% {
    box-shadow:
      inset 0 0 0 7px rgba(255, 255, 255, 0.86),
      0 14px 30px rgba(227, 30, 36, 0.2);
  }
}

@keyframes gameCardShine {
  0% {
    left: -72%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: 122%;
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .hero-grid {
    gap: 38px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

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

  .overview-layout {
    gap: 42px;
    grid-template-columns: 230px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .notice-bar__inner span:last-child,
  .header-cta {
    display: none;
  }

  .notice-bar__inner {
    justify-content: center;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    place-content: center;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    display: flex;
    align-items: center;
    padding-top: 10vh;
    justify-content: flex-start;
    flex-direction: column;
    gap: 22px;
    inset: 0;
    height: 100vh;
    margin: 0;
    background: rgba(31, 33, 36, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 21px;
  }

  .hero {
    padding-top: 54px;
  }

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

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

  .focus-panel {
    min-height: 520px;
  }

  .section-heading,
  .faq-layout {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .section-heading p,
  .faq-intro {
    max-width: 630px;
  }

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

  .bonus-layout {
    grid-template-columns: 1fr 1fr;
  }

  .overview-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-aside nav {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 0.6fr;
  }

  .footer-responsible {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 44px 0 64px;
  }

  .hero h1 {
    font-size: 56px;
    letter-spacing: 0;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 0 0 12px;
  }

  .hero-facts div + div {
    padding: 0 0 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-metrics {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 18px 20px;
  }

  .focus-panel {
    min-height: 500px;
    padding: 18px;
  }

  .focus-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .focus-visual {
    height: 290px;
    transform: scale(0.86);
  }

  .focus-tabs {
    gap: 2px;
  }

  .focus-tab {
    padding-inline: 4px;
    font-size: 10px;
  }

  .check-table th,
  .check-table td {
    min-width: 190px;
    padding: 16px;
  }

  .section-heading h2,
  .faq-intro h2 {
    font-size: 32px;
  }

  .top-games-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .top-games-rail {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-game-card {
    padding: 7px;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .article-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .review-copy h2 {
    font-size: 29px;
  }

  .review-copy h3 {
    font-size: 23px;
  }

  .footer-top {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .footer-responsible {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
