:root{--font-sans:'Audiowide', sans-serif;}


/* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-family:
      system-ui,
      -apple-system,
      "SF Pro Text",
      "Segoe UI",
      sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition:
      color 0.2s ease,
      transform 0.15s ease,
      opacity 0.2s ease;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

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

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: #050814 !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }


/* ===== hero shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      opacity: 0.1;
      z-index: -1;
      inset: 0;
    }
  }

  .z9q-heroBox::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--borderRadius);
    pointer-events: none;
  }

  /* left/right striped “curtains” */
  .k2p-curtain,
  .k2p-curtain2 {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 34%;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
  }

  .k2p-curtain {
    left: -8%;
    transform: skewX(-12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(60% 70% at 65% 50%, #000 60%, transparent 100%);
  }

  .k2p-curtain2 {
    right: -10%;
    transform: skewX(12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(65% 70% at 35% 55%, #000 60%, transparent 100%);
  }

  /* subtle diagonal lines behind */
  .p7x-gridwash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 45%),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
      );
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== main layout ===== */
  .n0v-stage {
    position: relative;
    z-index: 2;
  }

  .t5q-centerCopy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .x8h-title {
    color: var(--textColor1);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .g7p-sub {
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
  }

  .j3c-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--textColor1);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.2s all linear;
    width: fit-content;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  /* ===== responsive rules ===== */
  @media (max-width: 780px) {
    .z9q-heroBox {
      min-height: 550px;
    }
    .t5q-centerCopy {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 10px auto 12px;
      padding: 0 6px;
    }

    .k2p-curtain,
    .k2p-curtain2 {
      opacity: 0.55;
      width: 46%;
    }
  }


:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--secondStyleColor);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }


/*  */

  #about {
    min-height: 500px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }
  }

  #about .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    && h2 {
      text-transform: uppercase;
      color: var(--textColor1);
    }
  }
  .ab-lllller {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ab-rrrrorjg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    && p {
      font-style: italic;
      color: var(--textColor1);
    }
    && a {
      text-transform: uppercase;
      padding: 15px 20px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      font-weight: 900;
      transition: 0.2s all linear;
      color: var(--textColor2);
      &&:hover {
        transform: translateY(-2px);
      }
    }
  }
  .ab-lllller > span:nth-of-type(1) {
    color: var(--secondStyleColor);
    font-style: italic;
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-style: italic;
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
      align-items: center;
    }
    .ab-lllller {
      align-items: center;
      && h2 {
        text-align: center;
      }
    }
    .ab-rrrrorjg {
      align-items: center;
      padding: 20px;
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
    .ab-lllller > span:nth-of-type(2) {
      font-size: 90px;
    }
  }


