:root {
  --bg: #0c0a12;
  --bg-2: #120f1c;
  --surface: #181322;
  --surface-2: #211a30;
  --panel: #2a1c52;
  --fg: #f4f0e8;
  --muted: #9b93b0;
  --faint: #6e6684;
  --gold: #e3b543;
  --gold-2: #f5dc7a;
  --gold-3: #fbeda6;
  --purple: #6d4dff;
  --purple-2: #8b6bff;
  --border: #2c243c;
  --display: "Unbounded", system-ui, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--sans); min-height: 100dvh; -webkit-font-smoothing: antialiased; scrollbar-width: thin; scrollbar-color: var(--purple) var(--surface); }
* { scrollbar-width: thin; scrollbar-color: var(--purple) var(--surface); }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: var(--surface); border-radius: 999px; }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-2) 0%, var(--purple) 55%, var(--gold) 100%);
  border-radius: 999px;
  border: 2px solid var(--surface);
}
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--purple-2), var(--gold)); }
*::-webkit-scrollbar-corner { background: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
.bg-dots {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgb(227 181 67 / 0.09) 1px, transparent 1px);
  background-size: 18px 18px;
  overflow-x: hidden;
}
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; z-index: 80; background: var(--gold); color: var(--bg); padding: 8px 12px; border-radius: 8px; }
.top { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgb(44 36 60 / 0.8); background: rgb(12 10 18 / 0.9); backdrop-filter: blur(12px); }
.top-row { display: flex; align-items: center; gap: 6px; min-width: 0; height: 56px; padding: 0 8px; }
.icon-btn { flex: 0 0 auto; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; }
.brand { flex: 0 0 auto; min-width: 0; display: flex; align-items: center; }
.logo-img { display: block; height: 36px; width: auto; }
.logo-compact { height: 32px; }
.search-desk { display: none; }
.top-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; min-width: 0; flex: 0 0 auto; }
.lang { display: flex; align-items: center; height: 36px; flex-shrink: 0; border: 1px solid var(--border); background: var(--surface); border-radius: 999px; padding: 0 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.lang a { border-radius: 999px; padding: 4px 8px; color: var(--muted); }
.lang a.on { background: var(--purple); color: var(--fg); }
.lang span { color: var(--faint); padding: 0 2px; }
.age { border: 1px solid rgb(227 181 67 / 0.3); color: var(--gold-2); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 500; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px; border-radius: 999px; font-weight: 500; }
.btn-purple { background: var(--purple); color: var(--fg); }
.btn-purple:hover { background: var(--purple-2); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border: 1px solid var(--border); color: var(--muted); }
.btn-reg { padding: 0 10px; font-size: 12px; white-space: nowrap; }
.search-mob { border-top: 1px solid var(--border); padding: 12px; }
.search-mob input, .search-desk input {
  width: 100%; height: 44px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--fg); padding: 0 16px 0 16px; outline: none; font: inherit;
}
.hits { margin-top: 8px; border: 1px solid var(--border); background: var(--surface); border-radius: 16px; overflow: hidden; }
.hits a, .hits p { display: block; padding: 12px 16px; font-size: 14px; }
.hits a:hover { background: var(--surface-2); }
.hits small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.shell { display: flex; }
.scrim { position: fixed; inset: 0; z-index: 30; background: rgb(12 10 18 / 0.6); }
.side {
  position: fixed; top: 56px; bottom: 0; left: 0; z-index: 30; width: 17.5rem;
  display: flex; flex-direction: column; border-right: 1px solid var(--border);
  background: rgb(18 15 28 / 0.95); padding: 16px 12px; transform: translateX(-100%);
  transition: transform 0.2s ease; backdrop-filter: blur(12px);
}
.side.open { transform: translateX(0); }
.side nav { flex: 1; overflow: auto; scrollbar-width: thin; scrollbar-color: var(--purple) transparent; }
.side nav::-webkit-scrollbar { width: 6px; }
.side nav::-webkit-scrollbar-track { background: transparent; border-radius: 999px; }
.side nav::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-2), var(--purple) 60%, var(--gold));
  border-radius: 999px;
  border: 1px solid rgb(12 10 18 / 0.6);
}
.side nav a, .side-more a {
  display: flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: 16px; color: var(--muted); font-size: 14px;
}
.side nav a.active { background: var(--purple); color: var(--fg); }
.side nav a:hover, .side-more a:hover { background: var(--surface); color: var(--fg); }
.side-more { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }
.side-more p { margin: 0 12px 8px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.side-more small { display: block; margin: 12px; color: var(--faint); font-size: 11px; }
.main-col { min-width: 0; flex: 1; }
main { padding: 24px 16px; }
.wrap { max-width: 72rem; margin: 0 auto; }
.hero { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--border); }
.hero img { height: 16rem; width: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 10 18 / 0.9), rgb(12 10 18 / 0.45), transparent); }
.hero-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.hero-copy h2 { max-width: 28rem; font-size: 1.75rem; line-height: 1.15; margin: 8px 0 16px; }
.kicker { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; margin: 0; }
.gold, .gold-text { color: var(--gold); }
.muted, .muted-text { color: var(--muted); }
.review-grid { margin-top: 40px; display: grid; gap: 32px; }
h1 { font-size: 2.25rem; line-height: 1.1; margin-top: 12px; }
h1 span { display: block; }
.lead { margin-top: 20px; max-width: 36rem; font-size: 1.05rem; line-height: 1.65; color: var(--muted); }
.score { border-radius: 16px; border: 1px solid rgb(109 77 255 / 0.4); background: rgb(42 28 82 / 0.9); padding: 24px; }
.score-head { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgb(255 255 255 / 0.1); padding-bottom: 20px; }
.score-total { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--gold); margin: 0; }
.score-total small { margin-left: 4px; font-size: 1.1rem; color: var(--muted); }
.score ul { list-style: none; padding: 20px 0 0; margin: 0; }
.score li { display: grid; grid-template-columns: 6.5rem 1fr 2rem; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.score .bar { height: 8px; border-radius: 999px; background: rgb(255 255 255 / 0.1); overflow: hidden; }
.score .bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #7b5cff 0%, #c9e8ff 55%, #e3b543 100%); }
.score b { text-align: right; color: var(--gold-2); font-weight: 500; }
.score-note { border-top: 1px solid rgb(255 255 255 / 0.1); margin: 8px 0 0; padding-top: 16px; font-size: 11px; color: var(--faint); line-height: 1.5; }
.source { margin-top: 56px; max-width: 48rem; }
.source h2 { font-size: 1.5rem; margin: 40px 0 0; }
.source h2:first-child { margin-top: 0; font-size: 1.75rem; }
.source p { margin: 16px 0 0; font-size: 1.05rem; line-height: 1.65; color: rgb(244 240 232 / 0.9); }
.chips { margin-top: 48px; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.chip { flex: 0 0 auto; height: 40px; display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); padding: 0 16px; font-size: 14px; color: var(--muted); }
.chip.on { border-color: var(--purple); background: var(--purple); color: var(--fg); }
.shelf { margin-top: 40px; }
.shelf-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.shelf-head h2 { font-size: 1.25rem; }
.more { font-size: 14px; color: var(--purple-2); }
.games { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.game-card { position: relative; display: block; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.game-card .thumb { aspect-ratio: 1; overflow: hidden; }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-card .cap { position: absolute; inset: auto 0 0; padding: 12px; background: linear-gradient(to top, var(--bg), transparent); }
.game-card .cap p { margin: 0; font-family: var(--display); font-size: 14px; }
.game-card .cap small { color: var(--muted); }
.play-pill { position: absolute; top: 8px; left: 8px; background: var(--gold); color: var(--bg); border-radius: 999px; padding: 2px 8px; font-size: 10px; text-transform: uppercase; font-weight: 500; }
.tag-new { position: absolute; top: 8px; right: 8px; background: var(--purple); border-radius: 999px; padding: 2px 8px; font-size: 10px; text-transform: uppercase; }
.provs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.provs-all { margin-top: 24px; }
.prov { min-height: 7.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; padding: 16px 12px; text-align: center; }
.prov:hover { border-color: rgb(227 181 67 / 0.4); }
.mark { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 999px; font-family: var(--display); font-size: 18px; }
.prov .name { font-size: 14px; font-weight: 500; }
.prov small { color: var(--muted); font-size: 12px; }
.doc { max-width: 64rem; margin: 0 auto; }
.doc h1 { font-size: 2.25rem; }
.doc-hero, .doc-img { margin-top: 32px; height: 14rem; width: 100%; object-fit: cover; border-radius: 16px; border: 1px solid var(--border); }
.doc-body { max-width: 48rem; margin-top: 32px; }
.prose { margin: 16px 0; font-size: 1.02rem; line-height: 1.65; color: rgb(244 240 232 / 0.9); }
.h2 { margin: 40px 0 12px; font-size: 1.5rem; }
.h3 { margin: 32px 0 8px; font-size: 1.25rem; color: var(--gold-2); }
.wiki { color: var(--gold); text-decoration: underline; text-decoration-color: rgb(227 181 67 / 0.3); text-underline-offset: 3px; }
.wiki:hover { color: var(--gold-2); }
.bullets, .steps { list-style: none; padding: 0; margin: 16px 0; }
.bullets li, .steps li { display: flex; gap: 12px; margin: 8px 0; line-height: 1.6; }
.dot { width: 6px; height: 6px; margin-top: 10px; flex: 0 0 auto; border-radius: 999px; background: var(--gold); }
.num { width: 24px; height: 24px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--surface-2); color: var(--gold); font-family: var(--display); font-size: 12px; margin-top: 2px; }
.table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--border); border-radius: 12px; }
table { width: 100%; min-width: 32rem; border-collapse: collapse; font-size: 14px; text-align: left; }
th { background: var(--surface-2); color: var(--muted); padding: 12px 16px; font-weight: 500; }
td { padding: 12px 16px; border-top: 1px solid var(--border); vertical-align: top; }
.note { margin: 24px 0; border: 1px solid rgb(227 181 67 / 0.25); background: rgb(227 181 67 / 0.08); border-radius: 12px; padding: 12px 16px; color: var(--gold-3); font-size: 14px; line-height: 1.5; }
.faq { margin: 16px 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: rgb(24 19 34 / 0.8); }
.faq details { border-top: 1px solid var(--border); }
.faq details:first-child { border-top: 0; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 500; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { width: 8px; height: 8px; margin-top: 6px; flex: 0 0 auto; border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted); transform: rotate(45deg); }
.faq details[open] .chev { transform: rotate(225deg); }
.faq p { margin: 0; padding: 0 20px 16px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.doc-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.cards { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.card-link { display: block; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; padding: 16px; }
.card-link:hover { border-color: rgb(227 181 67 / 0.4); }
.card-title { font-family: var(--display); font-size: 1.1rem; margin: 0 0 4px; }
.gate { max-width: 36rem; padding: 48px 0; }
.notfound { max-width: 36rem; margin: 80px auto; text-align: center; }
.foot { border-top: 1px solid var(--border); background: rgb(18 15 28 / 0.8); padding: 32px 16px; }
.foot-grid { display: grid; gap: 32px; }
.foot p { max-width: 24rem; color: var(--muted); font-size: 14px; line-height: 1.6; }
.foot ul { list-style: none; padding: 0; margin: 12px 0 0; }
.foot li { margin: 8px 0; }
.foot a { color: var(--muted); font-size: 14px; }
.foot a:hover { color: var(--gold-2); }
.copy { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 16px; font-size: 12px; color: var(--faint); }
.lg-only { display: none; }
.md-hide { display: flex; }
.lg-hide { display: flex; }

@media (min-width: 480px) {
  .btn-reg { padding: 0 16px; font-size: 14px; min-height: 44px; }
  .lang { height: 40px; font-size: 12px; }
  .logo-type span { font-size: 11px; }
}
@media (min-width: 640px) {
  .top-row { height: 64px; gap: 12px; padding: 0 20px; }
  .icon-btn { width: 44px; height: 44px; }
  .hero img { height: 20rem; }
  .hero-copy { padding: 40px; }
  .hero-copy h2 { font-size: 2.25rem; }
  h1 { font-size: 3rem; }
  main { padding: 32px 24px; }
  .games { grid-template-columns: repeat(3, 1fr); }
  .provs { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .doc-hero { height: 18rem; }
}
@media (min-width: 768px) {
  .search-desk { display: block; position: relative; flex: 1; min-width: 0; max-width: 36rem; margin: 0 auto; }
  .search-desk .search-ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
  .search-desk input { padding-left: 44px; }
  .search-desk .hits { position: absolute; top: calc(100% + 8px); left: 0; right: 0; margin: 0; z-index: 50; box-shadow: 0 18px 40px -24px rgb(12 8 24 / 0.8); }
  .md-hide { display: none !important; }
  .games { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg-hide { display: none !important; }
  .lg-only { display: inline-flex; }
  .side { position: sticky; top: 64px; z-index: 0; height: calc(100dvh - 4rem); transform: none; }
  .scrim { display: none !important; }
  main { padding: 32px; }
  .foot { padding: 32px; }
  .foot-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (min-width: 1280px) {
  .review-grid { grid-template-columns: minmax(0, 1fr) 20rem; align-items: start; }
  .games { grid-template-columns: repeat(7, 1fr); }
  .provs { grid-template-columns: repeat(8, 1fr); }
  .provs-all { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 360px) {
  .logo-type { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
