:root {
  --bg: #000;
  --bg-soft: #0b0b0b;
  --bg-mid: #141414;
  --panel: #141414;
  --panel-2: #1e1f20;
  --text: #fff;
  --white: #fff;
  --text-muted: #d9d9d9;
  --text-faint: #a9adb4;
  --red: #e00226;
  --red-dark: #ad021d;
  --red-deep: #7c0014;
  --gold: #e00226;
  --gold-dark: #ff6278;
  --green: #37d67a;
  --border: #e00226;
  --shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(224, 2, 38, .22), transparent 28%),
    linear-gradient(180deg, #000 0%, #070707 35%, #000 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("img/banner-cta.webp") center top / cover no-repeat;
  opacity: .11;
  filter: saturate(1.15);
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 800;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  background: rgba(0, 0, 0, .96);
  border-bottom: 1px solid var(--red);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .45);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 225px;
}

.logo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 38px;
  padding: 0 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  transform: skew(-7deg);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .18), 0 10px 28px rgba(224, 2, 38, .28);
}

.logo-badge::first-letter {
  color: #fff;
}

.logo-text {
  color: #dfe2e7;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

nav a {
  padding: 22px 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s, background .2s;
}

nav a:hover,
nav a.active {
  color: var(--red);
  background: #141414;
}

.btn-cta,
.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  line-height: 1.1;
  transition: transform .2s, background .2s, border-color .2s;
}

.btn-cta,
.btn-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.btn-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  color: #000;
  background: #babbbf;
}

.hamburger {
  display: none;
  width: 42px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: #101010;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .2s, opacity .2s;
}

header.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

header.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--red);
}

.hero {
  min-height: 640px;
  padding: 112px max(24px, calc((100vw - 1180px) / 2)) 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 45%, rgba(0, 0, 0, .25) 100%),
    url("img/banner-1-big.webp") center / cover no-repeat;
}

.page-hero {
  padding: 108px 0 58px;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .84) 56%, rgba(0, 0, 0, .36) 100%),
    url("img/img-1.webp") center / cover no-repeat;
}

.hero-tag {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(224, 2, 38, .92);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 60px);
}

.hero h1 span,
.page-hero h1 span,
.section-title span {
  color: var(--red);
}

.hero p:not(.hero-tag),
.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.stats-bar {
  background: #141414;
  border-bottom: 1px solid var(--red);
}

.stats-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--red);
  border-inline: 1px solid var(--red);
}

.stat-item {
  padding: 24px 18px;
  background: #050505;
  text-align: center;
}

.stat-num {
  display: block;
  color: var(--red);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.divider {
  width: 72px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--red);
}

.section-title {
  max-width: 920px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.section-sub {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

aside {
  position: sticky;
  top: 88px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.sidebar-box,
.bonus-box,
.info-box,
.step,
.faq-item,
.table-wrap {
  background: linear-gradient(135deg, #141414 0%, #171717 62%, rgba(124, 0, 20, .68) 100%);
  border: 1px solid var(--red);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.card {
  min-height: 210px;
  padding: 24px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--red);
  font-size: 24px;
}

.card h3,
.step-body h4,
.sidebar-box h4,
.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.card p,
.step-body p,
.sidebar-box p,
.faq-a,
td {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-align: left;
}

th {
  color: #fff;
  background: #000;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.badge-gold {
  color: #fff;
  background: var(--red);
}

.badge-green {
  color: #fff;
  background: #087a3b;
}

.bonus-box,
.sidebar-box {
  padding: 24px;
}

.bonus-box {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .78)),
    url("img/banner-2-big.webp") center / cover no-repeat;
}

.bonus-amount {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  font-weight: 900;
}

.bonus-sub {
  margin: 10px 0 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 28px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 15px;
  line-height: 1.45;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 2px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 18px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
}

.info-box {
  padding: 20px 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-box strong {
  color: #fff;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
}

.faq-q {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.faq-a {
  margin-top: 10px;
}

.content-page {
  display: grid;
  gap: 34px;
}

.content-block {
  padding: 28px;
  background: linear-gradient(135deg, rgba(20, 20, 20, .94), rgba(124, 0, 20, .42));
  border: 1px solid rgba(224, 2, 38, .78);
  border-radius: 6px;
}

.content-block h2,
.content-block h3 {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.content-block h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.content-block h3 {
  margin-top: 26px;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--red);
}

.content-block p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ol,
.content-block ul {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--text-muted);
}

.content-block li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.content-block li p {
  margin: 0;
}

.content-block .table-wrap {
  margin: 20px 0 4px;
}

.content-block .faq-item + .faq-item {
  margin-top: 14px;
}

main > .section:nth-of-type(2n) {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, .98), rgba(20, 20, 20, .94)),
    url("img/img-2.webp") center / cover no-repeat;
}

footer {
  background: #141414;
  border-top: 1px solid var(--red);
}

.footer-top {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.footer-desc,
.footer-copy {
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  padding: 5px 10px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin: 0 0 10px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--red);
}

.legal-page .page-hero {
  min-height: 360px;
}

.content-block a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  header {
    position: sticky;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 42px;
    flex-wrap: nowrap;
    padding: 10px 0;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    width: auto;
  }

  nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 8px;
  }

  nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 8px;
    border: 1px solid rgba(224, 2, 38, .45);
    border-radius: 5px;
    background: #101010;
    text-align: center;
  }

  .hamburger {
    display: flex;
    justify-self: end;
  }

  header.menu-open nav {
    display: grid;
  }

  .hero {
    min-height: 560px;
    padding-top: 84px;
  }

  .page-hero {
    padding: 78px 0 48px;
  }

  .layout-sidebar,
  .card-grid-2,
  .card-grid-3,
  .footer-top {
    grid-template-columns: 1fr;
  }

  aside {
    position: static;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-block {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  body {
    width: 100%;
    max-width: 100%;
  }

  header,
  .hero,
  .page-hero,
  .stats-bar,
  main,
  footer {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-x: clip;
  }

  header *,
  .hero *,
  .page-hero *,
  .stats-bar *,
  main *,
  footer * {
    min-width: 0;
  }

  .header-inner,
  .container,
  .stats-inner,
  .footer-top,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    position: relative;
    min-height: 58px;
    grid-template-columns: auto 40px;
    justify-content: space-between;
    gap: 8px;
  }

  .logo {
    width: auto;
  }

  .logo-badge {
    min-width: 96px;
    height: 34px;
    font-size: 15px;
  }

  .logo-text {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 9px;
    right: 0;
    width: 40px;
  }

  nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  nav a {
    min-height: 38px;
    padding: 10px 8px;
    border: 1px solid rgba(224, 2, 38, .45);
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    background: #101010;
  }

  .hero {
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 52px;
    padding-bottom: 44px;
    background-position: 58% center;
  }

  .hero > * {
    width: 100%;
    max-width: 100%;
  }

  .hero-tag {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .page-hero {
    padding: 46px 0 40px;
    background-position: 58% center;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    min-width: 0;
  }

  .section {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero p:not(.hero-tag),
  .page-hero p,
  .content-block p,
  .card p,
  .step-body p,
  .sidebar-box p,
  .faq-a,
  td {
    font-size: 14px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-title,
  .content-block h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .content-block h3 {
    font-size: 20px;
  }

  .content-block {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
  }

  table {
    min-width: 0;
  }

  th,
  td {
    padding: 12px;
  }

  .footer-top {
    padding: 32px 0;
    gap: 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}
