@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@500;600;700;800;900&display=swap");

:root {
  --bg: #140c05;
  --bg-2: #2a1a0c;
  --panel: rgba(42, 26, 12, .86);
  --panel-2: rgba(78, 45, 15, .76);
  --text: #fff6df;
  --muted: #ead9b7;
  --brand: #e4121a;
  --brand-dark: #8f090e;
  --gold: #f7b500;
  --gold-deep: #c97a00;
  --sand: #f6e9cf;
  --green: #4d8b2f;
  --leaf: #8ebf45;
  --line: rgba(247, 181, 0, .24);
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 16%, rgba(247, 181, 0, .18), transparent 22rem),
    radial-gradient(circle at 12% 8%, rgba(228, 18, 26, .24), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(77, 139, 47, .18), transparent 20rem),
    linear-gradient(180deg, var(--bg), #1a1007 44%, #0b0603);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(247,181,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,181,0,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, transparent 0 22px, rgba(247,181,0,.045) 23px 25px, transparent 26px 58px),
    radial-gradient(circle at 0% 88%, rgba(142,191,69,.1), transparent 18rem);
  opacity: .85;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 58px 0; }
.eyebrow { color: var(--gold); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: "Archivo Black", Archivo, sans-serif; }
h1 {
  font-size: clamp(2.55rem, 12vw, 5.5rem);
  letter-spacing: -.045em;
  color: var(--gold);
  text-shadow: 3px 3px 0 #2b0805, 0 12px 34px rgba(0,0,0,.45);
}
h2 {
  font-size: clamp(2rem, 8vw, 3.75rem);
  letter-spacing: -.035em;
  color: var(--gold);
  text-shadow: 2px 2px 0 #2b0805;
}
h3 { font-size: 1.22rem; }
p { color: var(--muted); line-height: 1.72; margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 12, 5, .86);
  border-bottom: 2px solid rgba(247,181,0,.34);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 14px;
  flex-wrap: wrap;
}
.brand {
  display: grid;
  gap: 1px;
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 1.28rem;
}
.brand span { color: var(--gold); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.logo-brand {
  width: 156px;
  max-width: 44vw;
}
.logo-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.34));
}
.nav-links {
  order: 3;
  display: flex;
  width: 100%;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 13px;
  color: rgba(246,233,207,.9);
  font-size: .94rem;
  font-weight: 700;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { flex: 0 0 auto; }
.nav-links a:hover { color: var(--gold); }
.actions { display: flex; gap: 8px; }
.lang-switch {
  position: relative;
  margin-left: auto;
}
.lang-switch summary {
  list-style: none;
  cursor: pointer;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 2px solid rgba(247,181,0,.44);
  background: rgba(42,26,12,.82);
  color: var(--sand);
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .04em;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::after {
  content: "▾";
  margin-left: 7px;
  color: var(--gold);
  font-size: .72rem;
}
.lang-switch[open] summary::after { content: "▴"; }
.lang-switch div {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 116px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(247,181,0,.42);
  background: rgba(20,12,5,.96);
  box-shadow: 0 18px 36px rgba(0,0,0,.34);
}
.lang-switch a {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--sand);
  font-weight: 900;
  font-size: .86rem;
}
.lang-switch a:hover {
  background: rgba(247,181,0,.14);
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid rgba(247,181,0,.5);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
  color: white;
  box-shadow: 0 8px 0 rgba(0,0,0,.42), 0 18px 42px rgba(0,0,0,.34);
}
.btn-small { min-height: 54px; padding: 0 20px; font-size: .88rem; }
.btn-ghost { background: rgba(42,26,12,.82); border-color: rgba(247,181,0,.44); color: var(--sand); }
.btn-hot {
  background: linear-gradient(180deg, #ff343c, var(--brand) 55%, var(--brand-dark));
  border: 0;
  text-shadow: 0 1px 0 rgba(0,0,0,.24);
  box-shadow: 0 8px 0 #69070a, 0 18px 44px rgba(228,18,26,.28);
}
.btn-gold {
  background: linear-gradient(180deg, #ffd24a, var(--gold) 55%, var(--gold-deep));
  color: #241200;
  border: 0;
  box-shadow: 0 8px 0 #845000, 0 18px 44px rgba(247,181,0,.2);
}
.pulse {
  animation: pulse 1.65s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 0 #69070a, 0 0 0 0 rgba(247,181,0,.48), 0 18px 44px rgba(228,18,26,.28); }
  50% { transform: scale(1.045); box-shadow: 0 8px 0 #69070a, 0 0 0 14px rgba(247,181,0,0), 0 20px 58px rgba(247,181,0,.3); }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 42px;
  background:
    linear-gradient(180deg, rgba(20,12,5,.32), rgba(20,12,5,.9)),
    url("/assets/bg/safari-hero.webp") center / cover no-repeat;
}
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy { display: grid; gap: 22px; }
.hero-copy p { font-size: 1.08rem; max-width: 720px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-board {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 4px solid var(--gold);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 52% 16%, rgba(247,181,0,.46), transparent 10rem),
    var(--panel);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.06);
  padding: 20px;
  display: grid;
  gap: 16px;
}
.hero-board::before {
  content: "";
  position: absolute;
  inset: -40% -25% auto auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, transparent, rgba(247,181,0,.28), transparent, rgba(142,191,69,.28), transparent);
  filter: blur(4px);
  opacity: .72;
}
.hero-board > * { position: relative; z-index: 1; }
.tropical-case {
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    radial-gradient(circle at 22% 12%, rgba(142,191,69,.25), transparent 9rem),
    radial-gradient(circle at 76% 18%, rgba(247,181,0,.42), transparent 10rem),
    linear-gradient(135deg, rgba(76, 42, 13, .88), rgba(20, 12, 5, .96));
}
.case-badge {
  justify-self: start;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #211100;
  background: linear-gradient(180deg, #ffd24a, var(--gold));
  box-shadow: 0 0 24px rgba(247,181,0,.26);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.jackpot {
  border-radius: 22px;
  padding: 22px;
  min-height: 170px;
  display: grid;
  align-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(228,18,26,.72), rgba(42,26,12,.74)), #2a1a0c;
  border: 2px solid rgba(247,181,0,.42);
}
.jackpot strong {
  font-size: clamp(2.3rem, 14vw, 4.4rem);
  color: var(--gold);
  text-shadow: 3px 3px 0 #4e0904, 0 0 28px rgba(247,181,0,.42);
}
.mini-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.reel {
  display: grid;
  place-items: center;
  min-height: 102px;
  border-radius: 18px;
  background: rgba(20,12,5,.58);
  border: 2px solid rgba(247,181,0,.24);
  font-size: 2.4rem;
}

.strip {
  border-block: 2px solid rgba(247,181,0,.24);
  background: linear-gradient(90deg, rgba(228,18,26,.42), rgba(42,26,12,.95), rgba(247,181,0,.18));
  overflow: hidden;
}
.ticker {
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: slide 22s linear infinite;
}
.ticker-group {
  display: flex;
  gap: 34px;
  padding: 13px 0;
  padding-right: 34px;
  white-space: nowrap;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}
@keyframes slide { to { transform: translateX(-50%); } }

.grid { display: grid; gap: 18px; }
.intro-grid { gap: 28px; align-items: start; }
.cards { grid-template-columns: 1fr; }
.card, .slot-card, .feature {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(78,45,15,.74), rgba(20,12,5,.76));
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.card, .feature { padding: 22px; display: grid; gap: 14px; }
.feature strong { color: var(--gold); }
.slot-card {
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.slot-card:hover { transform: translateY(-4px); border-color: rgba(247,181,0,.82); }
.slot-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; background: #2a1a0c; filter: sepia(.24) saturate(.82) brightness(.9); }
.slot-info { padding: 16px; display: grid; gap: 8px; }
.slot-meta { color: var(--gold); font-weight: 800; font-size: .88rem; }

.page-hero { padding: 58px 0 26px; }
.page-hero .wrap { display: grid; gap: 18px; }
.breadcrumbs {
  padding: 14px 0 0;
  color: rgba(246,233,207,.86);
  font-size: .88rem;
  font-weight: 800;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--gold);
}
.seo-copy strong {
  color: #fff;
  text-shadow: 0 0 18px rgba(247,181,0,.35);
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(42,26,12,.66);
  padding: 18px;
}
.faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}
.faq p { padding-top: 12px; }
.rating-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247,181,0,.13);
  border: 1px solid rgba(247,181,0,.42);
  color: var(--gold);
  font-weight: 950;
}
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
}
.score {
  color: var(--muted);
  font-weight: 800;
}
.score strong {
  color: #fff;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: 2rem;
}
.review-card {
  padding: 20px;
  display: grid;
  gap: 12px;
}
.stars {
  color: var(--gold);
  letter-spacing: .08em;
  font-weight: 950;
}
.review-card blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.review-card figcaption {
  color: rgba(246,233,207,.66);
  font-size: .88rem;
}
.rich {
  display: grid;
  gap: 18px;
}
.steps { counter-reset: step; }
.step { position: relative; padding-left: 58px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #170012;
  background: var(--gold);
  font-weight: 950;
}
.table {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.key-table {
  border-width: 2px;
  background: rgba(42,26,12,.5);
}
.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(42,26,12,.6);
}
.row:last-child { border-bottom: 0; }
.row strong { color: var(--gold); }

