:root {
  --wf-bg: #04140a;
  --wf-panel: #0c2515;
  --wf-panel-strong: #102e1b;
  --wf-card: #143722;
  --wf-text: #eaf3ea;
  --wf-muted: #b8cbbb;
  --wf-accent: #33c82d;
  --wf-gold: #ffb400;
  --wf-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  --wf-radius: 16px;
}

@font-face {
  font-family: "WildSansText";
  src: url("./assets/fonts/wild-sans-text.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WildSansText";
  src: url("./assets/fonts/wild-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--wf-bg);
}

body {
  margin: 0;
  color: var(--wf-text);
  background: var(--wf-bg);
  font-family: "WildSansText", "Segoe UI", "Trebuchet MS", Tahoma, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wf-shell {
  min-height: 100vh;
}

.wf-sidepanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 252px;
  height: 100vh;
  padding: 20px 18px;
  background: #071a10;
  border-right: 1px solid rgba(85, 145, 90, 0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 50;
}

.wf-brand-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wf-brand-link img {
  width: 172px;
  background: transparent;
}

.wf-side-ctas {
  display: grid;
  gap: 10px;
}

.wf-side-ctas .js-affil {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wf-side-ctas .js-affil:first-child {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.wf-side-ctas .js-affil:last-child {
  background: linear-gradient(180deg, #ffc22b, #f2a900);
  color: #111;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35);
}

.wf-side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.wf-side-nav a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  color: #d8e8da;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wf-side-nav a:hover,
.wf-side-nav a:focus-visible {
  outline: none;
  background: rgba(53, 200, 45, 0.16);
  border-color: rgba(53, 200, 45, 0.4);
}

.wf-side-accordion {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
}

.wf-side-links {
  display: grid;
  gap: 7px;
  margin-top: 0;
}

.wf-side-links .wf-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #d8e8da;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.wf-side-links .wf-nav-link:hover,
.wf-side-links .wf-nav-link:focus-visible {
  outline: none;
  background: rgba(53, 200, 45, 0.16);
  border-color: rgba(53, 200, 45, 0.4);
}

.wf-nav-ico {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wf-nav-ico svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wf-side-note {
  margin-top: auto;
  font-size: 12px;
  color: var(--wf-muted);
}

.wf-mainzone {
  margin-left: 252px;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #14422a 0%, #04140a 42%);
}

.wf-mobile-head,
.wf-burger-panel {
  display: none;
}

.wf-main > section {
  margin: 0;
  padding: 18px 46px;
}

.wf-hero {
  position: relative;
  min-height: 490px;
  background-image: linear-gradient(to top, rgba(5, 13, 8, 0.78) 14%, rgba(5, 13, 8, 0.18) 52%, rgba(5, 13, 8, 0.06) 100%), url("assets/images/scenes/wild-jungle-hero-desktop.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.wf-hero-layer {
  padding: 0 46px 114px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.wf-hero-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c7dfcb;
  font-weight: 700;
}

.wf-hero h1 {
  margin: 0 auto 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  max-width: 850px;
}

.wf-hero .js-affil {
  display: inline-block;
  min-width: 270px;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
  background: linear-gradient(180deg, #ffca3e 0%, #f3ad02 100%);
  box-shadow: 0 0 0 rgba(255, 194, 35, 0.12);
  animation: wfHeroRhythm 2.9s ease-in-out infinite;
}

.wf-hero-payline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 13, 8, 0.66) 100%);
}

.wf-hero-payline img {
  height: 20px;
  width: auto;
}

.wf-accordion-nav {
  background: #072013;
  border-top: 1px solid rgba(74, 125, 81, 0.23);
}

.wf-accordion-nav details {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 14px;
}

.wf-accordion-nav summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 8px 4px;
}

.wf-accordion-nav summary::-webkit-details-marker {
  display: none;
}

.wf-accordion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 8px 0 2px;
}

.wf-accordion-links a {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(53, 200, 45, 0.15);
}

.wf-section h2 {
  margin: 10px 0;
  font-size: clamp(24px, 3.3vw, 34px);
  line-height: 1.15;
}

.wf-section h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
}

.wf-section p {
  margin: 0 0 16px;
  color: #e4efe6;
}

.wf-section p:last-child {
  margin-bottom: 0;
}







.wf-table-wrap table,
.wf-dual-tables table,
#limiti-tempi table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--wf-radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(25, 70, 42, 0.94) 0%, rgba(14, 41, 25, 0.94) 100%);
  border: 1px solid rgba(141, 223, 160, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  margin-bottom: 14px;
}

.wf-table-wrap th,
.wf-table-wrap td,
.wf-dual-tables th,
.wf-dual-tables td,
#limiti-tempi th,
#limiti-tempi td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(197, 242, 208, 0.2);
  vertical-align: top;
}

.wf-table-wrap th,
.wf-dual-tables th,
#limiti-tempi th {
  width: 34%;
  color: #f2fff4;
  background: rgba(112, 206, 133, 0.16);
}

.wf-table-wrap td,
.wf-dual-tables td,
#limiti-tempi td {
  color: #edf8ef;
}

