:root {
  --bg: #0d0f14;
  --bg-2: #11141b;
  --text: #e9edf3;
  --muted: #a7b0c0;
  --primary: #ffd000; /* yellow */
  --danger: #ff4b3e; /* red for "Unlock" */
  --brand: #f3c200; /* accent yellow */
  --card: #171b23;
  --border: #242935;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --max: 1200px;
}

/* Reset / base */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background-color: #0b0c13;
  color: var(--text);
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  z-index: 1000;
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), rgba(17, 20, 27, 0.85));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: gold;
  font-size: 24px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 30% 30%,
    #ffef8a,
    #ffce00 55%,
    #bf9500 100%
  );
  border: 2px solid #2a2f3d;
  box-shadow: var(--shadow);
  color: #0b0e14;
  font-weight: 900;
  font-size: 12px;
}
/* Desktop nav */
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  opacity: 0.95;
  color: #d9e1ef;
  padding: 8px 4px;
  border-radius: 10px;
}
.nav a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}
.nav a:focus-visible {
  outline: 2px solid #6aa7ff;
  outline-offset: 2px;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #111;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 12px;
  white-space: nowrap;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.btn:focus-visible {
  outline: 2px solid #fff1a6;
  outline-offset: 2px;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Burger (mobile) */
.burger {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: var(--card);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger svg {
  width: 22px;
  height: 22px;
}
.mobile-panel {
  display: flex;
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: 0.3s all cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition: 0.3s all cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: 0.3s all cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: 0.3s all cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: 0.3s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.mobile-panel.open {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.m-nav {
  list-style: none;
  padding: 0;
  margin: 6px 0 18px;
  display: grid;
  gap: 10px;
  width: 100%;
}
.m-nav a {
  display: block;
  padding: 12px 10px;
  /* border-radius: 12px; */
  /* background: var(--card); */
  /* border: 1px solid var(--border); */
  width: 100%;
  text-align: center;
}
.m-search {
  margin: 6px 0 14px;
}
.m-cta {
  display: flex;
  gap: 10px;
}

/* Hero */
.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: flex;
  gap: 42px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-coin {
  position: absolute;
  bottom: 10px;
  left: 15%;
  z-index: -1;
  width: 120px;
  animation: coin-move infinite 6s linear;
  -webkit-animation: coin-move infinite 6s linear;
}

@media screen and (max-width: 750px) {
  .hero-coin {
    left: 60%;
    bottom: 0;
  }
}

@keyframes coin-move {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero p.sub {
  color: var(--muted);
  margin: 10px 0 24px;
  max-width: 62ch;
}
.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.k-red {
  color: var(--danger);
}
.k-yellow {
  color: var(--primary);
}
.dot {
  color: var(--primary);
  font-weight: 900;
}

.hero-card img {
  border-radius: 14px;
  width: 1500px;
  height: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-card {
    display: none;
  }
  .search {
    min-width: 200px;
  }
}
@media (max-width: 960px) {
  .nav,
  .search,
  .btn-find {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-grid {
    flex-direction: column;
  }
  .hero {
    padding-top: 42px;
  }
}
/* Small tweaks */
@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: transform 0.12s ease;
  }
  .btn:hover {
    transform: translateY(-1px);
  }
  .nav a {
    transition: opacity 0.12s ease, background 0.12s ease;
  }
  .nav a:hover {
    background: #1a1f29;
    opacity: 1;
  }
}

/* ===== */

/* ===== Top Games ===== */
.games {
  padding: 56px 0 80px;
}
.games-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.games-head h2 {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.games-head .sub {
  color: var(--muted);
}

.games-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.game-card .thumb {
  padding: 22px 22px 0 22px;
}
.game-card .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}
.game-body {
  padding: 18px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-body h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #f9f9f9;
}
.game-body .subtitle {
  color: var(--muted);
}
.game-body hr {
  height: 1px;
  border: 0;
  background: #242936;
  margin: 10px 0 4px;
}
.game-body p {
  color: #cbd3e3;
  margin: 0;
}
.game-body .features {
  margin-top: 4px;
}
.game-body .features span {
  color: #e9edf3;
  font-weight: 700;
}
.game-cta {
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #111;
  font-weight: 900;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Hover lift */
@media (hover: hover) {
  .game-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }
}

/* Back-to-top bubble */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #0f1218;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.to-top:focus-visible {
  outline: 2px solid #fff1a6;
  outline-offset: 2px;
}

/*  */

/* ===== Betting Platform ===== */
.platforms {
  padding: 54px 0 80px;
}
.platforms-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.platforms-head h2 {
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.platforms-head .sub {
  color: var(--muted);
}

.platforms-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

.plat-card {
  background: linear-gradient(180deg, #1a1f2b 0%, rgba(26, 31, 43, 0) 45%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.logo-wrap {
  width: 100%;
  background: #0f1218;
  border-radius: 16px;
  margin-bottom: 4px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.logo-wrap img {
  width: 100%;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  height: 180px;
}

.plat-card h3 {
  margin: 0;
  font-size: 20px;
  color: #f6f8ff;
}
.plat-card .desc {
  margin: 0;
  color: #cdd5e6;
  max-width: 46ch;
}

.plat-cta {
  margin-top: 6px;
  border-radius: 12px;
  padding: 12px 18px;
  width: 180px;
  align-self: center;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #111;
  font-weight: 900;
}

/* hover */
@media (hover: hover) {
  .plat-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .plat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }
}

/* ==== */

/* ===== Payment Services ===== */
.payments {
  padding: 48px 0 70px;
}
.payments-head {
  margin-bottom: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.payments-head h2 {
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.payments-head .sub {
  color: var(--muted);
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.pay-grid {
  display: grid;
  gap: 22px;
}

/* 12-col desktop layout */
@media (min-width: 1120px) {
  .pay-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .pay-card {
    grid-column: span 4;
  }
  .pay-card.wide {
    grid-column: span 6;
  }
}
/* tablets: 2 columns */
@media (min-width: 640px) and (max-width: 1119.98px) {
  .pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pay-card,
  .pay-card.wide {
    grid-column: auto;
  }
}
/* mobile: 1 column */
@media (max-width: 639.98px) {
  .pay-grid {
    grid-template-columns: 1fr;
  }
}

.pay-card {
  background: linear-gradient(180deg, #1a1f2b 0%, rgba(26, 31, 43, 0) 55%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  color: #e9edf3;
  box-shadow: var(--shadow);
}
.pay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pay-ico {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: var(--primary);
  background: radial-gradient(
    120% 120% at 30% 20%,
    #ffe77a 0%,
    #ffc800 55%,
    #b38700 100%
  );
  /* dark ring */
  box-shadow: inset 0 0 0 12px #0f131b;
}
.pay-ico svg {
  width: 34px;
  height: 34px;
  color: #0f131b;
}
.pay-ico svg circle {
  fill: #000;
  opacity: 0.35;
} /* soft inner bg */

.pay-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--text);
  opacity: 0.7;
}
.pay-arrow svg {
  width: 22px;
  height: 22px;
}

.pay-card h3 {
  margin: 6px 0 6px;
  font-size: 20px;
}
.pay-card p {
  margin: 0;
  color: #cbd3e3;
  max-width: 70ch;
}

/* hover */
@media (hover: hover) {
  .pay-card {
    transition: transform 0.16s ease, box-shadow 0.16s ease,
      border-color 0.16s ease;
  }
  .pay-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
    border-color: #2e3546;
  }
}

/* === */
/* ===== Bonus CTA ===== */
.bonus {
  padding: 156px 0;
}

.bonus h2 {
  text-transform: uppercase;
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  padding: 32px;
  border-radius: 12px;
  position: relative;
  padding: 150px 40px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.bonus-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.bonus-text {
  color: var(--text);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 800px) {
  .bonus-text a {
    display: flex;
    justify-content: center;
  }
  .bonus-grid {
    padding: 30px 0;
  }
}
.bonus-text h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
}
.bonus-text p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}
.bonus-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #111;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.bonus-btn:hover {
  transform: translateY(-2px);
}
.bonus-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* responsive */
@media (max-width: 900px) {
  .bonus-grid {
    text-align: center;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .bonus-text {
    margin: 0 auto;
  }
  .bonus-image {
    margin: 0 auto;
    max-width: 420px;
    opacity: 0.3;
  }
}

/* == */

/* ===== Testimonials Marquee ===== */
.testimonials {
  padding: 56px 0;
}
.t-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}
.t-head h2 {
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.t-head .sub {
  color: var(--muted);
}

/* Rows */
.t-row {
  --gap: 22px;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  padding-block: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.t-track {
  display: flex;
  gap: var(--gap);
  width: max-content; /* allow continuous line */
  will-change: transform;
  animation: marquee-l 36s linear infinite;
}
.t-row-top .t-track {
  animation: marquee-r 36s linear infinite;
} /* вправо */
.t-row-bot .t-track {
  animation: marquee-l 40s linear infinite;
} /* влево, чуть медленнее */

/* Pause on hover/focus within */
.t-row:hover .t-track,
.t-row:focus-within .t-track {
  animation-play-state: paused;
}

/* Cards */
.t-card {
  width: min(420px, 86vw);
  background: linear-gradient(180deg, #1a1f2b 0%, rgba(26, 31, 43, 0) 55%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  color: var(--text);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}
.t-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.t-user img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #24293a;
}
.t-user strong {
  display: block;
  line-height: 1.1;
}
.t-user span {
  display: block;
  color: #b9c2d6;
  font-size: 14px;
}
.t-card p {
  color: #cbd3e3;
  margin: 0;
}

/* Keyframes */
@keyframes marquee-l {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--gap) / 2));
  } /* move by half because we duplicated items */
}
@keyframes marquee-r {
  from {
    transform: translateX(calc(-50% - var(--gap) / 2));
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive spacing */
@media (max-width: 680px) {
  .t-card {
    width: min(340px, 90vw);
  }
  .t-row {
    --gap: 16px;
  }
}

/* === */

/* ===== Latest Casino Insights ===== */
.insights {
  padding: 56px 0;
}
.insights-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}
.insights-head h2 {
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.insights-head .sub {
  color: var(--muted);
}

.insights-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  background: linear-gradient(180deg, #1a1f2b 0%, rgba(26, 31, 43, 0) 60%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  color: var(--text);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.insight-img {
  margin-bottom: 18px;
}
.insight-img img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
}

.insight-category {
  background: var(--primary);
  color: #111;
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.insight-date {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.insight-body {
  flex-grow: 1;
}

.insight-body h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 10px 0 12px;
}

.insight-body p {
  color: var(--muted);
  margin: 0 0 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

footer span {
  font-size: 12px;
}

.insight-btn {
  margin-top: 10px;
  background: linear-gradient(180deg, #ffd84d, #ffc800);
  color: #111;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.insight-btn:hover {
  transform: translateY(-2px);
}

/* == */

/* ===== Footer ===== */
.footer {
  background: var(--bg-2);
  padding: 40px 0 20px;
  color: var(--text);
  p {
    text-align: center;
    max-width: 500px;
  }
}

.footer .logo {
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: gold;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  a {
    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;
  }
}

.footer-social a:hover {
  color: gold;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.copyrigth {
  text-align: center;
}

.intoLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;

  span {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
  }
  a {
    transition: 0.3s all linear;
    transform-origin: left;
  }
  a:hover {
    color: gold;
  }
}
@media screen and (max-width: 750px) {
  .intoLinks {
    flex-direction: column;
    span {
      display: none;
    }
  }
  .hero-coin {
    display: none;
  }
}

.stopScroll {
  overflow: hidden;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  a {
    width: 300px;
    margin-top: 28px;
    text-align: center;
  }
}

/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: gold;
}

::-webkit-scrollbar-thumb:active {
  background-color: gold;
}

.partners a {
  display: flex;
  justify-content: center;
}
.partners h2 {
  text-align: center;
}
