:root {
        --font-sans: "Manrope", system-ui, -apple-system, Segoe UI,
          Roboto, Inter, Arial, sans-serif;
      }

/* ---- next <style> block ---- */

/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }

/* ---- next <style> block ---- */

.hero {
    position: relative;
    padding: 140px 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.45);
    z-index: -1;
  }

  /* Layout */
  .hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
  }

  /* Left image */
  .hero-img {
    max-width: 520px;
    border-radius: var(--borderRadius);
    object-fit: contain;
    max-height: 500px;
  }

  /* Right text */
  .hero-content {
    width: 50%;
    max-width: 560px;
  }

  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textColor1);
    margin-bottom: 30px;
  }

  .hero-content a {
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hero-content a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-flex {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .hero-img {
      width: 80%;
    }

    .hero-content {
      width: 100%;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 16px;
    }
  }

  @media (max-width: 600px) {
    .hero {
      padding: 110px 0;
    }

    .hero-img {
      display: none;
    }

    .hero-content h1 {
      font-size: 30px;
    }
  }

/* ---- next <style> block ---- */

:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    white-space: nowrap;
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    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;
    border: 1px solid var(--secondStyleColor);
    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(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .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;
    }
  }

/* ---- next <style> block ---- */

.plansWrapper {
    display: flex;
    flex-direction: column;
  }
  .planshead {
    margin-bottom: 45px;
  }

  .priceBitton {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border: none;
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    background-color: var(--secondStyleColor);
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }

  /* ===== Новая интересная секция цен ===== */

  .pricing-alt {
    padding: 0 20px 40px;
    color: var(--textColor1);
  }

  .pricing-alt__title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
  }

  .pricing-alt__subtitle {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.7;
  }

  .pricing-alt__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }

  .plan {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 22px 42px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 2px solid var(--secondStyleColor);
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
    &&::after {
      content: "";
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 90px;
      height: 90px;
      background-color: transparent;
      border: 2px solid var(--secondStyleColor);
      border-radius: 50%;
    }
  }

  .plan--main {
    padding: 26px 26px 28px;
    background-color: var(--secondStyleColor);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    color: var(--textColor2);
    .plan__dot {
      background: var(--textColor2);
    }
  }

  .plan__badge {
    position: absolute;
    top: 14px;
    right: 16px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(12, 5, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .plan__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }

  .plan__name {
    font-size: 20px;
    font-weight: 600;
  }

  .plan__desc {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.8;
  }

  .plan__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .plan__price {
    font-size: 30px;
    font-weight: 700;
  }

  .plan__period {
    font-size: 12px;
    opacity: 0.8;
  }

  .plan__features {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .plan__dot {
    margin-top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
  }

  .plan__button {
    border-radius: 999px;
    border: none;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: transform 0.12s ease, box-shadow 0.12s ease,
      background 0.12s ease, opacity 0.12s ease;
  }

  .plan__button--main {
    background: #0b0517;
    color: #f5e9ff;
    box-shadow: 0 12px 30px rgba(5, 1, 15, 0.9);
  }

  .plan__button--main:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(5, 1, 15, 1);
  }

  .plan__button--ghost {
    background: transparent;
    color: #ffe2ff;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .plan__button--ghost:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .plan__button:not(.plan__button--main):not(.plan__button--ghost) {
    background: rgba(5, 1, 15, 0.9);
    color: #ffffff;
  }

  .plan__button:not(.plan__button--main):not(.plan__button--ghost):hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
  }

  .plan__note {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.85;
  }

  /* Адаптив */

  @media (max-width: 900px) {
    .planshead {
      margin-bottom: 32px;
    }
    .pricing-alt__grid {
      grid-template-columns: 1fr;
    }

    .plan--main {
      grid-row: auto;
    }
  }

/* ---- next <style> block ---- */

/* partners */
  .partners-sec {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--secondStyleColor);
    border-bottom: 2px solid var(--secondStyleColor);
  }
  .partners-sec > container {
    display: flex;
    flex-direction: column;
  }
  h2 {
    font-size: 40px;
  }
  .partnershead {
    margin-bottom: 100px;
    h2 {
      color: var(--textColor1);
      text-align: center;
    }
    p {
      color: var(--textColor1);
      text-align: center;
      text-wrap: balance;
    }
  }
  .partnersfon {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 50% 20%;
    z-index: -1;
    filter: blur(5px);
    opacity: 0.2;
  }

  .logosWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    && a {
      transition: 0.2s all linear;
    }
    && a:hover {
      transform: scale(105%);
    }
  }

  @media (max-width: 800px) {
    .partnershead {
      margin-bottom: 30px;
    }
    .logosWrap {
      flex-direction: column;
      gap: 20px;
      img {
        width: 200px;
      }
    }
  }