.wf-table-wrap tr:nth-child(even) td,
.wf-dual-tables tr:nth-child(even) td,
#limiti-tempi tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.wf-table-wrap tr:last-child th,
.wf-table-wrap tr:last-child td,
.wf-dual-tables tr:last-child th,
.wf-dual-tables tr:last-child td,
#limiti-tempi tr:last-child th,
#limiti-tempi tr:last-child td {
  border-bottom: 0;
}

.wf-table-wrap td a,
.wf-dual-tables td a,
#limiti-tempi td a {
  color: #b8ffcb;
  text-underline-offset: 2px;
}

.wf-table-wrap td a:hover,
.wf-dual-tables td a:hover,
#limiti-tempi td a:hover {
  color: #deffe8;
}

.wf-slot-grid {
  display: grid;
  grid-template-columns: repeat(var(--wf-slot-cols), minmax(0, 1fr));
  gap: 10px;
}

.wf-slot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #071a10;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.wf-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.wf-slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 10px;
  background: linear-gradient(to top, rgba(2, 7, 4, 0.88) 14%, rgba(2, 7, 4, 0.05) 72%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.wf-slot-overlay p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: #f2fff2;
}

.wf-slot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wf-slot-actions .js-affil,
.wf-slot-demo {
  border: 0;
  border-radius: 10px;
  padding: 9px 8px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
}

.wf-slot-actions .js-affil {
  background: linear-gradient(180deg, #ffc532, #f1a900);
  color: #111;
}

.wf-slot-demo {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wf-slot-card:hover img,
.wf-slot-card.is-active img {
  transform: scale(1.06);
  filter: brightness(0.64);
}

.wf-slot-card:hover .wf-slot-overlay,
.wf-slot-card.is-active .wf-slot-overlay {
  opacity: 1;
}

.wf-bonus-cards,
.wf-icon-row,
.wf-why-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.wf-bonus-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-icon-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-bonus-cards article,
.wf-icon-row article,
.wf-why-grid article {
  background: linear-gradient(180deg, rgba(19, 52, 33, 0.95), rgba(11, 31, 20, 0.95));
  padding: 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--wf-shadow);
}

.wf-pay-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.wf-pay-grid img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
}

.wf-auth-stack {
  display: grid;
  gap: 20px;
  margin: 10px 0 16px;
}

.wf-auth-stack article {
  max-width: 760px;
  margin: 0 auto;
}

.wf-auth-stack h3 {
  margin-bottom: 14px;
  text-align: center;
}

.wf-auth-stack img {
  border-radius: 14px;
  width: 100%;
  object-fit: contain;
  box-shadow: var(--wf-shadow);
}

.wf-dual-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.wf-dual-tables th,
.wf-dual-tables td {
  font-size: 14px;
}

.wf-provider-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.wf-provider-grid img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
}

