:root {
  --pink: #e43778;
  --pink-dark: #c21d60;
  --ink: #1a1a1a;
  --muted: #525252;
  --panel: #f3f4f6;
  --max: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.logo {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 34px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  color: #fff;
}
.logo-bet { color: #ff2d78; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  color: #fff;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.desk-nav { display: none; gap: 1.5rem; }
.desk-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desk-nav a[aria-current="page"] { color: #ff4d8d; }
.burger { position: static; }
.burger-summary {
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.burger-summary::-webkit-details-marker { display: none; }
.burger-bars { display: flex; flex-direction: column; gap: 6px; }
.burger-bars i { display: block; width: 20px; height: 2px; background: #fff; }
.burger-close { display: none; font-size: 28px; line-height: 1; }
details[open] > .burger-summary .burger-bars { display: none; }
details[open] > .burger-summary .burger-close { display: block; }
.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.mobile-nav ul { list-style: none; margin: 0 auto; padding: 0.5rem 1rem 1rem; width: min(var(--max), calc(100% - 2rem)); }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-nav a[aria-current="page"] { color: #ff4d8d; }

.hero {
  display: block;
  margin-top: 1rem;
  min-height: 188px;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(90% 80% at 50% 115%, rgba(255,196,40,.7), transparent 52%),
    linear-gradient(180deg, #24150c 0%, #6b3d12 46%, #e2ae32 82%, #f2c84a 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 188px;
  padding: 1.5rem 0.6rem;
}
.hero p { margin: 0; text-align: center; }
.gold {
  display: block;
  color: #ffe14a;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 6vw, 4.2rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 3px #1a1004;
  paint-order: stroke fill;
}
.hero-art { display: none; justify-content: center; gap: 0.6rem; font-size: 2.4rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
}
.btn:hover { background: var(--pink-dark); }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.note { color: #737373; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1.15; margin: 0.4rem 0 0; }
h2 { margin: 0; }
.rich { font-size: 16px; color: #262626; }
.rich a { color: var(--pink); font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.chips li { background: #fff0f5; color: var(--pink-dark); font-weight: 800; font-size: 14px; border-radius: 999px; padding: 0.25rem 0.75rem; }
.section { margin-top: 2.5rem; }
.panel { background: var(--panel); border-radius: 8px; padding: 1.25rem 1.35rem; margin-top: 1rem; }
.panel ul, .rich ul { margin: 0.6rem 0 0; padding-left: 1.2rem; }

.game-grid {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.game-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.5rem 0.45rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
}
.game-caption strong, .game-caption small { display: block; }
.game-caption small { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; opacity: .85; }

.bonus-table { margin: 1rem 0 0; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; }
.bonus-table div { display: grid; gap: 0.2rem; padding: 0.75rem 1rem; border-bottom: 1px solid #e5e5e5; }
.bonus-table div:last-child { border-bottom: 0; }
.bonus-table dt { color: #525252; font-size: 14px; }
.bonus-table dd { margin: 0; font-weight: 800; font-size: 14px; }

.steps { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.steps li, .cards a, .plain-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1rem;
}
.steps span { color: var(--pink); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.cards { display: grid; gap: 0.75rem; margin-top: 1rem; }
.cards a { display: block; text-decoration: none; color: inherit; }
.cards a span { color: var(--pink); font-weight: 800; font-size: 14px; }

.faq { border: 1px solid #e5e5e5; border-radius: 10px; margin-top: 1rem; }
.faq details { padding: 0.8rem 1rem; border-bottom: 1px solid #e5e5e5; }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: #404040; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; color: #737373; font-size: 14px; }
.crumbs a { color: var(--pink); font-weight: 700; }

.site-footer { margin-top: 4rem; background: #000; color: #fff; padding-bottom: 5.5rem; }
.footer-grid { display: grid; gap: 1.5rem; padding: 2.5rem 0; }
.site-footer h2 { color: #ff4d8d; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.75); font-size: 14px; }
.site-footer ul { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.site-footer img { margin-top: 0.8rem; height: 32px; width: auto; background: #fff; border-radius: 4px; padding: 4px 8px; }
.footer-note { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0 1.6rem; color: rgba(255,255,255,.6); font-size: 12px; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(0,0,0,.1);
}
main { padding-bottom: 1rem; }

@media (min-width: 700px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .steps, .cards { grid-template-columns: 1fr 1fr; }
  .bonus-table div { grid-template-columns: 1fr 1fr; align-items: center; }
  .bonus-table dd { text-align: right; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .cta-row { display: flex; flex-wrap: wrap; }
}
@media (min-width: 1024px) {
  .desk-nav { display: flex; }
  .burger { display: none; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 0; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1fr auto 1fr; min-height: 280px; padding: 1.5rem 2rem; }
  .hero-art { display: flex; }
  .gold { font-size: 4.4rem; -webkit-text-stroke: 7px #1a1004; }
}
