:root {
  --nav: #3e1819;
  --nav-2: #4a1d1e;
  --bg: #5d150f;
  --bg-2: #6d1c14;
  --gold: #fbcc49;
  --gold-2: #ffd968;
  --green: #7dc734;
  --green-2: #8fd84a;
  --ink: #fff4e6;
  --ink-dim: #e9d3b8;
  --line: #7a3a2e;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --font-head: "Lilita One", Impact, "Arial Black", sans-serif;
  --font-body: "Segoe UI", Roboto, system-ui, -apple-system, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(
      1200px 600px at 80% -10%,
      rgba(251, 204, 73, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 20%,
      rgba(125, 199, 52, 0.08),
      transparent 55%
    ),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.fixed {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.logo b,
.btn {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

a:hover {
  color: var(--gold-2);
}

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

.box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 18px 0;
}

.mt1 {
  margin-top: 14px;
}
.mb1 {
  margin-bottom: 14px;
}
.text-center {
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  color: #2a0f08;
  background: var(--gold);
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #2a0f08;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.btn--green {
  background: var(--green);
  color: #0e2a05;
}
.btn--gold {
  background: var(--gold);
  color: #2a0f08;
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.btn--ghost:hover {
  color: var(--gold-2);
}
.btn--md {
  font-size: 15px;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 20px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--block {
  display: flex;
  width: 100%;
}

.pulse {
  animation: kx7pulse 2.4s infinite;
}

@keyframes kx7pulse {
  0% {
    box-shadow:
      0 6px 0 rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(125, 199, 52, 0.6);
  }
  70% {
    box-shadow:
      0 6px 0 rgba(0, 0, 0, 0.25),
      0 0 0 16px rgba(125, 199, 52, 0);
  }
  100% {
    box-shadow:
      0 6px 0 rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(125, 199, 52, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.header.box {
  background: linear-gradient(180deg, var(--nav-2), var(--nav));
  border: 1px solid rgba(251, 204, 73, 0.18);
  padding: 12px 18px;
  position: sticky;
  top: 0;
  z-index: 60;
}

.header-block {
  flex: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo img {
  height: 82px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.logo b {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}

.logo span {
  display: block;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav a.qz3link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.header-nav a.qz3link:hover {
  background: rgba(251, 204, 73, 0.14);
  color: var(--gold);
}

.header-nav a.qz3link svg {
  flex: none;
}

.header-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.ticker {
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px dashed rgba(251, 204, 73, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  overflow: hidden;
}

.ticker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(125, 199, 52, 0.25);
  flex: none;
  animation: kx7blink 1.4s infinite;
}

@keyframes kx7blink {
  50% {
    opacity: 0.35;
  }
}

.ticker b {
  color: var(--gold);
}
.ticker .win-name {
  color: var(--ink);
  font-weight: 700;
}
.ticker .win-sum {
  color: var(--green-2);
  font-weight: 700;
}

.ticker .win-fade {
  transition: opacity 0.4s ease;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(251, 204, 73, 0.4);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.burger span {
  top: 22px;
}
.burger span::before {
  top: -7px;
}
.burger span::after {
  top: 7px;
}

.burger.active span {
  background: transparent;
}
.burger.active span::before {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.content.box {
  background: linear-gradient(
    180deg,
    rgba(109, 28, 20, 0.65),
    rgba(93, 21, 15, 0.8)
  );
  border: 1px solid rgba(251, 204, 73, 0.14);
  padding: 22px;
}

.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(251, 204, 73, 0.25);
  min-height: 420px;
  display: grid;
  align-items: center;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(46, 15, 8, 0.92) 10%,
    rgba(46, 15, 8, 0.5) 55%,
    rgba(46, 15, 8, 0.15) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #2a0f08;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: clamp(30px, 6vw, 54px);
  color: var(--ink);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.hero h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  color: var(--ink-dim);
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.hero-rating b {
  color: var(--ink);
  font-size: 20px;
}
.hero-rating span {
  color: var(--ink-dim);
  font-size: 14px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.block-head {
  text-align: center;
  margin: 30px 0 22px;
}

.block-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.block-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--green);
  border-radius: 4px;
  margin: 10px auto 0;
}

.block-head p {
  color: var(--ink-dim);
  max-width: 640px;
  margin: 10px auto 0;
}

.demo-wrap {
  background: var(--nav);
  border: 1px solid rgba(251, 204, 73, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 22px;
}

.demo-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(
    45deg,
    #340f0a,
    #340f0a 20px,
    #3a120c 20px,
    #3a120c 40px
  );
  border: 2px solid rgba(251, 204, 73, 0.3);
}

.demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  background: radial-gradient(
    circle at center,
    rgba(93, 21, 15, 0.6),
    rgba(20, 6, 3, 0.85)
  );
  z-index: 3;
}

.demo-overlay p {
  color: var(--ink-dim);
  max-width: 320px;
}
.demo-overlay.is-hidden {
  display: none;
}

.demo-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.tile {
  background: linear-gradient(180deg, var(--nav-2), var(--nav));
  border: 1px solid rgba(251, 204, 73, 0.16);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.tile .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(251, 204, 73, 0.14);
  color: var(--gold);
}

.tile h3 {
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 8px;
}
.tile p {
  color: var(--ink-dim);
  font-size: 14px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto 22px;
  border-radius: var(--radius);
}

table.data {
  width: 100%;
  min-width: 520px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}

table.data caption {
  caption-side: top;
  padding: 12px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 18px;
}

table.data th,
table.data td {
  padding: 12px 16px;
  border: 1px solid var(--line);
}

table.data thead th {
  background: var(--nav);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

table.data tbody tr:nth-child(even) {
  background: rgba(251, 204, 73, 0.05);
}

table.data tbody tr:hover {
  background: rgba(125, 199, 52, 0.1);
}

.rank {
  font-family: var(--font-head);
  color: var(--gold);
}

.rank.gold {
  color: #ffd54a;
}
.rank.silver {
  color: #d7d7d7;
}
.rank.bronze {
  color: #cd7f32;
}

.win-amount {
  color: var(--green-2);
  font-weight: 700;
}

.app-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(120deg, var(--nav), var(--nav-2));
  border: 1px solid rgba(251, 204, 73, 0.18);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 22px;
}

.phone-frame {
  width: 260px;
  margin: 0 auto;
  border: 12px solid #1c0a06;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  position: relative;
  background: #000;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background: #1c0a06;
  border-radius: 8px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.app-info h3 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #120503;
  color: var(--ink);
  border: 1px solid rgba(251, 204, 73, 0.3);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.dl-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--ink);
}
.dl-btn svg {
  flex: none;
}
.dl-btn small {
  display: block;
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 1px;
}
.dl-btn b {
  font-family: var(--font-head);
  font-size: 15px;
}

.slider {
  position: relative;
  margin-bottom: 22px;
}

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

.slides figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(251, 204, 73, 0.2);
  box-shadow: var(--shadow);
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slides figure:hover img {
  transform: scale(1.06);
}

.slider-dots {
  display: none;
}

.author-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: linear-gradient(180deg, var(--nav-2), var(--nav));
  border: 1px solid rgba(251, 204, 73, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 22px;
}

.author-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.author-meta h3 {
  color: var(--gold);
  font-size: 22px;
}
.author-meta .pos {
  color: var(--green-2);
  font-size: 14px;
  margin-bottom: 8px;
}
.author-meta p {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 10px;
}

.author-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.author-facts li b {
  color: var(--ink);
}

.author-social {
  display: flex;
  gap: 10px;
}
.author-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 204, 73, 0.14);
}

.text {
  color: var(--ink);
}

.text h1 {
  font-size: clamp(26px, 5vw, 40px);
  color: var(--gold);
  margin: 6px 0 16px;
}

.text h2 {
  font-size: 26px;
  color: var(--gold);
  margin: 26px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--line);
}

.text h3 {
  font-size: 20px;
  color: var(--gold-2);
  margin: 20px 0 10px;
}

.text p {
  margin-bottom: 14px;
  color: var(--ink-dim);
}

.text a {
  text-decoration: underline;
}

.text ul,
.text ol {
  margin: 0 0 16px 22px;
  color: var(--ink-dim);
}

.text ul li,
.text ol li {
  margin-bottom: 8px;
}

.text ul {
  list-style: none;
  margin-left: 0;
}

.text ul li {
  position: relative;
  padding-left: 28px;
}

.text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 3px;
  transform: rotate(45deg);
}

.text blockquote {
  border-left: 4px solid var(--gold);
  background: rgba(251, 204, 73, 0.08);
  padding: 12px 18px;
  border-radius: 8px;
  margin: 0 0 16px;
  font-style: italic;
}

.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 18px;
  border: 2px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.text table th,
.text table td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.text table th {
  background: var(--nav);
  color: var(--gold);
}

.text img {
  border-radius: var(--radius);
  margin: 0 auto 16px;
}

.text hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}

.text form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 520px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0 0 20px;
}

.text form label {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--gold);
  margin-top: 8px;
}

.text form input,
.text form textarea,
.text form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.text form input::placeholder,
.text form textarea::placeholder {
  color: rgba(233, 211, 184, 0.5);
}

.text form input:focus,
.text form textarea:focus,
.text form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 204, 73, 0.2);
}

.text form textarea {
  resize: vertical;
  min-height: 120px;
}

.text form button {
  margin-top: 14px;
  align-self: flex-start;
  padding: 13px 30px;
  border: none;
  border-radius: 999px;
  background: var(--green);
  color: #0e2a05;
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.text form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.text form button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.faq {
  margin-bottom: 22px;
}

.faq-item {
  background: linear-gradient(180deg, var(--nav-2), var(--nav));
  border: 1px solid rgba(251, 204, 73, 0.16);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 17px;
  padding: 16px 52px 16px 18px;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 18px 16px;
  color: var(--ink-dim);
}

.footer.box {
  background: linear-gradient(180deg, var(--nav), #2c1011);
  border: 1px solid rgba(251, 204, 73, 0.16);
  padding: 30px 24px;
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 22px;
}

.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 17px;
}

.footer .logo img {
  height: 46px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--ink-dim);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--gold);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.logo-strip .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 204, 73, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--ink-dim);
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.trust-strip .chip {
  opacity: 0.85;
}