/*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

  @keyframes vx-rotate {
    to {
      transform: rotate(360deg);
    }
  }

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: none;
    }
  }


/*  */
  #features {
    position: relative;
  }
  #features img {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
  }
  #features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    && a {
      padding: 15px 60px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      font-size: 20px;
      color: var(--textColor2);
      transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
      &&:hover {
        padding: 15px 80px;
      }
    }
    && h2 + p {
      text-align: center;
      text-wrap: balance;
    }
  }
  .fcsardjarwi {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  .cdfeeooofwwqr {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
  }
  .fcoooo {
    padding: 40px;
    color: var(--textColor1);
    background-color: rgba(16, 16, 20, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: var(--borderRadius);
    && span {
      font-size: 40px;
      font-weight: 900;
    }
    && p {
      text-align: center;
    }
  }

  @media (max-width: 800px) {
    .cdfeeooofwwqr {
      flex-direction: column;
      gap: 20px;
    }
    .fcoooo {
      padding: 20px;
    }
    .fcsardjarwi {
      margin-top: 20px;
      gap: 20px;
    }
  }


/* ===== ROADMAP SECTION v2 ===== */

  .roadmapSection-v2 {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .roadmapWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */

  .roadmapHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .roadmapEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .roadmapTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
  }

  /* Timeline */

  .roadmapTimeline {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Один шаг */

  .roadmapStep {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  /* Левая колонка — маркеры */

  .roadmapMarker {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .roadmapDot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
    margin-top: 6px;
    z-index: 2;
  }

  .roadmapDot-final {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.18);
  }

  /* Вертикальная линия */

  .roadmapLine {
    position: absolute;
    top: 20px;
    bottom: -18px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.1)
    );
    z-index: 1;
  }

  /* Правая колонка — карточка шага */

  .roadmapCard {
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 18px 20px 18px 20px;
    transition: 0.2s ease;
  }

  .roadmapCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .roadmapCard-final {
    background: #272d27;
  }

  /* Тексты шага */

  .roadmapPhase {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
    font-weight: 600;
  }

  .roadmapStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapStepText {
    font-size: 14px;
    line-height: 1.7;
    color: #dedede;
  }

  /* Адаптив */

  @media (max-width: 700px) {
    .roadmapTitle {
      font-size: 28px;
    }

    .roadmapStep {
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
    }

    .roadmapCard {
      padding: 16px 16px 16px 16px;
    }
  }


/*  */
  .zq9-pulse {
    padding: clamp(18px, 3vw, 40px) 0;
    color: var(--txt);
  }

  .zq9-head {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(14px, 2vw, 22px);
  }

  .zq9-title {
    line-height: 1.15;
    margin: 0;
    letter-spacing: 0.2px;
  }

  .zq9-sub {
    margin: 0;
    color: var(--textColor1);
    white-space: nowrap;
  }

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

  .zq9-card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    overflow: hidden;
    padding: 16px;
    min-height: 168px;
  }

  .zq9-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(
      400px 120px at 20% 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      transparent 60%
    );
    pointer-events: none;
    opacity: 0.9;
  }

  .zq9-card:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
    transition:
      transform 220ms ease,
      border-color 220ms ease;
  }

  .zq9-card * {
    position: relative;
    z-index: 1;
  }

  .zq9-card--big {
    padding: clamp(18px, 2.4vw, 28px);
    min-height: 260px;
  }

  .zq9-kicker {
    margin: 0 0 10px;
    color: var(--textColor1);
  }

  .zq9-pay {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
  }

  .zq9-payNum {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 650;
    letter-spacing: -0.5px;
  }

  .zq9-payUnit {
    font-size: 14px;
    color: var(--textColor1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Decorative “3D” blob + ribs like in the reference */
  .zq9-deco {
    position: absolute;
    left: -70px;
    bottom: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
      radial-gradient(
        circle at 38% 35%,
        rgba(255, 255, 255, 0.14),
        transparent 55%
      ),
      radial-gradient(
        circle at 62% 70%,
        rgba(76, 222, 255, 0.24),
        transparent 60%
      ),
      radial-gradient(
        circle at 50% 50%,
        rgba(76, 222, 255, 0.12),
        rgba(0, 0, 0, 0) 60%
      );
    filter: blur(0.2px);
    opacity: 0.95;
    transform: rotate(-12deg);
    z-index: 0;
  }

  .zq9-ribs {
    position: absolute;
    left: -24px;
    bottom: -18px;
    width: 280px;
    height: 240px;
    background: repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(255, 255, 255, 0) 10px,
      rgba(255, 255, 255, 0) 16px
    );
    mask-image: radial-gradient(circle at 45% 55%, #000 0 48%, transparent 70%);
    opacity: 0.9;
    z-index: 0;
  }

  .zq9-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .zq9-top {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
  }

  .zq9-h3 {
    margin: 0;
    font-weight: 600;
    color: var(--textColor1);
  }

  .zq9-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--textColor1);
    font-size: 20px;
  }

  .zq9-miniA {
    opacity: 0.75;
  }
  .zq9-miniSep {
    opacity: 0.55;
  }
  .zq9-miniB {
    color: var(--secondStyleColor);
  }

  .zq9-chart {
    padding: 6px 0 2px;
  }

  .zq9-chart svg {
    width: 100%;
    height: 120px;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(76, 222, 255, 0.1));
  }

  .zq9-foot {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
  }

  .zq9-badge {
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: var(--bodyBG);
    color: var(--textColor1);
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .zq9-badge--down {
    border-color: rgba(76, 222, 255, 0.18);
    background: rgba(76, 222, 255, 0.06);
  }

  .zq9-badge--up {
    border-color: rgba(76, 222, 255, 0.26);
    background: rgba(76, 222, 255, 0.1);
  }

  /* Responsive layout similar to reference */
  @media (min-width: 860px) {
    .zq9-grid {
      grid-template-columns: 1.05fr 2fr;
      align-items: stretch;
    }
    .zq9-card--big {
      min-height: 360px;
    }
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 520px) and (max-width: 859px) {
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

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


/* ---------- Spotlight Reels (Mosaic + Lightbox) ---------- */
  .fxl-reels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
  }
  .fxl-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .fxl-reel {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--secondStyleColor);
    border-radius: calc(var(--borderRadius) + 2px);
    overflow: hidden;
    background: #0c221a;
    box-shadow: var(--fxl-shadow);
    transition: transform 0.3s ease;
  }
  .fxl-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* органичная маска */
    mask-image: radial-gradient(
      120% 80% at 80% 20%,
      #000 60%,
      transparent 100%
    );
  }
  .fxl-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .fxl-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .fxl-reel:hover img {
    transform: scale(1.06);
  }

  .fxl-reel__cap {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 31, 0.75);
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    color: var(--textColor1);
  }

  /* Layout variants */
  .fxl-reel--wide {
    grid-column: span 4;
    grid-row: span 2;
  }
  .fxl-reel--tall {
    grid-column: span 2;
    grid-row: span 3;
  }
  .fxl-reels > .fxl-reel:not(.fxl-reel--wide):not(.fxl-reel--tall) {
    grid-column: span 2;
    grid-row: span 2;
  }

  @media (max-width: 1200px) {
    .fxl-reels {
      grid-template-columns: repeat(4, 1fr);
    }
    .fxl-reel--wide {
      grid-column: span 4;
    }
  }
  @media (max-width: 800px) {
    .fxl-reels {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .fxl-reel--wide,
    .fxl-reel--tall {
      grid-column: span 2;
      grid-row: span 2;
    }
  }


.stats--dynamic-head {
    margin: 0 auto 45px auto;
  }
  .stats--dynamic {
    background: var(--bodyBG);
    h2,
    h2 + p {
      text-align: center;
    }
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .stat-card--glow {
    backdrop-filter: blur(20px);
    border: 1px solid var(--secondStyleColor);

    border-radius: var(--borderRadius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .stat-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .stat-card__header h3 {
    color: var(--textColor1);
    margin: 0;
  }

  .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondStyleColor);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .stat-period {
    color: var(--secondStyleColor);
    font-size: 0.9rem;
  }

  .stat-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--secondStyleColor);
  }

  .stat-label {
    color: var(--textColor1);
    font-size: 0.9rem;
  }

  .stat-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--secondStyleColor);
  }

  .stat-suffix {
    color: var(--secondStyleColor);
    font-size: 0.9rem;
  }

  .players-list,
  .wins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .player-item,
  .win-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
  }

  .player-item:hover,
  .win-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .player-rank {
    width: 24px;
    height: 24px;
    background: var(--secondStyleColor);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .player-name {
    flex: 1;
    color: var(--text-primary);
  }

  .player-win {
    color: var(--secondStyleColor);
    font-weight: 700;
  }

  .win-multiplier {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--secondStyleColor);
  }

  .win-details {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .win-amount {
    color: var(--text-primary);
    font-weight: 700;
  }

  .win-time {
    color: var(--secondStyleColor);
    font-size: 0.8rem;
  }

  @media (max-width: 800px) {
    .stats-grid {
      display: flex;
      flex-direction: column;
      width: inherit;
    }
  }


#reviews .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .revierhweaul-head {
    margin-bottom: 40px;
    && h2,
    p {
      text-align: center;
    }
  }

  #reviews ul {
    position: relative;
    transform-style: preserve-3d;
    perspective: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: 500ms;
  }

  #reviews ul:hover {
    gap: 20px;
  }

  #reviews ul li {
    position: relative;
    list-style: none;
    width: 80%;
    margin: 0 auto;
    min-height: 120px;
    padding: 16px;
    background: var(--textColor1);
    border-radius: var(--borderRadius);
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
    transition: 500ms;
    transition-delay: calc(var(--i) * 50ms);
    cursor: pointer;
  }

  #reviews ul li:nth-child(1) {
    transform: translateZ(-75px) translateY(20px);
    opacity: 0.6;
    filter: blur(4px);
  }

  #reviews ul li:nth-child(2) {
    opacity: 0.8;
    filter: blur(2px);
  }

  #reviews ul li:nth-child(3) {
    transform: translateZ(65px) translateY(-30px);
  }

  #reviews ul li:nth-child(4) {
    transform: translateZ(125px) translateY(-68px);
    filter: blur(1px);
  }

  #reviews ul:hover li {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0) translateY(0);
  }

  #reviews ul li img {
    max-width: 64px;
    border-radius: 8px;
  }

  #reviews ul li .content {
    width: 100%;
  }

  #reviews ul li .content h3 {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
    color: var(--textColor2);
  }

  #reviews ul li .content p {
    color: var(--textColor2);
    opacity: 0.6;
    line-height: 1;
  }

  @media (max-width: 800px) {
    #reviews ul {
      perspective: none;
      gap: 20px;
    }
    #reviews ul li:nth-child(1),
    #reviews ul li:nth-child(2),
    #reviews ul li:nth-child(3),
    #reviews ul li:nth-child(4) {
      transform: translateZ(0) translateY(0);
      opacity: 1;
      filter: blur(0px);
      width: 100%;
    }
  }


