:root {
  --bg: #131416;
  --panel: #222426;
  --panel-2: #292b2e;
  --line: #34373a;
  --text: #f6f6f6;
  --muted: #b9bcc1;
  --green: #20c878;
  --gold: #ffc83d;
  --blue: #3b8cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.45 Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  padding: 24px 12px;
  background: #202224;
  border-right: 3px solid #0d0e0f;
  z-index: 5;
}
.logo {
  display: block;
  margin: 0 8px 26px;
  font-size: 29px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
}
.logo span { color: var(--gold); margin-right: 7px; }
nav { display: grid; gap: 8px; }
nav a { padding: 11px 12px; border-radius: 8px; }
nav a:hover, nav a.active { background: #111315; }
.support {
  display: grid;
  gap: 14px;
  margin: 52px 8px 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.support a { color: var(--muted); }

.page { margin-left: 280px; padding: 0 18px 110px; }
.topbar {
  min-height: 67px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #292b2d;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 26px;
}
.offer { margin-right: auto; }
.offer small { display: block; color: var(--muted); }
.apps, .auth { display: flex; gap: 10px; }
.apps a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 135px;
  padding: 8px 15px;
  background: #1c1e20;
  border-radius: 8px;
  color: #ddd;
}
.apps a > span { font-size: 12px; line-height: 1.1; }
.apps b { font-size: 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 20px;
  border: 0;
  border-radius: 8px;
  color: white;
  font: inherit;
  cursor: pointer;
}
.button.primary { background: var(--green); }
.button.ghost { border: 1px solid #8b9096; background: transparent; }
.button.accent { background: var(--blue); transform: rotate(-2deg); font-weight: 700; }
.button.gold { background: var(--gold); color: #202020; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1fr);
  gap: 18px;
  margin: 18px 0;
}
.hero article, .hero-main-banner { min-height: 240px; border-radius: 14px; overflow: hidden; }
.hero-main-banner {
  display: block;
  background: #1b0b05;
}
.hero-main-banner img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}
.hero-main {
  position: relative;
  display: flex;
  align-items: center;
  padding: 34px 50px;
  background:
    radial-gradient(circle at 70% 70%, #b74716 0 2%, transparent 3%),
    radial-gradient(circle at 78% 45%, #f2bb38 0 3%, transparent 4%),
    linear-gradient(120deg, #b47a0d, #f0b71f 33%, #8c260d 72%, #151414);
}
.hero-main h1 { margin: 8px 0 22px; font-size: clamp(31px, 4vw, 54px); line-height: 1.02; text-transform: uppercase; }
.eyebrow { color: #ffd763; font-weight: 800; letter-spacing: .08em; }
.chips { position: absolute; right: 7%; bottom: 13%; width: 170px; height: 100px; }
.chips i {
  position: absolute;
  width: 56px;
  aspect-ratio: 1;
  border: 8px dashed #e6b62b;
  border-radius: 50%;
  background: #a11e1e;
  box-shadow: 0 5px 12px #0008;
}
.chips i:nth-child(2) { left: 45px; top: 30px; }
.chips i:nth-child(3) { left: 100px; top: 4px; }
.chips i:nth-child(4) { left: 120px; top: 55px; }
.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, #ffc842 0 1%, transparent 2%),
    radial-gradient(circle at 20% 30%, #ff7d21 0 1%, transparent 2%),
    linear-gradient(#15110c55, #17120ee6), linear-gradient(140deg, #6f2d0c, #d79727);
}
.hero-side p { margin: 0; font-weight: 700; }
.hero-side strong { font-size: 44px; }
.hero-side div { display: flex; gap: 8px; }

.content-card, .features article, .notice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.content-card { padding: 28px 32px; }
.seo-content { display: grid; gap: 18px; }
.seo-content .content-card { scroll-margin-top: 18px; }
.seo-content h3 { margin: 30px 0 10px; font-size: 23px; }
.seo-content p, .seo-content li { color: #dedede; }
.seo-content li + li { margin-top: 7px; }
.image-slot {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 24px;
  border: 2px dashed #60656c;
  border-radius: 12px;
  background: linear-gradient(135deg, #292c30, #1c1e21);
  color: #aeb3ba;
  text-align: center;
  font-weight: 700;
}
.image-slot small { font-weight: 400; }
.image-slot.wide { min-height: 190px; margin: 5px 0 24px; }
.content-image {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #050914;
  box-shadow: 0 10px 28px #0007;
}
.content-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.content-image-wide { margin: 5px 0 24px; }
.warning {
  margin: 24px 0;
  padding: 17px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 7px;
  background: #352d19;
}
.check-list { padding-left: 0; list-style: none; columns: 2; gap: 30px; }
.check-list li { break-inside: avoid; position: relative; padding-left: 25px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sub-card { padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-2); }
.sub-card h3 { margin-top: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--panel-2); }
th, td { padding: 13px 15px; border: 1px solid #414448; text-align: left; }
th { color: var(--gold); }
.promo-code {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
  padding: 18px 22px;
  border: 1px solid #806a2a;
  border-radius: 10px;
  background: #312a18;
}
.promo-code span { color: var(--muted); }
.promo-code strong { padding: 6px 12px; border: 1px dashed var(--gold); color: var(--gold); font-size: 23px; letter-spacing: .08em; }
.promo-code small { margin-left: auto; }
details { border-top: 1px solid #414448; }
details:last-child { border-bottom: 1px solid #414448; }
summary { padding: 18px 4px; cursor: pointer; font-weight: 700; font-size: 18px; }
details p { margin: 0 4px 20px; }
.content-card h2 { margin: 4px 0 25px; font-size: clamp(28px, 3vw, 40px); }
.intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}
.visual {
  display: grid;
  place-items: center;
  min-height: 160px;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 30%, #ffd967, transparent 35%), linear-gradient(135deg, #4d240e, #b87512);
}
.visual span { font-size: 80px; color: #ffe082; text-shadow: 0 5px 20px #000; }
.intro p { color: #dedede; }
.text-link { color: #54a0ff; font-weight: 700; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 18px 0; }
.features article { padding: 25px; }
.features article > span { font-size: 28px; color: var(--gold); }
.features h3 { margin: 10px 0 4px; }
.features p { margin: 0; color: var(--muted); }
.notice { padding: 18px 25px; }
.notice div { display: flex; align-items: center; gap: 16px; }
.notice b { font-size: 24px; color: var(--gold); }
footer { display: flex; gap: 24px; flex-wrap: wrap; padding: 26px 5px; color: var(--muted); }
footer span { margin-right: auto; }

.promo-popup {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 98px;
  display: grid;
  grid-template-columns: 120px minmax(220px, 280px);
  width: min(440px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid #c79d42;
  border-radius: 18px;
  background: #f7f7f7;
  color: #202126;
  box-shadow: 0 20px 60px #000b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(.97);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.promo-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.promo-close {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 9px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #191b20;
  color: white;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.promo-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 25%, #1266c8, transparent 32%), linear-gradient(145deg, #030812, #0a2852);
}
.promo-phone {
  display: grid;
  place-items: center;
  width: 75px;
  height: 160px;
  border: 5px solid #e8bb59;
  border-radius: 18px;
  background: #111821;
  color: #f2ca73;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 24px #1479e9;
}
.promo-coins { position: absolute; right: 12px; bottom: 22px; color: #f1c461; letter-spacing: -4px; }
.promo-copy { padding: 25px 24px 18px; text-align: center; }
.promo-label { display: block; margin-bottom: 2px; color: #76612d; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.promo-copy strong { display: block; color: #e83a43; font-size: 54px; line-height: 1; }
.promo-copy h2 { margin: 4px 0 5px; font-size: 23px; text-transform: uppercase; }
.promo-copy p { margin: 0 0 13px; color: #4c4d52; font-size: 14px; }
.promo-action {
  display: block;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(#ff6c68, #db1726);
  color: white;
  font-weight: 800;
  box-shadow: 0 7px 14px #dd1b2938;
}
.promo-copy small { display: block; margin-top: 10px; color: #777; font-size: 9px; }

.cookie {
  position: fixed;
  z-index: 20;
  inset: auto 0 0 280px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: #1d2530f5;
  box-shadow: 0 -6px 18px #0005;
}
.cookie.hidden { display: none; }
.cookie p { margin: 0; flex: 1; }
.cookie-icon { font-size: 33px; }

@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); transition: transform .2s; }
  .sidebar.open { transform: translateX(0); box-shadow: 10px 0 30px #0008; }
  .page { margin-left: 0; }
  .cookie { left: 0; }
  .menu-button { display: block; }
  .apps { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-side { min-height: 210px !important; }
}
@media (max-width: 620px) {
  .page { padding-inline: 10px; }
  .topbar { gap: 8px; }
  .offer { display: none; }
  .auth { margin-left: auto; }
  .button { padding-inline: 13px; min-height: 40px; }
  .hero-main { padding: 28px 22px; }
  .hero-main-banner, .hero-main-banner img { min-height: 190px; }
  .chips { opacity: .35; }
  .content-card { padding: 22px 18px; }
  .intro { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
  .promo-code { align-items: flex-start; flex-direction: column; }
  .promo-code small { margin-left: 0; }
  .features { grid-template-columns: 1fr; }
  .cookie { align-items: flex-start; flex-wrap: wrap; padding: 12px; }
  .cookie-icon { display: none; }
  .cookie .button { width: 100%; }
  .promo-popup {
    right: 10px;
    bottom: 12px;
    grid-template-columns: 82px 1fr;
    width: calc(100vw - 20px);
    border-radius: 14px;
  }
  .promo-art { min-height: 190px; }
  .promo-phone { width: 55px; height: 118px; font-size: 21px; }
  .promo-copy { padding: 19px 42px 13px 14px; }
  .promo-copy strong { font-size: 42px; }
  .promo-copy h2 { font-size: 17px; }
  .promo-copy p { font-size: 12px; }
  .promo-copy small { display: none; }
}
