:root {
  --color-primary: #0066cc;
  --color-accent: #ff9900;
  --color-bg: #1a1a2e;
  --color-bg-2: #101024;
  --color-text: #ffffff;
  --color-secondary: #ffffff;
  --color-cta: #ff9900;
  --color-cta-hover: #f08a00;
  --color-muted: #b8c4dc;
  --container: 1160px;
  --radius: 8px;
  --line: rgba(255, 255, 255, .12);
  --panel: rgba(255, 255, 255, .075);
  --shadow: 0 18px 60px rgba(0, 0, 0, .34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 102, 204, .35), transparent 34rem),
    linear-gradient(180deg, var(--color-bg), var(--color-bg-2));
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: calc(100vw - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(16px, calc((100vw - var(--container)) / 2));
  background: rgba(16, 16, 36, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-link img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--color-muted);
  font-size: .92rem;
}

.nav-links a,
.footer-grid a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-grid a:hover {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--color-cta), var(--color-cta-hover));
  color: #17100a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 153, 0, .28);
  transition: transform .18s ease, filter .18s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  white-space: nowrap;
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 36, .95) 0%, rgba(16, 16, 36, .72) 46%, rgba(16, 16, 36, .2) 100%),
    linear-gradient(180deg, rgba(16, 16, 36, .1), rgba(16, 16, 36, .92)),
    url("../images/1-1.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  padding-block: clamp(88px, 16vw, 170px) 64px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  color: #e7edf8;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

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

.review-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  padding-block: 34px 74px;
}

.quick-card,
.card,
.feed-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.quick-card {
  position: sticky;
  top: 84px;
  align-self: start;
  padding: 22px;
}

.quick-label {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: .85rem;
}

.score {
  display: block;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 2.7rem;
  line-height: 1;
}

dl {
  margin: 20px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--color-muted);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.review-article {
  display: grid;
  gap: 24px;
}

.review-layout > *,
.bonus-panel > *,
.pros-cons > *,
.feed-grid > *,
.footer-grid > * {
  min-width: 0;
}

.quick-card,
.review-article,
.verdict,
.bonus-panel,
.bonus-copy,
.comparison,
.withdrawals,
.feed-item,
.faq {
  min-width: 0;
}

.card {
  padding: clamp(20px, 3.4vw, 34px);
}

.verdict {
  display: grid;
  gap: 24px;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pros-cons > div {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 7px;
}

.bonus-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
  align-items: stretch;
  gap: 18px;
}

.bonus-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.bonus-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .18);
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 34%;
  color: var(--color-muted);
  font-weight: 700;
}

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

.section-heading {
  margin-bottom: 18px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feed-item {
  padding: 18px;
}

.feed-item span,
.feed-item small {
  display: block;
  color: var(--color-muted);
}

.feed-item strong {
  display: block;
  margin: 4px 0;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.chips span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: #eef4ff;
  font-weight: 700;
  font-size: .9rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.payment-icons img {
  width: auto;
  height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: #fff;
}

details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

details:last-child {
  padding-bottom: 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: #dbe5f6;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-block: 28px;
}

.footer-grid img {
  width: 150px;
  height: auto;
}

.footer-grid p {
  margin: 0;
  color: var(--color-muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal {
  grid-column: 1 / -1;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 580px;
  }

  .review-layout,
  .bonus-panel {
    grid-template-columns: 1fr;
  }

  .quick-card {
    position: static;
  }

  .bonus-panel img {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-link img {
    width: 126px;
  }

  .btn-small {
    padding-inline: 12px;
    font-size: .9rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 16, 36, .64), rgba(16, 16, 36, .95)),
      url("../images/1-1.png") center / cover no-repeat;
  }

  .hero-actions,
  .pros-cons,
  .feed-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}
