:root {
  color-scheme: dark;
  --bg: #131317;
  --bg-dark: #0e0e0e;
  --surface: #202024;
  --surface-2: #28282e;
  --gold: #efc644;
  --gold-2: #f3d472;
  --green: #71f79f;
  --blue: #90ddf0;
  --blue-dark: #354c52;
  --border: #433626;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --subtle: rgba(255, 255, 255, 0.16);
  --danger: #f87171;
  --radius: 8px;
  --sidebar: 240px;
  font-family: Inter, Roboto, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    14px/1.55 Inter,
    Roboto,
    Arial,
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 6px;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  z-index: 90;
  background: #000;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
}
.brand img {
  display: block;
  width: 176px;
}
.sidebar nav {
  display: grid;
  gap: 4px;
}
.sidebar nav a,
.sidebar-cta a {
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 650;
}
.sidebar nav a:hover,
.sidebar nav a[aria-current="page"] {
  background: rgba(113, 247, 159, 0.1);
  color: var(--green);
}
.sidebar-cta {
  margin-top: auto;
  display: grid;
  gap: 8px;
}
.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar);
  right: 0;
  height: 64px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.topbar strong {
  font-size: 28px;
}
.topbar span {
  display: flex;
  gap: 8px;
}
.mobile-header {
  display: none;
}
.site-main {
  min-height: 100vh;
  padding: 88px 40px 48px 280px;
  display: grid;
  gap: 32px;
}
.site-main > *,
.panel,
.game-grid {
  min-width: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 28px;
  border-radius: 7px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  line-height: 1.15;
  border: 1px solid transparent;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}
.btn:hover {
  background: var(--gold-2);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--subtle);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-blue {
  background: var(--blue);
  color: #111;
}
.btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
}
.btn-small {
  padding: 8px 16px;
  min-height: 40px;
  font-size: 12px;
}
.subnav {
  display: flex;
  gap: 4px;
  overflow: auto;
  min-width: 0;
  margin: -24px 0 0;
  padding: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar {
  display: none;
}
.subnav a {
  padding: 14px 18px;
  color: var(--muted);
  white-space: nowrap;
}
.subnav a:hover {
  color: #fff;
}
.hero {
  position: relative;
  min-height: 348px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #050505;
  display: grid;
  align-items: center;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.74) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  padding: 54px 40px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1,
.legal-page h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--gold);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}
.panel,
.offer-band {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 24px;
}
.panel h2,
.offer-band h2,
.prose h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.25;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.game-card {
  position: relative;
  display: block;
  aspect-ratio: 425/573;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.2s ease;
}
.game-card:hover {
  transform: translateY(-3px);
}
.game-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card.is-live {
  aspect-ratio: 728/498;
}
.game-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 10px 9px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-weight: 750;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.more-games {
  margin-top: 14px;
}
.more-games summary {
  width: max-content;
  margin: auto;
  padding: 10px 22px;
  border: 1px solid var(--subtle);
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}
.more-games[open] summary {
  margin-bottom: 14px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.bonus-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: stretch;
}
.bonus-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.bonus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #151515 0%,
    rgba(21, 21, 21, 0.86) 46%,
    rgba(21, 21, 21, 0.2)
  );
}
.bonus-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 7px;
}
.bonus-card p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}
.bonus-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  overflow-wrap: anywhere;
}
.bonus-card span {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  border: 1px dashed var(--blue);
  background: var(--blue-dark);
  color: var(--blue);
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.offer-band {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  align-items: center;
}
.offer-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.62;
}
.offer-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #433626 0%,
    rgba(67, 54, 38, 0.76) 55%,
    rgba(67, 54, 38, 0.18)
  );
}
.offer-band > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: start;
}
.offer-band p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}
.offer-band strong {
  font-size: 22px;
}
.providers div,
.screenshots div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.provider-list li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}
.providers img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.screenshots div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.screenshots img {
  border-radius: 10px;
  background: var(--surface);
}
.center,
.center-panel {
  text-align: center;
}
.center-panel {
  padding: 8px;
}
.prose {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}
.prose h2 {
  margin-top: 22px;
}
.prose h3 {
  color: var(--gold);
  font-size: 21px;
  margin: 20px 0 8px;
}
.prose h4 {
  color: #fff;
}
.prose p {
  margin: 0 0 14px;
}
.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul,
.prose ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.prose li {
  margin: 5px 0;
}
.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 16px 0;
  white-space: nowrap;
}
.prose th,
.prose td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 11px 12px;
  text-align: left;
}
.prose th {
  background: var(--surface);
  color: var(--gold);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.info-grid article {
  background: var(--surface);
  border-radius: 10px;
  padding: 16px;
}
.warning {
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.24);
  color: #fecaca;
  padding: 14px;
  border-radius: 8px;
}
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--gold);
  font-weight: 800;
}
.faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.82);
}
.legal-page {
  max-width: 980px;
}
.muted {
  color: var(--muted);
}
.site-footer {
  padding: 40px 40px 100px 280px;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
  margin-bottom: 28px;
}
.footer-grid section {
  display: grid;
  gap: 8px;
}
.footer-grid h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 15px;
}
.footer-grid a {
  color: var(--muted);
}
.footer-grid a:hover,
.rg-links a:hover {
  color: var(--green);
}
.rg-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.site-footer p {
  font-size: 12px;
}
.site-footer strong {
  color: var(--gold);
}
.bottom-nav {
  display: none;
}
@media (max-width: 1200px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .screenshots div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  :root {
    --sidebar: 0;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #000;
    padding: 8px 14px;
  }
  .mobile-header img {
    width: 118px;
  }
  .icon-button {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--green);
    font-size: 24px;
  }
  .sidebar {
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 0.2s ease;
    z-index: 120;
    width: min(86vw, 300px);
  }
  body.menu-open .sidebar {
    transform: none;
    visibility: visible;
  }
  .topbar {
    display: none;
  }
  .site-main {
    padding: 82px 16px 104px;
    gap: 24px;
  }
  .subnav {
    margin: -18px 0 0;
    padding: 0;
  }
  .hero {
    min-height: 300px;
  }
  .hero-copy {
    padding: 34px 22px;
  }
  .hero p {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    padding: 32px 16px 92px;
  }
  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    gap: 2px;
    background: var(--bg-dark);
    border-top: 1px solid var(--surface);
    padding: 8px 4px env(safe-area-inset-bottom, 0);
  }
  .bottom-nav a {
    min-width: 48px;
    min-height: 48px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
  }
}
@media (max-width: 680px) {
  .panel,
  .offer-band {
    padding: 18px;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .bonus-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .screenshots div {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .btn {
    width: 100%;
    padding-inline: 18px;
  }
  .topbar .btn,
  .mobile-header .btn {
    width: auto;
  }
  .hero {
    min-height: 270px;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.48)
    );
  }
  .hero h1 {
    font-size: 32px;
  }
  .panel h2,
  .offer-band h2,
  .prose h2 {
    font-size: 22px;
  }
  .prose h3 {
    font-size: 19px;
  }
  .prose table {
    font-size: 12px;
  }
  .game-card span {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