.flag-au {
  width: 34px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  background: linear-gradient(180deg, #012169 50%, #012169 50%);
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.copyright {
  color: var(--ink-dim);
  font-size: 13px;
}

.copyright p {
  margin-bottom: 6px;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #b3241c;
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  border: 2px solid #fff;
}

.sticky-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(120deg, var(--nav), var(--nav-2));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 0.5s ease;
  max-width: calc(100% - 32px);
}

.sticky-widget.show {
  transform: none;
}

.sticky-widget img {
  height: 46px;
  width: auto;
}
.sticky-widget .sw-text b {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 15px;
  display: block;
}
.sticky-widget .sw-text span {
  color: var(--ink-dim);
  font-size: 12px;
}

.sticky-widget .sw-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #2a0f08;
  cursor: pointer;
  font-weight: 700;
}

.disclaimer {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(251, 204, 73, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 18px;
}

.zx9hidden {
  display: none !important;
}
.q4promo-legacy {
  visibility: hidden;
  height: 0;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .burger {
    display: block;
  }

  .header-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84%);
    background: linear-gradient(180deg, var(--nav-2), var(--nav));
    padding: 80px 22px 30px;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 70;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .header-nav.active {
    transform: none;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .header-nav a.qz3link {
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 16px;
  }

  .header-buttons .btn--bonus {
    display: none;
  }
  .header-block:last-child {
    order: -1;
  }

  .hero-inner {
    padding: 26px 20px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-photo img {
    margin: 0 auto;
  }
  .author-facts {
    grid-template-columns: 1fr;
  }
  .author-social {
    justify-content: center;
  }

  .slides {
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .slides figure {
    scroll-snap-align: center;
  }

  .slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  .slider-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(251, 204, 73, 0.35);
  }
  .slider-dots span.active {
    background: var(--gold);
  }

  .header-buttons .btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .logo span {
    display: none;
  }
  .sticky-widget img {
    height: 38px;
  }
}

@media (max-width: 380px) {
  .tiles {
    grid-template-columns: 1fr;
  }
}
