:root {
  --accent: #550e13;
  --accent-light: color-mix(in srgb, var(--accent) 70%, white);
  --accent-hover: color-mix(in srgb, var(--accent) 85%, white);
  --bg: #08090f;
  --panel: #15131a;
  --panel-2: #21141a;
  --text: #f1edf0;
  --muted: #b8adb3;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, Arial, sans-serif; background:
  radial-gradient(circle at 50% -10%, rgba(130, 24, 38, .18), transparent 34%),
  radial-gradient(circle at 82% 8%, rgba(216, 163, 74, .08), transparent 28%),
  var(--bg); color: var(--text); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }
header { background: rgba(12,12,17,.96); padding: 0 16px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.logo { display: inline-flex; align-items: center; width: 178px; min-width: 178px; color: #fff; }
.logo img { width: 100%; height: auto; display: block; }
.nav-links { display: flex; gap: 16px; list-style: none; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: #eee; font-size: .92rem; }
.nav-links a:hover { color: var(--accent-light); text-decoration: none; }
.burger { display: none; background: none; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
main { max-width: 1180px; margin: 0 auto; padding: 26px 16px; }
section { margin-bottom: 42px; }
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(10,9,15,.94) 0%, rgba(18,9,14,.9) 34%, rgba(58,10,20,.62) 62%, rgba(8,8,13,.92) 100%),
    radial-gradient(circle at 28% 20%, rgba(216,163,74,.18), transparent 30%);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 32%, rgba(216,163,74,.08));
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: -170px;
  background: radial-gradient(circle, rgba(216,163,74,.2), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.hero > :not(.brand-banner) { position: relative; z-index: 1; }
.brand-banner {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58%, 700px);
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  opacity: .96;
  z-index: 0;
  transform: translateX(26px);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 16%, #000 44%);
}
.brand-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.trust-pill {
  width: fit-content;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(216,163,74,.22);
  color: #f4d58f;
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
h1 { max-width: 760px; font-size: clamp(2.45rem, 5.6vw, 5.15rem); line-height: .98; color: #fff; margin-bottom: 20px; letter-spacing: 0; text-wrap: balance; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--accent-light); margin-bottom: 12px; letter-spacing: 0; }
h3 { font-size: 1.08rem; color: #fff; margin: 18px 0 8px; letter-spacing: 0; }
p { margin-bottom: 13px; color: var(--muted); }
.hero p { max-width: 690px; font-size: clamp(1rem, 1.5vw, 1.22rem); color: rgba(245,238,242,.78); margin-bottom: 28px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: linear-gradient(135deg, #fff0b2, #d8a34a 55%, #b1742e);
  color: #12080b;
  font-weight: 900;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(216,163,74,.22), inset 0 1px 0 rgba(255,255,255,.55);
}
.cta-btn:hover { background: linear-gradient(135deg, #fff7cd, #e0ad58 55%, #bc7f36); text-decoration: none; transform: translateY(-1px); }
.trust-grid, .info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.trust-card, .info-card { background: var(--panel); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 18px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; background: var(--panel); border-radius: 8px; overflow: hidden; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
th { color: var(--accent-light); white-space: nowrap; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(226px,1fr)); gap: 18px; align-items: start; }
.game-card { background: var(--panel); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; overflow: hidden; text-align: center; transition: transform .2s, border-color .2s, box-shadow .2s; }
.game-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent-light) 65%, transparent); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.game-link { display: block; color: inherit; text-decoration: none; }
.game-link:hover { text-decoration: none; }
.game-card img { width: 100%; aspect-ratio: 226/338; object-fit: cover; background: #0f0f16; }
.game-card p { padding: 6px 8px; margin: 0; font-size: .86rem; }
details { border: 1px solid rgba(255,255,255,.1); border-radius: 6px; margin-bottom: 8px; overflow: hidden; background: var(--panel); }
summary { padding: 14px 16px; cursor: pointer; font-weight: 750; list-style: none; display: flex; justify-content: space-between; }
summary::after { content: "+"; color: var(--accent-light); }
details[open] summary::after { content: "-"; }
details p { padding: 0 16px 14px; }
footer { background: #0e0d13; text-align: center; padding: 26px 16px; color: #827983; font-size: .86rem; margin-top: 48px; }
.footer-nav { margin-top: 10px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.legal-note { max-width: 980px; margin: 10px auto; font-size: .78rem; color: #8f858c; }
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--accent-light); padding: 10px 16px 14px; z-index: 300; text-align: center; box-shadow: 0 -3px 16px rgba(0,0,0,.5); }
.mobile-cta-bar a { color: #12080b; font-weight: 850; text-decoration: none; display: block; line-height: 1.3; }
.mcta-bonus { display: block; font-size: 1rem; }
.mcta-sub { display: block; font-size: .72rem; opacity: .75; }
@media (max-width: 820px) {
  .burger { display: block; }
  .logo { width: 154px; min-width: 154px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #111018; padding: 12px 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 9px 0; }
  .hero {
    min-height: auto;
    padding: 28px 18px 24px;
    align-items: end;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(14,10,16,.72) 0%, rgba(12,9,14,.9) 42%, rgba(8,8,13,.98) 100%),
      radial-gradient(circle at 78% 14%, rgba(216,163,74,.18), transparent 38%);
  }
  .brand-banner {
    width: 100%;
    height: 58%;
    opacity: .52;
    transform: none;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.72) 48%, transparent 100%);
  }
  .brand-banner img { object-position: 70% top; }
  .trust-pill { margin-top: 132px; margin-bottom: 14px; max-width: 100%; font-size: .74rem; padding: 8px 11px; }
  .hero h1 { max-width: 100%; font-size: clamp(2rem, 10.8vw, 3.4rem); line-height: 1.02; margin-bottom: 14px; }
  .hero p { max-width: 100%; font-size: .98rem; line-height: 1.58; margin-bottom: 20px; color: rgba(245,238,242,.82); }
  .hero .cta-btn { width: auto; min-width: min(100%, 260px); min-height: 50px; padding-inline: 24px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }
}
@media (max-width: 600px) {
  table, tbody, tr, th, td { display: block; }
  th { padding-bottom: 2px; }
  .cta-btn { width: 100%; }
  .hero .cta-btn { width: 100%; }
  main { padding: 14px 10px; }
  .hero { padding: 22px 14px 18px; border-radius: 14px; }
  .trust-pill { margin-top: 112px; font-size: .7rem; }
  .hero h1 { font-size: clamp(1.82rem, 10.5vw, 2.95rem); }
}