/* ---- next <style> block ---- */

.featuresSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .featuresWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

  .featuresEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .featuresTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

  .featuresSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .featuresGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featureCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-4px);
  }

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .featureIcon i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .featuresGrid {
      grid-template-columns: 1fr;
    }
  }

/* ---- next <style> block ---- */

/* ===== HOW IT WORKS SECTION ===== */

  .howSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .howWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .howHeader {
    max-width: 760px;
    margin: 0 auto 45px auto;
    text-align: center;
  }

  .howEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .howTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

  .howSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Steps */
  .howSteps {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .howStepItem {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 20px 22px 20px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: 0.2s ease;
  }

  .howStepItem::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    transition: 0.25s ease;
    pointer-events: none;
  }

  .howStepItem:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .howStepItem:hover::before {
    opacity: 1;
  }

  /* Badge + text */
  .howStepBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.12);
    border: 1px solid rgba(2, 255, 57, 0.6);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  .howStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .howStepText {
    font-size: 14px;
    line-height: 1.6;
    color: #d5d5d5;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .howSteps {
      grid-template-columns: 1fr;
    }

    .howStepItem {
      padding: 22px 18px;
    }
  }

/* ---- next <style> block ---- */

.panels {
    display: flex;
    width: 100%;
    /* min-width: 80vw; */
  }

  .galeryhead {
    margin-bottom: 45px;
    color: var(--textColor1);
  }

  .panel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 5%;
    position: relative;
    height: 500px;
    margin: 0 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    position: relative;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      position: absolute;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
      user-select: none;
    }
  }

  .panel.active {
    flex: 5;
    opacity: 1;
  }

  .panel.active h1 {
    opacity: 1;
    right: 0;
    filter: blur(0);
    transition: all 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6);
    transition-delay: 200ms;
  }

  @media (max-width: 800px) {
    .galeryhead {
      margin-bottom: 30px;
    }
    .panels {
      flex-direction: column;
    }

    .panel {
      width: 100%;
      height: 220px;
      flex: 0 0 auto;
      margin: 0 0 10px;
      opacity: 1;
    }
  }

/* ---- next <style> block ---- */

.about-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .models__cards_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    color: var(--textColor1);
    h3,
    p {
      padding-left: 10px;
      color: var(--textColor1);
    }
    img {
      border-radius: var(--borderRadius);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }
  }

  @media (max-width: 800px) {
    .models__cards_container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .card {
      width: 100%;
      height: fit-content;

      img {
        height: 300px;
      }
    }
  }

/* ---- next <style> block ---- */

.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;
    }
  }

/* ---- next <style> block ---- */

/* ===== TESTIMONIALS SECTION STARS (VARIANT 3) ===== */

  .testimonialsSection-stars {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .testimonialsStarsWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .testimonialsStarsHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .testimonialsEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .testimonialsTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .testimonialsSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .testimonialsStarsGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  /* Card base */
  .testimonialStarCard {
    position: relative;
    background: #262626;
    border-radius: var(--borderRadius);
    padding: 24px 22px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.2s ease;
    overflow: hidden;
  }

  .testimonialStarCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .testimonialStarCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .testimonialStarCard:hover::before {
    opacity: 1;
  }

  /* Highlighted main card */
  .testimonialStarCard--highlight {
    grid-row: span 2;
  }

  /* Stars row */
  .testimonialStarsRow {
    display: flex;
    gap: 4px;
    font-size: 14px;
  }

  .testimonialStarsRow i {
    color: var(--secondStyleColor);
  }

  /* Text + meta */
  .testimonialStarText {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  .testimonialStarMeta {
    margin-top: 4px;
  }

  .testimonialStarName {
    font-size: 15px;
    font-weight: 600;
  }

  .testimonialStarRole {
    font-size: 13px;
    color: #b2b2b2;
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .testimonialsStarsGrid {
      grid-template-columns: 1fr;
    }

    .testimonialStarCard--highlight {
      grid-row: auto;
    }
  }

/* ---- next <style> block ---- */

/* ===== Najczęściej zadawane pytania SECTION ===== */

  .faqSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .faqWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 45px auto;
    text-align: center;
  }

  .faqEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* List */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Item */
  .faqItem {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 22px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .faqItem:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .faqItem {
      padding: 20px 18px;
    }
  }

/* ---- next <style> block ---- */

.site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }