@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #1b1b1b;
  --header: #141414;
  --surface: #242424;
  --line: #3d3d3d;
  --text: #f4f4f4;
  --muted: #c8c8c8;
  --accent: #c9a24a;
  --btn-top: #e3c36a;
  --btn-bot: #b48a2e;
  --btn-edge: #6f5418;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
.wrap { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img { height: 44px; width: auto; }
.site-footer .logo img { height: 50px; }
.nav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover { color: var(--accent); }
.header-cta { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: top .08s ease, box-shadow .08s ease;
}
.btn-primary {
  color: #1a1408;
  background: linear-gradient(180deg, var(--btn-top) 0%, var(--btn-bot) 100%);
  border: 1px solid var(--btn-edge);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 3px 0 var(--btn-edge),
    0 5px 10px rgba(0,0,0,.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #edd07a 0%, #c49738 100%);
}
.btn-primary:active {
  top: 3px;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.25), 0 1px 0 var(--btn-edge);
}
.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border: 1px solid #505050;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 3px 0 #101010,
    0 5px 10px rgba(0,0,0,.28);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, #444 0%, #303030 100%);
}
.btn-secondary:active {
  top: 3px;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.4), 0 1px 0 #101010;
}
.btn-block { width: 100%; }
.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 5px;
}
.hero { padding: 48px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}
.hero p { color: var(--text); margin: 0 0 14px; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual img {
  width: min(340px, 100%);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.4));
}
.section { padding: 44px 0; }
.section h2 {
  font-size: 24px;
  margin: 0 0 14px;
  font-weight: 700;
}
.section h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  font-weight: 650;
}
.muted { color: var(--muted); }
.media {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.media img { border-radius: 6px; width: 100%; }
.banner-img { margin: 22px 0 8px; border-radius: 6px; width: 100%; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
  background: var(--surface);
}
th, td {
  border: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #2c2c2c;
  font-weight: 700;
  color: var(--text);
}
.app-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}
.app-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
}
.app-panel .icon { width: 28px; height: 28px; margin-bottom: 8px; color: var(--accent); }
.game-index { margin-top: 8px; }
.game-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.game-row:last-child { border-bottom: 0; }
.game-row .cat {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}
.game-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.game-row li { font-size: 16px; color: var(--text); }
.payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pay {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
}
.pay-logo {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.pay small { color: var(--muted); display: block; margin-top: 8px; }
.cta-row { display: flex; justify-content: center; margin: 24px 0 0; }
.cta-row .btn { min-width: min(280px, 100%); }
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  margin-bottom: 8px;
}
.faq-item h3 { margin: 0; font-size: 16px; }
.faq-item button.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 14px 16px;
  cursor: pointer;
}
.faq-a { display: none; padding: 0 16px 14px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }
.site-footer {
  background: var(--header);
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  margin-top: 12px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer-apps { display: flex; gap: 10px; flex-wrap: wrap; }
.fineprint { color: var(--muted); font-size: 14px; margin-top: 18px; }
.legal { max-width: 720px; padding: 40px 0 64px; }
.legal h1 { font-size: 28px; }
@media (max-width: 900px) {
  .hero-grid, .media, .app-panels, .payments { grid-template-columns: 1fr; }
  .game-row { grid-template-columns: 1fr; gap: 6px; }
  .nav, .header-cta { display: none; }
  .nav.open, .header-cta.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--header);
    padding: 8px 0 12px;
  }
  .header-inner { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta.open { display: flex; width: 100%; }
}
