:root {
  --accent: #FFB805;
  --accent-ink: #1a1400;
  --bg: #111111;
  --surface: #1a1a1a;
  --surface2: #212121;
  --card: #1e1e1e;
  --fg: #ffffff;
  --muted: #c9c9c9;
  --muted2: #9a9a9a;
  --border: #2e2e2e;
  --green: #2ecc71;
  --red: #e74c3c;
  --radius: 14px;
  --max: 1160px;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased
}

a {
  color: var(--accent);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 10px 16px;
  z-index: 99
}

.skip:focus {
  left: 8px;
  top: 8px
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border)
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .2px
}

.brand picture,
.brand img {
  width: 160px;
  height: auto;
  border-radius: 5px;
  background: var(--accent);
  object-fit: cover
}

.brand span {
  display: none;
}

.main-nav {
  margin-left: auto
}

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center
}

.main-nav a {
  color: #eee;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600
}

.main-nav a:hover,
.main-nav a.active {
  background: #262626;
  color: var(--accent);
  text-decoration: none
}

.header-cta {
  display: flex;
  gap: 10px;
  margin-left: 8px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease all;
}

.btn-primary {
  background: var(--accent);
  color: #191200;
  box-shadow: 0 6px 22px rgba(255, 184, 5, .25)
}

.btn-primary:hover {
  background: #ffc42e;
  color: #191200;
  text-decoration: none;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #3a3a3a
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none
}

.btn-sm {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px
}

.burger {
  display: none;
  margin-left: auto;
  background: #222;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 20px
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(900px 420px at 15% 10%, rgba(255, 184, 5, .18), transparent 60%), radial-gradient(700px 400px at 90% 20%, rgba(255, 184, 5, .10), transparent 60%), linear-gradient(180deg, #161616, #111)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #241c04;
  border: 1px solid #4a3806;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  margin: 14px 0;
  letter-spacing: -.5px
}

.hero h1 span {
  color: var(--accent)
}

.hero p.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 0;
  list-style: none
}

.hero-points li {
  background: #1d1d1d;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13.5px;
  color: #eee
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px
}

.hero-note {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 12px
}

.hero-media {
  position: relative
}

.hero-media a {
  display: block;
  overflow: hidden;
}

.hero-media picture img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  background: #222
}

.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(12, 12, 12, .82);
  /* backdrop-filter: blur(8px); */
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 12px 14px
}

.hero-badge strong {
  font-size: 14px
}

.hero-badge span {
  color: var(--muted2);
  font-size: 12.5px
}

.rating {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px
}

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 0 6px
}

.trust div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center
}

.trust b {
  display: block;
  font-size: 20px
}

.trust span {
  color: var(--muted2);
  font-size: 13px
}

/* Layout */
.page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 28px 0 10px
}

.content {
  min-width: 0
}

.content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 34px 0 12px;
  padding-top: 8px;
  border-top: 1px solid #222
}

.content h3 {
  font-size: 18px;
  color: var(--accent);
  margin: 20px 0 8px
}

.content p {
  color: #e8e8e8;
  margin: 0 0 12px
}

.content ul,
.content ol {
  color: #e2e2e2
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 16px 0;
  background: #181818
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 14.5px
}

caption {
  text-align: left;
  padding: 12px 14px;
  color: var(--accent);
  font-weight: 700;
  background: #1f1a06
}

th,
td {
  padding: 12px 14px;
  border-top: 1px solid #2a2a2a;
  text-align: left
}

th {
  background: #202020;
  color: #fff
}

td {
  color: #ddd
}

.cta-band {
  background: linear-gradient(135deg, #ffB805, #ff8a00);
  color: #1a1200;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 22px 0
}

.cta-band strong {
  font-size: 19px;
  font-family: var(--font-display)
}

.cta-band p {
  margin: 4px 0 0;
  color: #2a1e00
}

.cta-band .btn-primary {
  background: #111;
  color: #FFB805;
  box-shadow: none
}

.cta-band .btn-ghost {
  border-color: #111;
  color: #111
}

.figure {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #181818
}

.figure picture img {
  width: 100%;
  background: #232323
}

.figure figcaption {
  padding: 10px 14px;
  color: var(--muted2);
  font-size: 13px
}

/* TOC */
.toc {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #171717;
  margin: 16px 0;
  overflow: hidden
}

.toc summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center
}

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

.toc summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px
}

.toc[open] summary::after {
  content: '–'
}

.toc nav {
  padding: 0 16px 16px
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  color: #ddd
}

.toc a {
  color: #eee;
  font-size: 14.5px
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 86px;
  align-self: start
}

.side-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px
}

.side-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff
}

.side-card p {
  color: var(--muted);
  font-size: 14px
}

.bonus-big {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display)
}