.cta-band {
  width: min(860px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: 28px;
  border-radius: 24px;
  border: 2px solid rgba(247,181,0,.42);
  background: radial-gradient(circle at top right, rgba(247,181,0,.28), transparent 18rem), linear-gradient(135deg, rgba(228,18,26,.7), rgba(42,26,12,.9));
  display: grid;
  gap: 18px;
  align-items: center;
}
.cta-center {
  text-align: center;
  justify-items: center;
}
.cta-center .eyebrow,
.cta-center p {
  margin-inline: auto;
}
.cta-center p {
  max-width: 680px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: rgba(10, 6, 3, .86);
}
.footer-grid { display: grid; gap: 24px; }
.footer-links, .payments { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  border: 1px solid rgba(247,181,0,.24);
  background: rgba(42,26,12,.7);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--sand);
  font-weight: 800;
  font-size: .86rem;
}
.disclaimer { font-size: .86rem; color: #bfa8d0; }

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  color: #241200;
  background: var(--gold);
  font-weight: 950;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: .2s ease;
  z-index: 30;
}
.to-top.show { opacity: 1; transform: translateY(0); }

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .row { grid-template-columns: 1fr 2fr; align-items: center; }
  .cta-band { grid-template-columns: 1fr auto; }
  .cta-band.cta-center { grid-template-columns: 1fr; }
}

@media (min-width: 980px) {
  .nav { flex-wrap: nowrap; }
  .nav-links { order: 0; width: auto; padding: 0; overflow: visible; }
  .hero { padding: 78px 0 70px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .intro-grid { grid-template-columns: 1.08fr .92fr; }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .logo-brand { width: 196px; }
}
