@font-face {
  font-family: 'TT Interphases';
  src: url('../TT-Interphases-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Interphases';
  src: url('../TT-Interphases-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Times New Duel';
  src: url('../TimesNewDuel.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-900: #070B23;
  --dark-800: #0C102B;
  --dark-700: #121731;
  --dark-600: #181E3C;
  --dark-500: #1F2546;
  --dark-400: #343C64;
  --dark-300: #47507C;
  --dark-200: #767FAA;
  --dark-100: #A4AAC6;
  --text-primary: #D8DAF0;
  --light-200: #D8DAF0;
  --text-muted: #939BBD;
  --border: #2E3760;
  --border-strong: #434D78;
  --gold-500: #FFCB39;
  --gold-600: #F3D486;
  --blue-500: #5E6EFF;
  --blue-600: #4558FF;
  --blue-700: #2133DC;
  --green: #20D095;
  --navbar-height: 56px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-panel: 0 12px 40px rgba(7, 11, 35, 0.55);
  --font-display: 'Times New Duel', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #767FAA transparent;
}

body {
  font-family: 'TT Interphases', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.65;
  background: var(--dark-800);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.block__title,
.facts__headline,
.block--faq summary,
.footer__heading {
  font-family: var(--font-display);
  font-weight: 400;
}

[id] {
  scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}

.wrap--wide {
  max-width: 1100px;
}

.hero .wrap--wide {
  max-width: 1280px;
}

.gold { color: var(--gold-500); }

/* Announce bar — как на duel.com */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  background: linear-gradient(180deg, var(--dark-600) 0%, var(--dark-700) 100%);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}

.announce__highlight {
  color: var(--gold-500);
  font-weight: 700;
}

.announce__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(32, 208, 149, 0.55);
  flex-shrink: 0;
  animation: announce-pulse 2.4s ease-in-out infinite;
}

@keyframes announce-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 35, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(7, 11, 35, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header__row {
  display: flex;
  align-items: center;
  height: var(--navbar-height);
  gap: 24px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .header__row { padding: 0 32px; }
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  width: 68px;
  height: 26px;
}

.tabs {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.tabs__item {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.tabs__item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.tabs__item--active {
  color: #fff;
  background: rgba(69, 88, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(94, 110, 255, 0.35);
}

.header__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--light-200);
  border-radius: 1px;
}

/* Buttons — как Register/Login на duel */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 2px 16px rgba(69, 88, 255, 0.38);
}

.btn--primary:hover {
  background: var(--blue-500);
  box-shadow: 0 4px 22px rgba(69, 88, 255, 0.48);
  transform: translateY(-1px);
}

.btn--primary:disabled {
  background: var(--dark-400);
  opacity: 0.5;
  box-shadow: none;
  transform: none;
}

.btn--secondary {
  background: var(--dark-400);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn--secondary:hover {
  background: var(--dark-300);
}

.btn--wide {
  margin-top: 4px;
  height: 48px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  max-width: 320px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(430px, 54vh, 580px);
  padding: 64px 0 76px;
  border-bottom: 1px solid var(--border-strong);
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 65% at 88% 32%, rgba(32, 208, 149, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 55% 50% at 8% 78%, rgba(69, 88, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 50% 108%, rgba(255, 203, 57, 0.07) 0%, transparent 58%),
    linear-gradient(180deg, #040714 0%, #0a1028 42%, var(--dark-800) 100%);
  box-shadow:
    inset 0 -24px 48px rgba(7, 11, 35, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(7, 11, 35, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 57, 0.55), rgba(69, 88, 255, 0.4), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px 44px;
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(255, 203, 57, 0.08);
  border: 1px solid rgba(255, 203, 57, 0.22);
  border-radius: 999px;
}

.hero__title {
  font-size: clamp(40px, 6.4vw, 68px);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
  text-shadow:
    0 2px 32px rgba(7, 11, 35, 0.65),
    0 0 80px rgba(69, 88, 255, 0.12);
}

.hero__sub {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hero__note {
  font-size: 15px;
  color: var(--dark-100);
  line-height: 1.6;
  max-width: 480px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 203, 57, 0.45);
}

.hero__visual {
  position: relative;
  margin: 0;
  line-height: 0;
  min-width: 0;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 10% 5% 5% 10%;
  background: radial-gradient(ellipse at 60% 50%, rgba(69, 88, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 64px rgba(4, 7, 20, 0.78));
}

/* Article blocks */
.article {
  padding: 48px 0;
  background: var(--dark-700);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.block {
  margin-bottom: 44px;
}

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

.block__title {
  position: relative;
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  letter-spacing: -0.01em;
}

.block__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
}

.block p {
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

.block strong { color: #fff; font-weight: 700; }

/* At a glance — editorial spec sheet */
.facts {
  margin-bottom: 28px;
}

.facts__panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--dark-600);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.facts__panel--visible {
  opacity: 1;
  transform: none;
}

.facts__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.facts__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 30px;
  border-right: 1px solid rgba(46, 55, 96, 0.55);
}

.facts__lead-top {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 0;
  border-bottom: none;
}

.facts__tile {
  position: relative;
  width: 100%;
  aspect-ratio: 197 / 256;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--dark-700);
}

.facts__tile-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facts__tile-badge {
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 9px;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(7, 11, 35, 0.82);
  border: 1px solid rgba(32, 208, 149, 0.4);
  border-radius: 4px;
}

.facts__lead-intro {
  min-width: 0;
}

.facts__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.facts__headline {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.facts__hook {
  margin: 0;
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
}

.facts__products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: none;
}

.facts__products-grid li {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
}

.facts__products-grid strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.facts__products-grid span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.facts__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 4px;
}

.facts__highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.facts__highlight:not(:first-child) {
  border-left: none;
}

.facts__highlight-val {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-500);
  font-variant-numeric: tabular-nums;
}

.facts__highlight-label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-muted);
}

.facts__spec {
  margin: 0;
  padding: 24px 28px 24px 24px;
  align-self: start;
}

.facts__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px 20px;
  align-items: start;
  padding: 11px 0;
  border-bottom: none;
}

.facts__row + .facts__row {
  border-top: 1px solid rgba(46, 55, 96, 0.35);
}

.facts__row dt {
  padding-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-100);
}

.facts__row dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.facts__row-sub {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
}

.facts__pill {
  display: inline-block;
  padding: 3px 8px;
  margin-right: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  vertical-align: middle;
}

.facts__pill--valid {
  color: var(--green);
  background: rgba(32, 208, 149, 0.12);
  border: 1px solid rgba(32, 208, 149, 0.28);
}

.facts__pill--none {
  color: var(--dark-100);
  background: var(--dark-500);
  border: 1px solid var(--border-strong);
}

@media (prefers-reduced-motion: reduce) {
  .announce__dot {
    animation: none;
  }

  .btn--primary:hover {
    transform: none;
  }

  .facts__panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  .facts__left {
    border-right: none;
    border-bottom: 1px solid rgba(46, 55, 96, 0.55);
    padding: 22px 18px;
  }

  .facts__products-grid {
    flex: none;
  }

  .facts__spec {
    padding: 20px 18px 22px;
  }

  .facts__row {
    grid-template-columns: 118px 1fr;
    padding: 10px 0;
  }
}

@media (max-width: 560px) {
  .facts__lead-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .facts__tile {
    width: 100%;
    max-width: 200px;
    justify-self: start;
  }

  .facts__hook {
    max-width: none;
  }

  .facts__products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facts__highlights {
    flex-direction: column;
    gap: 12px;
  }

  .facts__row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 18px;
  }

  .facts__row dd {
    font-size: 15px;
  }
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plain-list li {
  padding-left: 16px;
  position: relative;
  color: var(--light-200);
}

.plain-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Text flow around screenshots */
.block__flow {
  overflow: hidden;
}

.block__flow::after {
  content: '';
  display: table;
  clear: both;
}

.block__flow--spaced {
  margin-top: 36px;
}

.block__flow p {
  margin-bottom: 15px;
  color: var(--text-primary);
  text-align: left;
}

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

/* Screenshot figures */
.shot {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--dark-600);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.shot figcaption {
  padding: 10px 12px;
  font-size: 11px;
  line-height: 16px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--dark-700);
}