[data-accordion-element-content] {
    overflow: hidden;
    transition: height 0.5s;
  }

  :root {
    --bgHead: var(--bodyBG);
    --bgHeadHover_active: var(--secondStyleColor);
    --bgText: rgba(255, 255, 255, 0.1);
  }

  .faq h2 {
    text-align: center;
  }
  .card-faq {
    width: 90%;
    margin: 50px auto;
    border-radius: 2px;
    background: transparent;
    margin-top: 40px;
  }

  .faq-article {
    position: relative;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
    p {
      padding: 10px 20px;
    }
  }

  .faq-article.selected {
    transform: scale(1.1);
    z-index: 2;
    background: var(--bgText);
  }

  .faq-h3 {
    position: relative;
    background: var(--bgHead);
    padding: 20px 75px 20px 20px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    overflow: hidden;
    transition: background 0.3s;
    margin: 10px 0;
    cursor: pointer;
  }

  .faq-h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .selected .faq-h3 {
    cursor: pointer;
    background: var(--bgHeadHover_active);
    color: var(--bgHead);
    border: none;
  }

  .faq-h3:before,
  .faq-h3:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    margin-right: 30px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
  }

  .faq-h3:before {
    transform: rotate(0deg);
    animation: close-line-one-in 0.8s forwards;
  }

  .selected .faq-h3:before {
    animation: close-line-one-out 0.8s forwards;
    background: #000;
  }

  .faq-h3:after {
    transform: rotate(90deg);
    animation: close-line-two-in 0.8s forwards;
  }

  .selected .faq-h3:after {
    background: #000;
    animation: close-line-two-out 0.8s forwards;
  }

  .content {
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-out 0.4s 0.1s;
  }

  .selected .content {
    transform: translateY(0);
    opacity: 1;
  }

  .faq-p {
    padding: 25px 30px 40px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }

  @keyframes close-line-one-out {
    0%,
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(50px);
    }
    76% {
      transform: translateX(50px) translateY(50px);
    }
    100% {
      transform: rotate(45deg);
    }
  }

  @keyframes close-line-one-in {
    0%,
    20% {
      transform: rotate(45deg);
    }
    60% {
      transform: translateX(50px) translateY(50px) rotate(45deg);
    }
    61% {
      transform: translateX(50px);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes close-line-two-out {
    0%,
    50% {
      transform: rotate(90deg);
    }
    75% {
      transform: translateY(-50px) rotate(90deg);
    }
    76% {
      transform: translateY(-50px) translateX(50px) rotate(90deg);
    }
    100% {
      transform: rotate(135deg);
    }
  }

  @keyframes close-line-two-in {
    0% {
      transform: rotate(135deg);
    }
    50% {
      transform: translateY(-50px) translateX(50px) rotate(135deg);
    }
    51% {
      transform: translateY(-50px) rotate(90deg);
    }
    100% {
      transform: rotate(90deg);
    }
  }

  @media screen and (max-width: 750px) {
    .card-faq {
      width: 90%;
    }
  }


.site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #e5e7eb;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

  .footer-links a:hover {
    color: var(--secondStyleColor);
  }

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }