:root {
  --sunset: #c76324;
  --ember: #8b351c;
  --sand: #d3a35f;
  --parchment: #f0d48f;
  --ink: #28170f;
  --bronze: #8a5a2b;
  --copper: #b87333;
  --rust: #5a2818;
  --coal: #1d1a18;
  --cream: #fff3d2;
  --gold: #f5bb39;
  --red: #8f241f;
  --silver: #c9c2b4;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 14% 70%, rgba(55, 90, 71, .5) 0 10px, transparent 11px),
    radial-gradient(circle at 86% 64%, rgba(43, 68, 52, .45) 0 13px, transparent 14px),
    linear-gradient(180deg, #b4532a 0%, #d17831 20%, #824127 45%, #3b2119 78%, #1d1715 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(8deg, transparent 0 58%, rgba(70, 40, 29, .7) 59% 62%, transparent 63%),
    linear-gradient(-7deg, transparent 0 62%, rgba(94, 56, 35, .72) 63% 66%, transparent 67%),
    linear-gradient(180deg, transparent 0 54%, rgba(80, 48, 31, .86) 55% 100%);
  opacity: .8;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 235, 180, .035) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(46, 26, 16, .08) 0 2px, transparent 2px 7px);
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid rgba(37, 19, 10, .75);
  background:
    linear-gradient(180deg, rgba(99, 52, 28, .97), rgba(42, 25, 18, .97)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 48vw);
  min-height: 52px;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(245, 187, 57, .75);
  border-radius: 6px;
  background: linear-gradient(180deg, #51301e, #211613);
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger span {
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before {
  top: -8px;
}

.hamburger span::after {
  top: 8px;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.links a {
  padding: 8px 10px;
  border: 1px solid rgba(245, 187, 57, .28);
  border-radius: 6px;
  background: rgba(28, 19, 15, .35);
  color: #ffe9a7;
}

.language-container {
  display: flex;
  align-items: center;
}

.language-selector {
  min-height: 36px;
  max-width: 160px;
  padding: 8px 34px 8px 12px;
  border: 1px solid rgba(245, 187, 57, .42);
  border-radius: 6px;
  color: #ffe9a7;
  background:
    linear-gradient(180deg, rgba(255, 231, 164, .14), transparent 48%),
    linear-gradient(180deg, #4d2a1b, #211613);
  box-shadow: inset 0 0 0 1px rgba(255, 225, 141, .12);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #f5bb39 50%),
    linear-gradient(135deg, #f5bb39 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 231, 164, .14), transparent 48%),
    linear-gradient(180deg, #4d2a1b, #211613);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    0 0,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%,
    100% 100%;
  background-repeat: no-repeat;
}

.language-selector:focus {
  outline: 2px solid rgba(245, 187, 57, .75);
  outline-offset: 2px;
}

.language-selector option {
  color: #20120c;
  background: #f0d48f;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid rgba(36, 18, 10, .72);
  background:
    linear-gradient(180deg, rgba(44, 22, 12, .08), rgba(28, 17, 14, .78)),
    radial-gradient(circle at 50% 22%, rgba(252, 193, 72, .55), transparent 31%),
    linear-gradient(180deg, #cc6f31, #6e341f 64%, #241714);
  padding: 40px 20px;
  min-height: auto;
}

.hero::before {
  content: "WANTED";
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-7deg);
  color: rgba(59, 26, 12, .24);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 19vw, 17rem);
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
  align-items: center;
  gap: 42px;
  padding: 28px 0 18px;
  max-width: 1100px;
}

.hero-inner > div:first-child {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  background: var(--parchment);
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
  opacity: .95;
}

h1,
h2,
h3 {
  margin: 0;
  color: #ffe8a8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(71, 28, 13, .9);
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.hero p {
  max-width: 740px;
  margin: 0 0 18px;
  color: #fff0c2;
  font-size: clamp(.98rem, 1.7vw, 1.08rem);
  line-height: 1.5;
  text-shadow: 1px 1px 0 rgba(30, 13, 8, .65);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid #2b1710;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 44%),
    linear-gradient(180deg, #9d592c, #522818);
  color: #fff3c4;
  box-shadow: inset 0 0 0 1px rgba(255, 225, 141, .28), 4px 5px 0 rgba(38, 18, 10, .55);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}

.button.alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), transparent 44%),
    linear-gradient(180deg, #3e3d3b, #171615);
  color: var(--gold);
}

.slot-board {
  position: relative;
  min-height: 410px;
  padding: 18px;
  border: 8px solid var(--bronze);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 222, 133, .2), transparent 23%),
    linear-gradient(180deg, #3a2218, #17100d);
  box-shadow:
    inset 0 0 0 4px #3b2116,
    inset 0 0 42px rgba(247, 167, 65, .18),
    18px 22px 0 rgba(35, 17, 10, .4);
}

.reels {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.reel {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
}

.symbol {
  min-height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(43, 22, 13, .85);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 35%),
    #e6bf75;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1rem, 3vw, 1.8rem);
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(255,255,255,.25);
  box-shadow: inset 0 -8px 0 rgba(70, 31, 14, .15);
}

.symbol.red {
  background-color: #9e3129;
  color: #ffe8b3;
}

.symbol.gold {
  background-color: var(--gold);
  color: #4c210d;
}

.symbol.silver {
  background-color: var(--silver);
  color: #211815;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  border: 4px solid rgba(38, 20, 12, .86);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
}

.stat {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 231, 164, .12), transparent),
    #2b1b14;
  border-right: 1px solid rgba(245, 187, 57, .25);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1;
}

.stat span {
  color: #f8d998;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 54px auto 72px;
}

.section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(245, 187, 57, .28);
}

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.section h3 {
  margin: 22px 0 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--gold);
}