/* Vertical shots — float for text wrap */
.shot--portrait {
  width: min(40%, 340px);
  margin-bottom: 14px;
  shape-outside: margin-box;
}

.shot--right {
  float: right;
  margin-left: 28px;
}

.shot--left {
  float: left;
  margin-right: 28px;
}

.shot--portrait img {
  max-height: min(440px, 62vh);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

/* Horizontal shots — full block width, no wrap */
.shot--wide {
  clear: both;
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 22px 0;
  shape-outside: none;
}

.shot--wide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shot--license {
  clear: both;
  float: none;
  width: auto;
  max-width: min(480px, 100%);
  margin: 22px auto;
  background: #f5f5f5;
  border-color: #ddd;
}

.shot--license img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shot--license figcaption {
  background: var(--dark-700);
  border-top-color: var(--border);
}

/* Banded sections */
.section-band {
  padding: 52px 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(69, 88, 255, 0.06) 0%, transparent 58%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 203, 57, 0.04) 0%, transparent 50%),
    var(--dark-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-band .block:last-child {
  margin-bottom: 0;
}

.section-band .block {
  margin-bottom: 48px;
}

/* Top slots panel */
.slots-top {
  margin: 28px 0 24px;
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 203, 57, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(69, 88, 255, 0.07) 0%, transparent 50%),
    var(--dark-600);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.slots-top__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.slots-top__label {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.slots-top__note {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.slots-top__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(69, 88, 255, 0.18);
  border: 1px solid rgba(94, 110, 255, 0.35);
  transition: background 0.15s, border-color 0.15s;
}

.slots-top__link:hover {
  background: rgba(69, 88, 255, 0.28);
  border-color: rgba(94, 110, 255, 0.55);
}

.slots-top__strip {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.slot-tile {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.slot-tile__rank {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(7, 11, 35, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  line-height: 1.2;
}

.slot-tile__art {
  width: 100%;
  margin: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0e22;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
}

.slot-tile__art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.slot-tile:hover .slot-tile__art {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 20px rgba(7, 11, 35, 0.45);
}

.slot-tile--pragmatic:hover .slot-tile__art { box-shadow: 0 8px 20px rgba(69, 88, 255, 0.15); }
.slot-tile--hacksaw:hover .slot-tile__art { box-shadow: 0 8px 20px rgba(255, 80, 150, 0.12); }
.slot-tile--nolimit:hover .slot-tile__art { box-shadow: 0 8px 20px rgba(32, 208, 149, 0.12); }

.slot-tile__provider {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.slot-tile--pragmatic .slot-tile__provider { color: #8b98e8; }
.slot-tile--hacksaw .slot-tile__provider { color: #e87aab; }
.slot-tile--nolimit .slot-tile__provider { color: #4dd4a8; }

.slots-top__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

.slots-top__footer strong {
  color: var(--dark-100);
  font-weight: 700;
}

@media (max-width: 720px) {
  .slots-top__strip {
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .slot-tile {
    flex: 0 0 88px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .slots-top__head {
    flex-direction: column;
    align-items: stretch;
  }

  .slots-top__link {
    justify-content: center;
  }
}

/* Editorial trust — E-E-A-T block */
.editorial-trust {
  margin-bottom: 48px;
}

.editorial-trust__panel {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(69, 88, 255, 0.06) 0%, transparent 55%),
    var(--dark-600);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.editorial-trust__lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
}

.editorial-trust__lead strong {
  color: #fff;
  font-weight: 600;
}

.editorial-trust__list {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.editorial-trust__list li + li {
  margin-top: 6px;
}

/* Verdict callout */
.verdict {
  padding: 24px 24px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(255, 203, 57, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(69, 88, 255, 0.08) 0%, transparent 50%),
    var(--dark-600);
  box-shadow: var(--shadow-panel);
}

.verdict p {
  margin-bottom: 15px;
  color: var(--text-primary);
}

.verdict__note {
  font-size: 13px;
  color: var(--text-muted) !important;
  margin-bottom: 20px !important;
}

/* FAQ */
.block--faq {
  padding: 4px 0 0;
}

.block--faq .block__title {
  margin-bottom: 16px;
}

.faq-panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-600);
  box-shadow: var(--shadow-panel);
}

.block--faq details {
  border-bottom: 1px solid var(--border);
}

.block--faq details:last-of-type {
  border-bottom: none;
}

.block--faq details:first-of-type {
  border-top: none;
}

.block--faq summary {
  padding: 16px 20px;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s, background 0.15s;
}

.block--faq summary:hover {
  background: rgba(255, 255, 255, 0.02);
}

.block--faq summary::-webkit-details-marker { display: none; }

.block--faq details[open] summary {
  color: var(--gold-500);
  background: rgba(255, 203, 57, 0.04);
}

.block--faq details[open] p {
  padding: 14px 20px 16px;
  border-top: 1px solid var(--border);
  background: rgba(7, 11, 35, 0.25);
}

.block--faq p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 13px;
  color: var(--text-primary);
}

/* Footer — как duel.com */
.footer {
  background: var(--dark-900);
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: flex;
  gap: 64px;
  margin-bottom: 32px;
}

.footer__heading {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer__col a:hover { color: var(--gold-500); }

.footer__legal p {
  font-size: 11px;
  line-height: 18px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer__legal a {
  color: var(--dark-100);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal a:hover { color: var(--gold-500); }

.footer__disclaimer {
  color: var(--dark-100) !important;
}

.footer__copy {
  color: var(--dark-300);
  margin-top: 16px;
}

/* Mobile menu */
.header.menu-open .tabs {
  display: flex;
}

@media (max-width: 640px) {
  .tabs {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dark-600);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    gap: 4px;
  }

  .header__actions {
    display: flex;
    margin-left: auto;
    gap: 6px;
    flex-shrink: 0;
  }

  .header__actions .btn {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .header { position: relative; }
  .header__row { position: relative; gap: 10px; }
  .menu-btn {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }

  .tabs__item { width: 100%; }

  .hero {
    min-height: auto;
    padding: 40px 0 48px;
  }

  .hero .wrap--wide {
    max-width: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: clamp(36px, 9vw, 48px);
  }

  .hero__sub {
    font-size: 18px;
  }

  .hero__visual img {
    width: 100%;
  }

  .hero__content {
    text-align: center;
  }

  .hero__note {
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .hero__visual::before {
    display: none;
  }

  .footer__grid { flex-direction: column; gap: 24px; }

  .shot--portrait {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
    shape-outside: none;
  }

  .shot--right,
  .shot--left {
    margin-left: auto;
    margin-right: auto;
  }

  .shot--portrait img {
    height: auto;
    object-fit: contain;
  }

  .shot--wide {
    margin: 18px 0;
  }
}

/* Floating nudge — editorial card, bottom-right */
.nudge-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 45;
  width: 236px;
  padding: 18px 16px 16px;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 203, 57, 0.07) 0%, transparent 55%),
    linear-gradient(165deg, var(--dark-600) 0%, var(--dark-700) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow:
    var(--shadow-panel),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translate3d(12px, 24px, 0) scale(0.94);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}

.nudge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, var(--gold-500), rgba(255, 203, 57, 0.25));
}

.nudge-card--visible {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.nudge-card__stamp {
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 4px;
  background: var(--dark-900);
  border: 2px solid rgba(32, 208, 149, 0.55);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(7, 11, 35, 0.55);
  transform: rotate(-9deg);
}

.nudge-card__stamp-num {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
}

.nudge-card__stamp-label {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.85;
}

.nudge-card__dismiss {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 2px 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-200);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.nudge-card__dismiss:hover {
  color: var(--text-primary);
}

.nudge-card__inner {
  padding-top: 6px;
}

.nudge-card__kicker {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.nudge-card__headline {
  margin: 0 0 14px;
  padding-right: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.nudge-card__action {
  width: 100%;
  height: 38px;
  font-size: 13px;
}

@media (max-width: 480px) {
  .nudge-card {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .nudge-card__headline {
    font-size: 18px;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nudge-card {
    transition: none;
  }
}

/* WordPress additions */
.facts__intro > :first-child {
  margin-top: 0;
}

.page-inner .entry-content {
  font-size: 15px;
  line-height: 1.65;
}

.page-inner .entry-content h2,
.page-inner .entry-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 1.6em 0 0.6em;
}

.page-inner .entry-content p {
  margin-bottom: 1em;
}

.page-inner .entry-content a {
  color: var(--blue-500);
}

.tabs .menu,
.footer__menu {
  list-style: none;
  display: contents;
}

.tabs .menu a,
.footer__menu a {
  color: inherit;
  text-decoration: none;
}

.custom-logo-link {
  display: block;
  line-height: 0;
}
