:root {
  --bg: #07100e;
  --surface: #0c1513;
  --surface-2: #111d1a;
  --surface-3: #172622;
  --line: #263934;
  --text: #f2f6ed;
  --muted: #93a49e;
  --yellow: #d8ff3e;
  --yellow-2: #efff82;
  --green: #55e6b2;
  --red: #ff7b75;
  --sidebar: 196px;
  --radius: 4px;
  --content: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 8%, rgba(85,230,178,.07), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 1000;
  background: var(--yellow); color: #090909; padding: 10px 14px; font-weight: 900;
}
.skip-link:focus { top: 12px; }

.sidebar {
  position: fixed; inset: 0 auto 0 0; z-index: 60; width: var(--sidebar);
  display: flex; flex-direction: column; overflow-y: auto;
  background: #07100e; border-right: 1px solid #20332e;
}
.brand { height: 74px; display: grid; place-items: center; border-bottom: 1px solid #20332e; }
.wordmark { display: inline-flex; align-items: center; color: #fff; font-size: 19px; font-weight: 950; letter-spacing: -.06em; line-height: 1; text-transform: uppercase; }
.wordmark-mark {
  width: 36px; height: 36px; margin-right: 5px; display: grid; place-items: center;
  border: 2px solid var(--yellow); border-radius: 50%; color: var(--yellow);
  font-family: Georgia, serif; font-size: 18px; font-style: italic; letter-spacing: -.08em;
  box-shadow: inset 0 0 14px rgba(216,255,62,.08), 0 0 20px rgba(85,230,178,.08);
}
.wordmark-name { color: #f7faf4; }
.wordmark-tld { margin-left: 1px; color: var(--green); font-size: .72em; letter-spacing: -.03em; }
.side-nav { padding: 14px 10px 90px; }
.side-nav a, .sidebar-bottom a, .sound-toggle {
  min-height: 38px; width: 100%; display: flex; align-items: center; gap: 11px;
  padding: 8px 10px; border: 0; border-radius: 3px; background: transparent;
  color: #a9a9a4; font-size: 12px; font-weight: 700; cursor: pointer;
}
.side-nav a:hover, .side-nav a:focus-visible, .sound-toggle:hover { background: #11201c; color: #fff; }
.side-nav a.active { background: linear-gradient(105deg, var(--yellow), #b9ef54 62%, var(--green)); color: #07100e; box-shadow: 0 8px 24px rgba(85,230,178,.09); }
.nav-icon { width: 18px; text-align: center; font-size: 16px; font-family: Georgia, serif; }
.nav-label { margin: 22px 10px 6px; color: #5f5f5b; font-size: 9px; letter-spacing: .16em; font-weight: 900; text-transform: uppercase; }
.sidebar-bottom {
  position: sticky; bottom: 0; margin-top: auto; padding: 10px;
  background: linear-gradient(transparent, #07100e 18%, #07100e); border-top: 1px solid #20332e;
}
.age-badge { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid #787875; border-radius: 50%; font-size: 8px; }

.site-shell { min-height: 100vh; margin-left: var(--sidebar); }
.topbar {
  position: sticky; top: 0; z-index: 50; height: 58px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,16,14,.94); border-bottom: 1px solid #20332e; backdrop-filter: blur(12px);
}
.topbar-links { height: 100%; display: flex; align-items: center; gap: 27px; }
.topbar-links a { position: relative; height: 100%; display: grid; place-items: center; color: #aaa9a4; font-size: 12px; font-weight: 800; }
.topbar-links a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform .2s ease; }
.topbar-links a:hover, .topbar-links a.active { color: #fff; }
.topbar-links a.active::after, .topbar-links a:hover::after { transform: scaleX(1); }
.account-actions { display: flex; align-items: center; gap: 8px; }
.search-toggle, .icon-button {
  width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #2a2a2a;
  background: #10201c; border-color: #294139; border-radius: var(--radius); cursor: pointer;
}
.search-toggle svg, .icon-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.login-button, .signup-button, .header-login {
  display: inline-flex; min-height: 34px; align-items: center; justify-content: center; padding: 0 17px;
  border: 1px solid var(--yellow); border-radius: 3px; font-size: 11px; font-weight: 900; text-transform: uppercase;
}
.login-button { color: var(--yellow); }
.signup-button { background: linear-gradient(105deg, var(--yellow), var(--green)); color: #07100e; }
.login-button:hover, .signup-button:hover { box-shadow: 0 0 18px rgba(85,230,178,.2); }
.search-panel {
  position: absolute; top: 49px; right: 24px; width: min(360px, calc(100vw - 32px)); padding: 14px;
  background: #10201c; border: 1px solid #2b443d; box-shadow: 0 18px 50px #000;
}
.search-panel label { display: block; margin-bottom: 7px; color: #b8b8b2; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.search-panel input { width: 100%; height: 42px; padding: 0 12px; color: #fff; background: #0d0d0d; border: 1px solid #3a3a3a; outline: none; }
.search-panel input:focus { border-color: var(--yellow); }

.mobile-header { display: none; }
.menu-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(0,0,0,.76); }

.hero { position: relative; min-height: 348px; overflow: hidden; background: #000; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.62) 35%, rgba(0,0,0,.08) 70%); }
.hero-content { position: relative; z-index: 1; max-width: 600px; padding: 66px 48px 44px; }
.eyebrow, .article-kicker { margin: 0 0 8px; color: var(--yellow); font-size: 10px; letter-spacing: .15em; font-weight: 900; text-transform: uppercase; }
.hero h1 { max-width: 560px; margin: 0 0 10px; font-size: clamp(35px, 4.7vw, 70px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; text-wrap: balance; }
.hero-content > p:not(.eyebrow) { margin: 0 0 22px; color: #f1f1ed; font-size: 17px; font-weight: 700; }
.primary-button {
  display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 22px;
  background: linear-gradient(105deg, var(--yellow), #b9ef54 68%, var(--green)); border: 0; border-radius: 3px; color: #07100e; font-size: 11px; font-weight: 950;
  letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
}
.primary-button:hover { background: linear-gradient(105deg, var(--yellow-2), #caff70, #7af3c7); box-shadow: 0 0 24px rgba(85,230,178,.25); transform: translateY(-1px); }
.hero-note { display: block; margin-top: 8px; color: #888; font-size: 9px; }

.content-wrap { width: min(var(--content), 100%); margin: 0 auto; padding: 28px 28px 70px; }
.section-block { margin-bottom: 38px; scroll-margin-top: 80px; }
.section-heading { min-height: 31px; margin-bottom: 11px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.section-heading h2 {
  position: relative; margin: 0; padding-left: 12px; font-size: 18px; line-height: 1.2; letter-spacing: -.02em;
}
.section-heading h2::before { content: ""; position: absolute; inset: 1px auto 1px 0; width: 3px; background: linear-gradient(var(--yellow), var(--green)); box-shadow: 0 0 10px rgba(85,230,178,.2); }
.section-heading > a { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.section-heading > a::after { content: " →"; }
.game-count { color: #777; font-size: 11px; }

.bonus-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.bonus-card {
  position: relative; min-height: 176px; padding: 24px 18px 16px; overflow: hidden; isolation: isolate;
  border: 1px solid #35473f; border-radius: var(--radius); background: #0c1513;
}
.bonus-card::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--bonus-image); background-size: cover; background-position: center; transition: transform .35s ease; }
.bonus-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.98), rgba(0,0,0,.8) 45%, rgba(0,0,0,.08)); }
.bonus-card:hover::before { transform: scale(1.035); }
.bonus-card p { margin: 0 0 3px; color: var(--yellow); font-size: 8px; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }
.bonus-card h3 { max-width: 175px; margin: 0; font-size: 19px; line-height: 1.05; text-transform: uppercase; }
.bonus-card span { display: block; margin-top: 3px; color: #c3c3bf; font-size: 10px; }
.bonus-card a { position: absolute; left: 18px; bottom: 16px; padding: 7px 11px; background: linear-gradient(105deg, var(--yellow), var(--green)); color: #06100d; font-size: 8px; font-weight: 950; text-transform: uppercase; }
.center-action { margin-top: 15px; text-align: center; }
.secondary-button {
  display: inline-flex; min-height: 34px; align-items: center; justify-content: center; padding: 0 18px;
  border: 1px solid #4a4a48; border-radius: 2px; background: #181818; color: #e4e4e0;
  font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
}
.secondary-button:hover { border-color: var(--yellow); color: var(--yellow); }

.game-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.game-card { position: relative; min-width: 0; overflow: hidden; border-radius: 3px; background: #101b18; cursor: pointer; }
.game-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.06); border-radius: inherit; pointer-events: none; }
.game-card img { display: block; width: 100%; height: auto; aspect-ratio: 427/575; object-fit: cover; object-position: center; transition: transform .35s ease, filter .35s ease; }
.game-card-meta { position: absolute; inset: auto 0 0; padding: 32px 8px 7px; background: linear-gradient(transparent, rgba(0,0,0,.92)); transform: translateY(100%); transition: transform .25s ease; }
.game-card-meta strong { display: block; overflow: hidden; color: #fff; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.game-card-meta span { color: #9e9e99; font-size: 8px; }
.play-chip {
  position: absolute; inset: 50% auto auto 50%; width: 41px; height: 41px; display: grid; place-items: center;
  border: 0; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--green)); color: #06100d; font-size: 14px; opacity: 0;
  transform: translate(-50%, -40%) scale(.8); transition: opacity .2s, transform .25s; cursor: pointer;
}
.game-card:hover img, .game-card:focus-within img { transform: scale(1.045); filter: brightness(.58); }
.game-card:hover .game-card-meta, .game-card:focus-within .game-card-meta { transform: translateY(0); }
.game-card:hover .play-chip, .game-card:focus-within .play-chip { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.game-badge { position: absolute; left: 6px; top: 6px; padding: 3px 6px; background: linear-gradient(105deg, var(--yellow), var(--green)); color: #06100d; font-size: 7px; font-weight: 950; text-transform: uppercase; }
.live-grid .game-card img { aspect-ratio: 1.55/1; object-position: center 35%; }
.filter-row { margin: -2px 0 13px; display: flex; gap: 6px; overflow-x: auto; }
.filter { padding: 7px 12px; border: 1px solid #2b413b; background: #0e1a17; color: #91a39d; border-radius: 20px; font-size: 9px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.filter.active, .filter:hover { border-color: var(--yellow); color: var(--yellow); }
.game-card[hidden] { display: none; }

.trust-strip {
  margin: 12px 0 54px; min-height: 112px; padding: 20px 28px; display: flex; align-items: center; justify-content: center; gap: 36px;
  background: linear-gradient(120deg, #0c1513, #11211d); border: 1px solid #263934;
}
.trust-strip img { width: 230px; height: 83px; object-fit: cover; object-position: left; }
.trust-strip div { display: grid; gap: 3px; }
.trust-strip strong { font-size: 16px; }
.trust-strip span { color: var(--muted); font-size: 12px; }

.seo-content { width: min(980px, 100%); margin: 0 auto; padding: 46px 54px; background: #0c1513; border: 1px solid #263934; }
.seo-content > h2 { max-width: 780px; margin: 0 0 16px; font-size: clamp(27px, 4vw, 44px); line-height: 1.02; letter-spacing: -.045em; text-transform: uppercase; }
.article-lede { max-width: 780px; margin: 0; color: #c2c2bd; font-size: 16px; }
.seo-content section { padding-top: 42px; scroll-margin-top: 80px; }
.seo-content section > h2 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.025em; }
.seo-content h3 { margin: 0 0 6px; font-size: 15px; }
.seo-content p { color: #aaa9a4; }
.seo-content strong { color: #f3f3ef; }
.operator-card { margin: 32px 0 4px; border: 1px solid #365047; background: #08110f; }
.operator-head { padding: 13px 17px; display: flex; justify-content: space-between; border-bottom: 1px solid #30483f; }
.operator-head h3 { margin: 0; text-transform: uppercase; }
.operator-head span { color: #777; font-size: 10px; text-transform: uppercase; }
.operator-card dl { margin: 0; }
.operator-card dl div { padding: 9px 17px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; border-bottom: 1px solid #1f312c; }
.operator-card dl div:last-child { border-bottom: 0; }
.operator-card dt { color: #787873; font-size: 12px; }
.operator-card dd { margin: 0; text-align: right; font-size: 12px; font-weight: 800; }
.warning-text { color: var(--red); }
.notice { padding: 16px 18px; border-left: 3px solid var(--yellow); background: linear-gradient(90deg, rgba(216,255,62,.08), rgba(85,230,178,.035)); color: #b9c5bf; }
.feature-list { margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 15px 0; display: grid; grid-template-columns: 40px 1fr; gap: 16px; border-bottom: 1px solid #263934; }
.feature-list li > span { color: var(--yellow); font-size: 11px; font-weight: 900; }
.feature-list p { margin: 2px 0 0; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #08110f; }
th, td { padding: 12px 14px; border-bottom: 1px solid #263934; text-align: left; }
th { color: #858580; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
td { font-size: 13px; font-weight: 800; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.info-cards div { padding: 18px; background: #08110f; border: 1px solid #263934; }
.info-cards span { display: block; color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.info-cards strong { display: block; margin-top: 5px; font-size: 18px; }
.info-cards p { margin: 6px 0 0; font-size: 12px; }
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.split-list > div { padding: 17px; background: #091310; border: 1px solid #263934; }
.split-list p { margin: 0; font-size: 12px; }
.steps { margin: 16px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 12px 0; }
.steps li > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-weight: 900; }
.steps p { margin: 1px 0 0; }
.app-callout { position: relative; min-height: 285px; margin-top: 42px; padding: 42px !important; overflow: hidden; background: #050b09; border: 1px solid #263934; }
.app-callout > div { position: relative; z-index: 2; max-width: 460px; }
.app-callout img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; }
.app-callout::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, #050505 5%, rgba(5,5,5,.88) 49%, rgba(5,5,5,.08)); }
.app-callout h2 { font-size: 28px !important; text-transform: uppercase; }
.faq-list { border-top: 1px solid #313131; }
details { border-bottom: 1px solid #313131; }
summary { position: relative; padding: 16px 42px 16px 0; list-style: none; font-weight: 800; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 7px; top: 11px; color: var(--yellow); font-size: 22px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 40px 18px 0; }

footer { padding: 46px max(28px, calc((100vw - var(--sidebar) - var(--content)) / 2 + 28px)) 26px; background: #050c0a; border-top: 1px solid #20332e; }
.footer-main { display: grid; grid-template-columns: minmax(190px, 1.35fr) repeat(5, minmax(100px, 1fr)); gap: 26px; }
.footer-wordmark { font-size: 22px; }
.footer-wordmark .wordmark-mark { width: 34px; height: 34px; font-size: 17px; }
.footer-brand p { max-width: 250px; color: #777; font-size: 11px; }
.footer-main h2 { margin: 0 0 12px; color: var(--yellow); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main a { margin: 4px 0; color: #8f8f8a; font-size: 11px; }
.footer-main a:hover { color: var(--yellow); }
.responsible-logos { margin: 34px 0 18px; padding: 18px 0; display: flex; align-items: center; gap: 20px; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.responsible-logos img { width: auto; height: 34px; object-fit: contain; filter: grayscale(1); opacity: .64; }
.legal-copy { max-width: 1060px; color: #61615e; font-size: 10px; }
.copyright { margin: 18px 0 0; color: #4e4e4b; font-size: 9px; }
.footer-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.footer-meta > div { display: flex; gap: 16px; }
.footer-meta a { color: #66736e; font-size: 9px; text-transform: uppercase; }
.footer-meta a:hover { color: var(--yellow); }
.account-actions [aria-current="page"] { box-shadow: 0 0 0 1px var(--green), 0 0 20px rgba(85,230,178,.14); }

.registration { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.88); }
.registration[hidden] { display: none; }
.registration-card { width: min(450px, 100%); padding: 38px; background: #151515; border: 1px solid #454545; box-shadow: 0 25px 90px #000; }
.registration-card h2 { margin: 0; font-size: 30px; text-transform: uppercase; }
.registration-card p:not(.eyebrow) { color: #aaa; }
.modal-close { position: fixed; right: 24px; top: 18px; border: 0; background: transparent; color: #fff; font-size: 40px; cursor: pointer; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

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

@media (max-width: 960px) {
  :root { --sidebar: 0px; }
  .mobile-header {
    position: sticky; top: 0; z-index: 54; height: 56px; padding: 0 14px;
    display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px;
    background: rgba(7,16,14,.96); border-bottom: 1px solid #20332e; backdrop-filter: blur(10px);
  }
  .mobile-logo { justify-self: center; }
  .mobile-logo .wordmark { font-size: 15px; }
  .mobile-logo .wordmark-mark { width: 29px; height: 29px; font-size: 14px; border-width: 1.5px; }
  .header-login { min-height: 32px; padding: 0 11px; color: var(--yellow); }
  .sidebar { width: 220px; transform: translateX(-101%); transition: transform .24s ease; }
  .sidebar.open { transform: translateX(0); }
  .site-shell { margin-left: 0; }
  .topbar { top: 56px; height: 48px; padding: 0 15px; overflow-x: auto; }
  .topbar-links { gap: 20px; }
  .topbar-links a { white-space: nowrap; font-size: 10px; }
  .account-actions { display: none; }
  .hero { min-height: 316px; }
  .hero-content { padding: 62px 28px 34px; }
  .content-wrap { padding: 24px 20px 56px; }
  .seo-content { padding: 38px 34px; }
  footer { padding-inline: 24px; }
}

@media (max-width: 680px) {
  .hero { min-height: 330px; }
  .hero-art { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.63) 70%, rgba(0,0,0,.2)); }
  .hero-content { padding: 68px 20px 28px; }
  .hero h1 { max-width: 360px; font-size: 40px; }
  .hero-content > p:not(.eyebrow) { max-width: 260px; font-size: 14px; }
  .content-wrap { padding-inline: 12px; }
  .section-block { margin-bottom: 30px; }
  .section-heading h2 { font-size: 16px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card { min-height: 162px; }
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .game-grid .game-card:nth-child(n+10) { display: none; }
  .catalog-grid .game-card:nth-child(n+13) { display: none; }
  .catalog-grid.expanded .game-card { display: block; }
  .catalog-grid.filtered .game-card:not([hidden]) { display: block; }
  .game-card-meta { display: block; padding: 26px 7px 7px; transform: none; pointer-events: none; }
  .game-card-meta strong { font-size: 9px; }
  .game-card-meta span { font-size: 7px; }
  .play-chip { width: 36px; height: 36px; }
  .trust-strip { padding: 17px; flex-direction: column; gap: 8px; text-align: center; }
  .trust-strip img { width: 190px; height: 69px; }
  .seo-content { padding: 30px 20px; }
  .seo-content > h2 { font-size: 29px; }
  .seo-content section { padding-top: 34px; }
  .operator-card dl div { grid-template-columns: 1fr 1fr; }
  .info-cards, .split-list { grid-template-columns: 1fr; }
  .app-callout { padding: 30px 22px !important; }
  .app-callout img { object-position: 72% center; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .responsible-logos { flex-wrap: wrap; gap: 13px; }
  .responsible-logos img { height: 25px; }
}

@media (max-width: 410px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-grid .game-card:nth-child(n+9) { display: none; }
  .catalog-grid .game-card:nth-child(n+11) { display: none; }
  .catalog-grid.expanded .game-card { display: block; }
  .catalog-grid.filtered .game-card:not([hidden]) { display: block; }
  .hero h1 { font-size: 34px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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