.promo-code {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: #111;
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 10px 0;
  font-weight: 800
}

.side-card .btn {
  width: 100%;
  margin-top: 8px
}

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

.link-list li {
  border-top: 1px solid #2a2a2a
}

.link-list a {
  display: block;
  padding: 10px 2px;
  color: #eee;
  font-size: 14.5px
}

/* Author, FAQ */
.author {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
  margin: 28px 0
}

.author .author-ico {
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  height: 64px;
  border-radius: 50%;
  background: #333;
  object-fit: cover;
  flex-shrink: 0
}

.author h3 {
  margin: 0 0 6px;
  font-size: 16px
}

.author p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.faq {
  margin: 10px 0 30px
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #181818;
  margin-bottom: 10px
}

.faq summary {
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer
}

.faq div {
  padding: 0 16px 14px;
  color: #d8d8d8;
  font-size: 15px
}

/* Breadcrumbs */
.crumbs {
  font-size: 13.5px;
  color: var(--muted2);
  padding: 14px 0 0
}

.crumbs a {
  color: var(--muted)
}

.crumbs span.sep {
  margin: 0 8px;
  color: #555
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: #0c0c0c;
  margin-top: 20px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.foot-grid h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--accent)
}

.foot-grid p,
.foot-grid li {
  font-size: 14px;
  color: var(--muted)
}

.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.foot-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
}
.foot-brand img {
  background: #fff;
  border-radius: 4px;
  width: 180px;
}

.pay-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.pay-row span {
  background: #1d1d1d;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12.5px;
  color: #eee
}

.trust-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.trust-logos a {
  background: #1d1d1d;
  border: 1px solid #333;
  color: #eee;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px
}

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  margin-top: 12px
}

.foot-bottom {
  border-top: 1px solid #222;
  padding: 16px 0;
  color: #777;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

/* Sticky mobile bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: rgba(12, 12, 12, .96);
  border-top: 1px solid #333;
  padding: 8px 15px;
  gap: 10px
}

.sticky-cta .btn {
  flex: 1;
  padding: 6px;
  min-height: 40px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .65);
  z-index: 80;
  padding: 20px
}

.modal.open {
  display: flex
}

.modal-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 24px;
  text-align: center
}

.modal-box h3 {
  margin: 0 0 8px
}

.modal-box p {
  color: var(--muted);
  font-size: 14px
}

.modal-box .row {
  display: flex;
  gap: 10px;
  margin-top: 16px
}

.modal-box .row .btn {
  flex: 1
}

.modal-close {
  margin-top: 12px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer
}

/* Screenshots clickable */
a.shot {
  display: block
}

@media (max-width:1151px) {
  .header-inner {
    gap: 10px;
  }
  .main-nav ul {
    gap: 12px;
    padding-bottom: 16px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #141414;
    border-bottom: 1px solid #333;
    padding: 10px 16px
  }

  .main-nav.open {
    display: block
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch
  }

  .burger {
    display: block;
    order: 2;
    margin-left: 0;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media(max-width:1020px) {
  .page {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .trust {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:760px) {
  

  .header-cta .btn-ghost {
    display: none
  }

  .sticky-cta {
    display: flex
  }

  body {
    padding-bottom: 72px
  }

  .foot-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:479.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .author {
    display: flex;
    flex-direction: column;
  }

  .hero p.lead {
    font-size: 17px;
  }

  .hero-points {
    gap: 5px;
  }
  .hero-points li {
    padding: 3px 6px;
    font-size: 11px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width:360px) {
  .header-cta {
    display: none;
  }

  .burger {
    margin-left: auto;
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px
}

.payments-wrap h4 {
  color: #fff;
  margin: 0 0 18px;
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.payment-item img {
  display: block;
  box-shadow: none;
  margin: 0 !important;
  border-radius: 0;
  border: none;
  max-width: 70px;
  max-height: 30px;
}
.footer-icons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.footer-icons .pay-icon {
  display: flex;
  align-items: center;
}
.footer-icons .pay-icon span {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  font-size: 12px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icons .pay-icon img {
  filter: brightness(100);
}
.main-title {
  display: flex;
  align-items: center;
}

.main-title .__right {
  margin-left: 60px;
  flex: 0 0 240px;
}
@media (max-width:800px) {
  .payments-grid {
    gap: 16px;
  }
  .payment-item img {
    max-width: 65px;
    max-height: 30px;
  }

  .table-wrap {
    overflow-x: scroll;
  }

      .main-title .__right {
    margin-left: 20px;
    flex: 0 0 220px;
  }
}
@media (max-width:639.98px) {
      .main-title {
    flex-direction: column;
  }

  .main-title .__right {
    margin-left: 0;
    flex: inherit;
  }
  .main-title .__right img {
    width: 300px !important;
  }
}