.wf-faq-list {
  display: grid;
  gap: 10px;
}

.wf-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(11, 33, 21, 0.85);
  padding: 8px 14px;
}

.wf-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 8px 0;
}

.wf-faq-item summary::-webkit-details-marker {
  display: none;
}

.wf-faq-item p {
  padding-bottom: 10px;
}

.wf-parallax-slab {
  background-image: linear-gradient(180deg, rgba(4, 15, 9, 0.82), rgba(4, 15, 9, 0.86)), url("assets/images/scenes/emerald-facet-background.webp");
  background-size: cover;
  background-position: center;
}

.wf-footer {
  padding: 30px 46px 24px;
  background: #06170e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.wf-footer-links a {
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.wf-footer-disclaimer {
  margin: 0 0 14px;
  color: #bfd0c2;
  font-size: 13px;
}

.wf-footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 0 14px;
}

.wf-footer-providers img {
  width: 84px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.68);
}

.wf-footer-logo {
  display: inline-flex;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wf-legal-main .wf-page-hero {
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(4, 13, 8, 0.64), rgba(4, 13, 8, 0.79)), url("assets/images/scenes/wild-jungle-hero-desktop.webp");
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 42px 46px;
}

.wf-legal-main .wf-page-hero h1 {
  margin: 0;
  font-size: clamp(27px, 4vw, 42px);
}

.wf-legal-section h2 {
  margin: 12px 0;
}

.wf-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.wf-list li {
  position: relative;
  padding-left: 22px;
  color: #e7f2e7;
}

.wf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #58df4c, #279f26);
  box-shadow: 0 0 0 4px rgba(54, 200, 50, 0.2);
}

.wf-page-hero-404 {
  min-height: 280px;
}

.wf-home-return {
  display: inline-block;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffc22f, #f0ab00);
  color: #111;
  font-weight: 900;
  padding: 12px 20px;
}

