:root {
  --bg: #060423;
  --surface: #171532;
  --surface-2: #292742;
  --border: #191734;
  --text: #f5f0fe;
  --muted: #c3d1da;
  --accent: #f2ff44;
  --accent-2: #eded12;
  --login-fill: #462c8a;
  --radius: 10px;
  --font-heading: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 48px;
  --container: 1120px;
}
* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); font-family: var(--font-body); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 78% 8%, rgba(242,255,68,.12), transparent 28rem), var(--bg); color: var(--text); font-size: 16px; line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 20; background: var(--accent); color: #060423; padding: 10px 14px; border-radius: var(--radius); font-weight: 700; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 10; height: var(--header-h); background: rgba(6,4,35,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(245,240,254,.08); }
.header-inner { width: min(1220px, calc(100% - 28px)); margin-inline: auto; height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.brand img, .footer-brand img { display: block; height: auto; }
.brand img { width: 92px; }
.footer-brand img { width: 112px; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 13px; color: var(--muted); white-space: nowrap; }
.primary-nav a { text-decoration: none; transition: color .18s ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--text); }
.header-actions { display: flex; gap: 8px; }
.header-actions .btn { min-height: 32px; padding: 6px 12px; font-size: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 22px; border-radius: var(--radius); border: 0; text-decoration: none; font-weight: 700; line-height: 1; cursor: pointer; white-space: nowrap; transition: transform .16s ease, filter .16s ease, background .16s ease; }
.btn:hover { filter: brightness(1.04); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #060423; }
.btn-login { background: var(--login-fill); color: var(--accent); }
.menu-toggle { display: none; min-height: 36px; background: var(--surface-2); color: var(--text); border: 1px solid rgba(245,240,254,.12); border-radius: var(--radius); padding: 6px 9px; font: inherit; font-size: 13px; }
.mobile-sticky { display: none; }
.hero { min-height: 320px; display: flex; align-items: center; background:
  linear-gradient(90deg, rgba(6,4,35,.94) 0%, rgba(6,4,35,.74) 48%, rgba(6,4,35,.42) 100%),
  radial-gradient(circle at 82% 30%, rgba(242,255,68,.28), transparent 18rem),
  linear-gradient(135deg, #060423 0%, #141039 48%, #2f1d63 100%);
}
.hero-content { padding-block: 40px; }
.hero h1 { margin: 0 0 14px; font-family: var(--font-heading); font-size: clamp(40px, 7vw, 56px); line-height: 1.02; letter-spacing: 0; }
.hero p { max-width: 58ch; margin: 0 0 22px; color: #e8e6f8; font-size: 18px; }
.lobby-body { padding: 30px 0 64px; }
.flow-section, .homepage-article { margin-top: 34px; }
.games-first { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.16; letter-spacing: 0; }
h1 { margin: 0 0 20px; font-size: clamp(34px, 5vw, 48px); }
h2 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 30px); }
h3 { margin: 20px 0 8px; font-size: 20px; }
p { color: var(--muted); margin: 0 0 14px; max-width: 78ch; }
.page-shell { padding: 42px 0 70px; }
.narrow { max-width: 820px; }
.tabs { margin-top: 14px; }
.tab-list { display: flex; gap: 8px; border-bottom: 1px solid rgba(245,240,254,.1); }
.tab-list button { appearance: none; background: transparent; border: 0; color: var(--muted); padding: 11px 12px 12px; font: inherit; font-weight: 700; border-bottom: 2px solid transparent; cursor: pointer; }
.tab-list button[aria-selected="true"] { color: var(--accent); border-color: var(--accent); }
.tab-list button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.tab-count { display: inline-grid; min-width: 22px; height: 22px; margin-left: 5px; padding-inline: 6px; place-items: center; border-radius: 999px; background: rgba(245,240,254,.1); color: var(--text); font-size: 11px; line-height: 1; }
.tab-list button[aria-selected="true"] .tab-count { background: var(--accent); color: #060423; }
.tab-status { margin: 10px 0 14px; color: var(--muted); font-size: 13px; }
.tabs [data-panel]:not([hidden]) { animation: tab-panel-in .18s ease-out; }
@keyframes tab-panel-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.game-tile { min-width: 0; display: flex; flex-direction: column; border-radius: var(--radius); background: var(--surface); border: 1px solid rgba(245,240,254,.1); text-decoration: none; overflow: hidden; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.game-tile:hover { transform: translateY(-2px); border-color: rgba(242,255,68,.52); box-shadow: 0 12px 30px rgba(6,4,35,.34); }
.game-thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.game-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-tile:hover .game-thumb img { transform: scale(1.035); }
.game-meta { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 11px 12px 12px; }
.game-name { display: block; color: var(--text); font-weight: 700; line-height: 1.25; }
.game-provider { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; margin-top: 4px; }
.inline-more { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px; }
.inline-more a { color: var(--accent); text-decoration: none; font-weight: 700; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); background: rgba(23,21,50,.72); border: 1px solid rgba(245,240,254,.1); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 13px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(245,240,254,.08); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
th { color: var(--text); font-weight: 700; }
td { color: var(--muted); }
.name-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.name-strip span { background: rgba(23,21,50,.9); border: 1px solid rgba(245,240,254,.1); border-radius: var(--radius); padding: 10px 12px; color: var(--text); font-weight: 700; }
.provider-strip, .payment-logo-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin: 14px 0 20px; }
.payment-logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.provider-card, .payment-logo { min-width: 0; display: grid; grid-template-rows: 70px auto; overflow: hidden; border: 1px solid rgba(245,240,254,.1); border-radius: var(--radius); background: var(--surface); color: var(--text); font-weight: 700; }
.provider-card img, .payment-logo img { display: block; width: 100%; height: 70px; padding: 10px 14px; object-fit: contain; background: #fff; }
.provider-card > span, .payment-logo > span { padding: 8px 10px 10px; text-align: center; font-size: 13px; line-height: 1.25; }
.payment-method { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; }
.payment-method img, .provider-method img { width: 80px; height: 36px; flex: 0 0 auto; border-radius: 4px; padding: 4px 7px; object-fit: contain; background: #fff; }
.provider-method { display: inline-flex; align-items: center; gap: 10px; min-width: 210px; }
.provider-method img { width: 100px; height: 38px; }
.app-showcase { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 24px; align-items: center; margin-top: 24px; }
.app-visual { min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(245,240,254,.1); background: var(--surface); }
.app-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.app-facts { min-width: 0; }
.app-facts table { min-width: 0; }
.app-facts th { width: 32%; }
.steps, .page-article ol { color: var(--muted); padding-left: 22px; max-width: 78ch; }
.steps li, .page-article li { margin-bottom: 8px; }
.homepage-article p, .page-article p { max-width: 82ch; }
.editorial-note { margin-top: 22px; padding: 14px 16px; border-left: 3px solid var(--accent); background: rgba(23,21,50,.58); color: var(--muted); }
.editorial-note p { margin: 0; }
.bonus-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.bonus-card { background: rgba(23,21,50,.82); border: 1px solid rgba(245,240,254,.1); border-radius: var(--radius); padding: 20px; }
.bonus-card dl { display: grid; gap: 10px; margin: 14px 0; }
.bonus-card div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; }
dt { color: var(--text); font-weight: 700; }
dd { margin: 0; color: var(--muted); }
.soft-end { margin-top: 20px; }
.auth-form { display: grid; gap: 14px; margin-top: 20px; padding: 18px; border-radius: var(--radius); background: rgba(23,21,50,.82); border: 1px solid rgba(245,240,254,.1); }
.auth-form label { display: grid; gap: 7px; color: var(--text); font-weight: 700; }
.auth-form input, .auth-form textarea { width: 100%; border: 1px solid rgba(245,240,254,.16); background: #0f0c2d; color: var(--text); border-radius: var(--radius); padding: 12px; font: inherit; }
.auth-form input:focus, .auth-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.auth-form .check { display: flex; gap: 10px; align-items: center; color: var(--muted); font-weight: 600; }
.auth-form .check input { width: auto; }
.form-submit { width: fit-content; }
.faq details { background: rgba(23,21,50,.58); border: 1px solid rgba(245,240,254,.1); border-radius: var(--radius); margin-bottom: 10px; padding: 13px 15px; }
.faq summary { cursor: pointer; color: var(--text); font-weight: 700; }
.faq p { margin: 10px 0 0; }
.site-footer { padding: 38px 0 92px; background: #05031c; border-top: 1px solid rgba(245,240,254,.08); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; align-items: start; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 20px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; }
.trust-row img { max-height: 36px; width: auto; opacity: .88; }
.footer-bottom { margin-top: 26px; color: var(--muted); font-size: 13px; }
@media (max-width: 920px) {
  .header-inner { grid-template-columns: auto auto 1fr; gap: 12px; }
  .brand img { width: 88px; }
  .menu-toggle { display: inline-flex; justify-self: start; }
  .primary-nav { display: none; position: absolute; left: 14px; right: 14px; top: calc(var(--header-h) + 8px); padding: 14px; border-radius: var(--radius); background: var(--surface); border: 1px solid rgba(245,240,254,.12); flex-direction: column; align-items: flex-start; }
  .primary-nav.is-open { display: flex; }
  .header-actions { justify-self: end; }
  .header-actions .btn { padding-inline: 12px; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .provider-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payment-logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bonus-list, .footer-grid, .app-showcase { grid-template-columns: 1fr; }
  .app-showcase { align-items: start; }
  .trust-row { justify-content: flex-start; }
}
@media (max-width: 560px) {
  :root { --header-h: 48px; }
  body { padding-bottom: 68px; }
  .container { width: min(100% - 24px, var(--container)); }
  .brand img { width: 84px; }
  .header-actions { display: none; }
  .mobile-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 12; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px; background: rgba(6,4,35,.96); border-top: 1px solid rgba(245,240,254,.1); }
  .hero { min-height: 280px; }
  .hero-content { padding-block: 30px; }
  .hero p { font-size: 16px; }
  .game-grid { gap: 10px; }
  .game-meta { padding: 9px 10px 10px; }
  .game-provider { font-size: 11px; }
  .provider-strip, .payment-logo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  table { min-width: 560px; }
  .bonus-card div { grid-template-columns: 1fr; gap: 2px; }
  .form-submit { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}