.section p,
.section li {
  color: #fff1cd;
  font-size: 1.02rem;
}

.short-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 190px;
  padding: 20px;
  border: 3px solid rgba(91, 42, 20, .95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 224, 151, .15), rgba(32, 20, 15, .1)),
    #3a2117;
  box-shadow: inset 0 0 0 1px rgba(255, 221, 137, .18);
}

.card h2,
.card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(38, 16, 9, .9);
}

.card p {
  margin: 0;
}

.wide {
  padding: 28px;
  border: 4px solid var(--bronze);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(122, 58, 27, .78), rgba(37, 24, 18, .94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
}

.steps {
  margin: 0;
  padding-left: 22px;
}

.steps li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.casino {
  padding: 22px;
  border: 3px solid rgba(245, 187, 57, .42);
  border-radius: 8px;
  background: linear-gradient(180deg, #4a2819, #251813);
}

.faq details {
  border: 2px solid rgba(245, 187, 57, .34);
  border-radius: 8px;
  margin-bottom: 12px;
  background: rgba(34, 22, 17, .78);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.faq details p {
  margin: 0;
  padding: 0 18px 18px;
}

.notice {
  padding: 18px;
  border: 2px dashed rgba(245, 187, 57, .58);
  border-radius: 8px;
  color: #ffe6a3;
  background: rgba(28, 18, 14, .72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
}

footer {
  padding: 28px 16px;
  border-top: 4px solid rgba(38, 20, 12, .86);
  background: #1f1714;
  color: #d7ba7b;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.toc {
  background: #111;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 30px 0;
}

.toc summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc summary::-webkit-details-marker {
  display: none;
}

.toc summary::after {
  content: "▼";
  font-size: 14px;
  transition: transform 0.2s ease;
}

.toc[open] summary::after {
  content: "▲";
}

.toc nav {
  margin-top: 12px;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin: 6px 0;
}

.toc a {
  color: #ccc;
  text-decoration: none;
}

.toc a:hover {
  color: #fff;
  text-decoration: underline;
}

.demo-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.demo-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: #0a0a0a;
  padding: 40px 20px;
  color: #ccc;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
  width: 100%;
}

.footer-col {
  min-width: 180px;
  text-align: center;
}

.footer-col h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 6px 0;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-note {
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid #222;
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.redirect-center {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.redirect-center .hero-inner {
  text-align: center;
}

.redirect-center .cta-row {
  justify-content: center;
  margin-top: 20px;
}

.redirect-note {
  margin-top: 15px;
  color: #aaa;
}

@media (max-width: 920px) {
  .hamburger {
    display: grid;
  }

  .nav {
    position: relative;
  }

  .links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 3px solid rgba(37, 19, 10, .85);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, #4b2a1b, #1f1714);
  }

  .links a {
    width: 100%;
    padding: 12px;
  }

  .language-container {
    width: 100%;
  }

  .language-selector {
    width: 100%;
    max-width: none;
    min-height: 44px;
  }

  .menu-toggle:checked ~ .links {
    display: flex;
  }

  .menu-toggle:checked + .hamburger span {
    transform: rotate(45deg);
  }

  .menu-toggle:checked + .hamburger span::before {
    top: 0;
    transform: rotate(90deg);
  }

  .menu-toggle:checked + .hamburger span::after {
    top: 0;
    opacity: 0;
  }

  .hero {
    padding: 32px 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 10px;
    gap: 24px;
  }

  .slot-board {
    min-height: 340px;
  }

  .stats,
  .short-grid,
  .casino-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 28px 16px;
  }

  .hero-inner > div:first-child {
    max-width: 100%;
  }

  h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  main,
  .stats {
    width: min(100% - 22px, var(--max));
  }

  .brand {
    width: min(180px, 52vw);
  }

  .stats,
  .short-grid,
  .casino-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 187, 57, .25);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .reels {
    gap: 5px;
  }

  .reel {
    gap: 5px;
  }

  .symbol {
    min-height: 48px;
    font-size: .82rem;
  }

  .wide {
    padding: 20px;
  }
}