.wf-mobile-bonus {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  background: rgba(8, 29, 16, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.wf-mobile-bonus p {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: #dcf0de;
}

.wf-mobile-bonus .js-affil {
  min-width: 132px;
  text-align: center;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 900;
  color: #111;
  background: linear-gradient(180deg, #ffc22f, #efab00);
  animation: wfHeroRhythm 3.2s ease-in-out infinite;
}

.wf-mobile-bonus.wf-visible {
  transform: translateY(0);
  opacity: 1;
}

.wf-demo-layer {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 5, 0.92);
  z-index: 90;
  display: none;
  padding: 18px;
}

.wf-demo-layer.is-open {
  display: block;
}

.wf-demo-shell {
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-demo-bar {
  background: #0d2818;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.wf-demo-back,
.wf-demo-bar .js-affil {
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wf-demo-back {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}

.wf-demo-bar .js-affil {
  background: linear-gradient(180deg, #ffc22f, #efab00);
  color: #111;
}

.wf-demo-stage {
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #06170e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wf-demo-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.wf-demo-bar-bottom {
  display: none;
}

@keyframes wfHeroRhythm {
  0% {
    box-shadow: 0 0 0 rgba(255, 194, 35, 0.2);
    transform: translateY(0) scale(1);
  }
  18% {
    box-shadow: 0 0 0 10px rgba(255, 194, 35, 0.2);
    transform: translateY(-2px) scale(1.015);
  }
  34% {
    box-shadow: 0 0 0 18px rgba(255, 194, 35, 0.08);
    transform: translateY(0) scale(1.03);
  }
  48% {
    box-shadow: 0 0 0 6px rgba(255, 194, 35, 0.06);
    transform: translateY(-1px) scale(1.01);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 194, 35, 0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .wf-main > section,
  .wf-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .wf-slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wf-pay-grid,
  .wf-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wf-bonus-cards,
  .wf-icon-row,
  .wf-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .wf-sidepanel {
    width: 224px;
  }

  .wf-mainzone {
    margin-left: 224px;
  }

  .wf-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wf-dual-tables {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wf-sidepanel {
    display: none;
  }

  .wf-mainzone {
    margin-left: 0;
  }

  .wf-mobile-head {
    display: block;
    position: static;
    z-index: 70;
    background: #061a0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: calc(env(safe-area-inset-top) + 4px);
  }

  .wf-mobile-row {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wf-mobile-row-top {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    min-height: 62px;
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .wf-burger-open {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 7px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .wf-burger-open span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .wf-mobile-logo {
    justify-self: center;
    display: inline-flex;
    padding: 4px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .wf-mobile-logo img {
    width: 118px;
    background: transparent;
  }

  .wf-mobile-row-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }

  .wf-mobile-row-cta .js-affil {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 11px 8px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
  }

  .wf-mobile-row-cta .js-affil:first-child {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.23);
  }

  .wf-mobile-row-cta .js-affil:last-child {
    background: linear-gradient(180deg, #ffc22f, #efab00);
    color: #111;
  }

  .wf-mobile-row-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 11px;
  }

  .wf-mobile-row-tabs::-webkit-scrollbar {
    display: none;
  }

  .wf-tab-link {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .wf-burger-panel.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 95;
  }

  .wf-burger-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
  }

  .wf-burger-sheet {
    position: absolute;
    top: 0;
    left: 0;
    width: min(85vw, 340px);
    height: 100%;
    background: #0b2616;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
  }

  .wf-burger-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: calc(env(safe-area-inset-top) + 12px) 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .wf-burger-brand {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .wf-burger-brand img {
    width: 112px;
    height: auto;
  }

  .wf-burger-head button {
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 22px;
    line-height: 1;
  }

  .wf-burger-nav {
    padding: 14px 16px;
  }

  .wf-burger-nav .wf-side-accordion {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .wf-burger-nav .wf-side-links {
    gap: 8px;
  }

  .wf-burger-nav .wf-nav-link {
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.13);
    padding: 10px 12px;
    font-size: 14px;
  }

  .wf-main > section {
    padding: 14px 16px;
  }

  .wf-main {
    padding-bottom: 108px;
  }

  .wf-hero {
    min-height: 438px;
    background-image: linear-gradient(to top, rgba(5, 13, 8, 0.84) 15%, rgba(5, 13, 8, 0.2) 56%, rgba(5, 13, 8, 0.06) 100%), url("assets/images/scenes/wild-jungle-hero-desktop.webp");
    margin-top: 0;
  }

  .wf-hero-layer {
    padding: 0 16px 104px;
  }

  .wf-hero-kicker {
    font-size: 12px;
  }

  .wf-hero h1 {
    font-size: 29px;
  }

  .wf-hero .js-affil {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .wf-hero-payline {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wf-hero-payline img {
    height: 17px;
    flex: 0 0 auto;
  }

  .wf-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .wf-section h2 {
    font-size: 28px;
  }

  .wf-bonus-cards,
  .wf-icon-row {
    grid-template-columns: 1fr;
  }

  .wf-why-grid,
  .wf-pay-grid,
  .wf-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wf-provider-grid img,
  .wf-pay-grid img {
    height: 50px;
  }

  .wf-footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .wf-footer-providers img {
    width: 72px;
  }

  .wf-mobile-bonus {
    display: flex;
  }

  .wf-demo-layer {
    padding: 0;
    background: #000;
    z-index: 120;
  }

  .wf-demo-shell {
    max-width: 100%;
    margin: 0;
    min-height: 100dvh;
    height: 100dvh;
    gap: 0;
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .wf-demo-stage {
    border-radius: 0;
    border: 0;
    width: 100%;
    min-height: 0;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wf-demo-stage iframe {
    width: 100%;
    height: 100%;
    background: #000;
  }

  .wf-demo-bar-top {
    display: none;
  }

  .wf-demo-bar-bottom {
    display: flex;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    margin: 0;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  }

  .wf-legal-main .wf-page-hero {
    min-height: 190px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
