/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* Inter Variable */
@font-face {
  font-family: 'Roboto';
  src: url('/fontsSLKS/roboto-variablefontwdthwghtSLKS.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* header */
.headerSLKS {
  background: #000233;
  border-bottom: 0.5px solid #ffc1f8;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding: 12px 24px;
  position: relative;
  z-index: 100;
}

.header__containerSLKS {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__leftSLKS {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logoSLKS {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-iconSLKS {
  width: 40px;
  height: auto;
}

.logo-textSLKS {
  height: 20px;
}

.navSLKS {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navSLKS a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.3s;
}

.navSLKS a:hover {
  opacity: 0.7;
}

.header__rightSLKS {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ageSLKS {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.loginSLKS,
.registerSLKS {
  border-radius: 100px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.loginSLKS {
  border: 1px solid #ffc1f8;
  background: transparent;
  color: #fff;
}

.registerSLKS {
  background: #ffc1f8;
  color: #000233;
  border: 1px solid #ffc1f8;
}

.loginSLKS:hover {
  background: #ffc1f8;
  color: #000233;
}

.registerSLKS:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #ffc1f8;
}

.burgerSLKS {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.burgerSLKS span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.burgerSLKS.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burgerSLKS.active span:nth-child(2) {
  opacity: 0;
}

.burgerSLKS.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menuSLKS {
  position: fixed;
  top: 59px;
  left: 0;
  width: 100%;
  background: #000233;
  border-top: 0.5px solid #ffc1f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: 0.35s ease;
  z-index: 1000;
  pointer-events: none;
}

.mobile-menuSLKS a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.mobile-menuSLKS.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-bottomSLKS {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.mobile-bottomSLKS .ageSLKS {
  font-size: 22px;
}

.mobile-bottomSLKS .loginSLKS,
.mobile-bottomSLKS .registerSLKS {
  width: 160px;
  text-align: center;
}

@media (min-width: 1025px) {
  .burgerSLKS {
    display: none !important;
  }
  .header__leftSLKS {
    justify-content: flex-start;
    width: auto;
  }
}

@media (max-width: 1100px) {
  .navSLKS,
  .header__rightSLKS {
    display: none !important;
  }
  .header__containerSLKS {
    justify-content: space-between;
  }
  .header__leftSLKS {
    width: 100%;
    justify-content: space-between;
  }
  .logo-iconSLKS {
    width: 38px;
  }
  .logo-textSLKS {
    height: 18px;
  }
}

@media (max-width: 768px) {
  .logo-iconSLKS {
    width: 34px;
  }
  .logo-textSLKS {
    height: 17px;
  }
}
/* header popup */

/* POPUP OVERLAY */
.popupSLKS {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* POPUP CONTENT */
.popup__contentSLKS {
  background: #0b0e53;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  box-shadow: 0 0 20px rgba(93, 101, 255, 0.3);
}

/* CLOSE BUTTON */
.popup__closeSLKS {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* TITLE */
.popup__titleSLKS {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 28px;
}

/* FORM */
.popup__formSLKS {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup__formSLKS input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  background: #fff;
  color: #000;
}

.popup__formSLKS button {
  margin-top: 4px;
  padding: 12px 0;
  border-radius: 50px;
  border: 2px solid #64fff4;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.popup__formSLKS button:hover {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  color: #000;
}

/* SWITCH TEXT */
.popup__switchSLKS {
  margin-top: 18px;
  font-size: 14px;
  color: #b5b5ff;
}

.popup__switchSLKS span {
  color: #64fff4;
  cursor: pointer;
  font-weight: 700;
}

/* SUCCESS MESSAGE */
.popup__successSLKS {
  display: none;
  opacity: 0;
  color: #00ff91;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.4s ease;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
  .popup__contentSLKS {
    padding: 32px 20px;
  }
}
/* ===== HERO ===== */
.heroSLKS {
  background: url('/imagesSLKS/imgSLKS/herobg-gradientSLKS.webp') lightgray 100%
    40% / cover no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__containerSLKS {
  max-width: 1240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 24px;
  flex-wrap: wrap;
}

.hero__leftSLKS {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 480px;
}

.hero__titleSLKS {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 7.9px rgba(157, 255, 255, 0.25);
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
}

.hero__textSLKS {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  max-width: 520px;
}

/* TIMER */
.timerSLKS {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 10px;
  background: rgba(106, 135, 251, 0.65);
  backdrop-filter: blur(1.55px);
  padding: 22px 28px;
  width: 100%;
}

.timer__itemSLKS {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 100px;
  gap: 8px;
  min-width: 90px;
}

.timer__labelSLKS {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.timer__numSLKS {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 72px;
  border-radius: 13px;
  border: 1px solid #9c9c9c;
  background: #1b4b92;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

/* BUTTON */
.hero__btnSLKS {
  border-radius: 100px;
  background: linear-gradient(90deg, #4cf2fe -5.09%, #febefa 99.79%);
  color: #000233;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  align-self: start;
  width: 100%;
}

.hero__btnSLKS:hover {
  opacity: 0.9;
}

/* ===== VIDEO BLOCK ===== */
.hero__videoSLKS {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 484px;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 480px;
}
.hero__videoSLKS {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 480px;
}

/* === Desktop === */
.hero__videoSLKS video {
  width: 540px;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* === Tablet (768px–1099px) === */
@media (max-width: 1099px) and (min-width: 768px) {
  .hero__videoSLKS video {
    width: 460px; /* чуть меньше, чтобы не вылезало */
    height: 410px; /* сохраняем пропорции */
  }
}

/* === Mobile (до 767px) === */
@media (max-width: 767px) {
  .hero__videoSLKS {
    justify-content: center;
    margin: 0 auto;
  }

  .hero__videoSLKS video {
    width: 285px;
    height: 377px;
    border-radius: 10px;
    object-fit: cover;
  }
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .heroSLKS {
    min-height: unset;
  }

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

  .hero__leftSLKS {
    align-items: center;
    width: 100%;
  }

  .hero__titleSLKS {
    font-size: 42px;
  }

  .hero__textSLKS {
    font-size: 15px;
    text-align: center;
  }

  .timerSLKS {
    justify-content: center;
    gap: 16px;
    max-width: 100%;
  }

  .timer__labelSLKS {
    font-size: 14px;
  }

  .timer__numSLKS {
    height: 68px;
    font-size: 32px;
  }

  .hero__btnSLKS {
    align-self: center;
    width: 100%;
    max-width: 520px;
  }

  /* VIDEO intermediate — адаптивно уменьшаем */
  .hero__videoSLKS {
    max-width: 440px;
    height: 400px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .heroSLKS {
    background: url('/imagesSLKS/imgSLKS/hero-bg-mb-gradientSLKS.webp')
      lightgray 50% / cover no-repeat;
    padding: 32px 0;
  }

  .hero__containerSLKS {
    gap: 20px;
    padding: 0 16px;
  }

  .hero__titleSLKS {
    font-size: 38px;
    text-align: center;
  }

  .hero__textSLKS {
    font-size: 15px;
    text-align: center;
    max-width: unset;
  }

  .timerSLKS {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 12px;
    width: 100%;
    max-width: unset;
  }

  .timer__itemSLKS {
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .timer__labelSLKS {
    font-size: 12px;
    line-height: 18px;
  }

  .timer__numSLKS {
    width: 100%;
    height: 56px;
    border-radius: 13px;
    border: 1px solid #9c9c9c;
    background: #1b4b92;
    font-size: 28px;
    line-height: 26px;
  }

  .hero__btnSLKS {
    width: 100%;
    max-width: none;
    padding: 14px 20px;
  }

  /* MOBILE VIDEO размер */
  .hero__videoSLKS {
    max-width: 328px;
    height: 377px;
  }
}

/* choose */

.chooseSLKS {
  background: #000233;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.choose__containerSLKS {
  max-width: 1240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.choose__title-boxSLKS {
  border-radius: 10px;
  background: #0b0e53;
  padding: 12px 40px;
}

.choose__titleSLKS {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  text-shadow: 0 0 7.9px rgba(157, 255, 255, 0.25);
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
}

.choose__subtitleSLKS {
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  max-width: 700px;
}

.choose__cardsSLKS {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
}

.choose__cardSLKS {
  border-radius: 10px;
  border: 1px solid #353ba8;
  background: #0b0e53;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
}

.choose__cardSLKS:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 16px rgba(93, 101, 255, 0.3);
  border-radius: 10px;
  border: 1px solid #5d65ff;
  background: radial-gradient(
    54.2% 54.21% at 53.12% 14.65%,
    #181eb9 0%,
    #0b0e53 100%
  );
}

.choose__iconSLKS {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #1e216d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose__iconSLKS img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.choose__card-titleSLKS {
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
}

.choose__card-textSLKS {
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

/* Tablet */
@media (max-width: 1024px) {
  .chooseSLKS {
    padding: 80px 20px;
  }
  .choose__titleSLKS {
    font-size: 42px;
  }
  .choose__cardsSLKS {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .choose__cardSLKS {
    padding: 32px 18px;
  }
  .choose__iconSLKS {
    width: 56px;
    height: 56px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .chooseSLKS {
    padding: 60px 16px;
  }
  .choose__title-boxSLKS {
    padding: 10px 24px;
  }
  .choose__titleSLKS {
    font-size: 36px;
  }
  .choose__subtitleSLKS {
    font-size: 14px;
    max-width: 90%;
  }
  .choose__cardsSLKS {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .choose__cardSLKS {
    padding: 28px 16px;
  }
  .choose__iconSLKS {
    width: 54px;
    height: 54px;
  }
  .choose__card-titleSLKS {
    font-size: 18px;
  }
  .choose__card-textSLKS {
    font-size: 14px;
  }
}

/* draws */
.drawsSLKS {
  background: #000233;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.draws__containerSLKS {
  max-width: 1240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.draws__title-boxSLKS {
  border-radius: 10px;
  background: #0b0e53;
  padding: 12px 40px;
}

.draws__titleSLKS {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  text-shadow: 0 0 7.9px rgba(157, 255, 255, 0.25);
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
}

.draws__subtitleSLKS {
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  max-width: 780px;
}

.draws__cardsSLKS {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.draws__cardSLKS {
  border-radius: 10px;
  background: #040a48;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 48px 20px 20px;
  transition: 0.3s ease;
  height: 100%;
  min-height: 316px;
}

.draws__cardSLKS:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 16px rgba(17, 183, 225, 0.3);
}

.draws__logoSLKS {
  width: 220px;
  max-width: 100%;
  height: 130px;
  object-fit: contain;
  display: block;
}

.draws__card-titleSLKS {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-top: 16px;
}

.draws__card-textSLKS {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  max-width: 320px;
  margin-bottom: 24px;
}

.draws__btnSLKS {
  border-radius: 100px;
  border: 2px solid #11b7e1;
  background: transparent;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 48px;
  cursor: pointer;
  transition: 0.3s ease;
}

.draws__btnSLKS:hover {
  border-radius: 100px;
  border: 2px solid #11b7e1;
  background: #11b7e1;
  box-shadow: 0 0 23.6px 0 #11b7e1;
}

/* Tablet */
@media (max-width: 1024px) {
  .drawsSLKS {
    padding: 80px 20px;
  }
  .draws__titleSLKS {
    font-size: 42px;
  }
  .draws__cardsSLKS {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .draws__cardSLKS {
    min-height: 365px;
  }
  .draws__logoSLKS {
    height: 110px;
    width: 200px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .drawsSLKS {
    padding: 60px 16px;
  }
  .draws__titleSLKS {
    font-size: 36px;
  }
  .draws__cardsSLKS {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .draws__cardSLKS {
    min-height: 300px;
    padding: 40px 16px;
  }
  .draws__logoSLKS {
    width: 180px;
    height: 100px;
  }
  .draws__btnSLKS {
    width: 80%;
    max-width: 280px;
  }
}

/* disclaimer */

.disclaimerSLKS {
  background: #000233;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.disclaimer__boxSLKS {
  border-radius: 10px;
  background: #0b0e53;
  padding: 60px 40px;
  text-align: center;
}

.disclaimer__titleSLKS {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-align: center;
  text-shadow: 0 0 7.9px rgba(255, 157, 157, 0.25);
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 32px;
}

.disclaimer__textSLKS {
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}

.disclaimer__linkSLKS {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  transition: 0.3s ease;
}

.disclaimer__linkSLKS:hover {
  color: #ffb8f8;
}

/* Tablet */
@media (max-width: 1024px) {
  .disclaimer__boxSLKS {
    padding: 50px 30px;
  }
  .disclaimer__titleSLKS {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .disclaimerSLKS {
    padding: 80px 16px;
  }

  .disclaimer__boxSLKS {
    padding: 40px 20px;
  }

  .disclaimer__titleSLKS {
    font-size: 36px;
  }

  .disclaimer__textSLKS {
    font-size: 14px;
  }

  .disclaimer__linkSLKS {
    font-size: 14px;
  }
}

/* footer */

.footerSLKS {
  border-top: 0.5px solid #ffc1f8;
  background: #000233;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.footer__containerSLKS {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.footer__grid-topSLKS {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer__brandSLKS .footer__logoSLKS {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__logo-iconSLKS {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer__logo-textSLKS {
  height: 22px;
  object-fit: contain;
}

.footer__descSLKS {
  font-size: 14px;
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.95;
}

.footer__col-titleSLKS {
  color: #11b7e1;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 12px;
}

.footer__listSLKS {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__listSLKS a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer__listSLKS a:hover {
  text-decoration: underline;
}

.footer__reg-boxSLKS {
  margin: 32px 0;
  border-radius: 16px;
  background: #0b0e53;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
}

.footer__reg-titleSLKS {
  color: #11b7e1;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.footer__reg-textSLKS {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  opacity: 0.95;
}

.footer__grid-midSLKS {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.footer__noteSLKS .footer__pSLKS {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer__disclaimerSLKS {
  margin: 36px 0 20px;
  text-align: center;
}

.footer__disclaimerSLKS .footer__pSLKS {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 820px;
  margin: 10px auto 0;
}

.footer__trustSLKS {
  margin: 28px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.footer__trustSLKS img {
  height: 36px;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer__copySLKS {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 18px;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer__grid-topSLKS {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer__brandSLKS {
    grid-column: 1 / -1;
  }
  .footer__reg-boxSLKS {
    padding: 24px 18px;
  }
  .footer__grid-midSLKS {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer__containerSLKS {
    padding: 32px 16px 48px;
  }
  .footer__grid-topSLKS {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__logo-iconSLKS {
    width: 40px;
    height: 40px;
  }
  .footer__logo-textSLKS {
    height: 20px;
  }
  .footer__descSLKS {
    max-width: none;
  }
  .footer__reg-boxSLKS {
    margin: 20px 0;
  }
  .footer__trustSLKS {
    gap: 22px;
  }
  .footer__trustSLKS img {
    height: 30px;
  }
}
.contactSLKS {
  background: #000233;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.contact__containerSLKS {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact__titleSLKS {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-radius: 100px;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact__subtitleSLKS {
  font-size: 15px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

/* GRID */
.contact__gridSLKS {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

/* FORM */
.contact__formSLKS {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact__rowSLKS {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__fieldSLKS label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
}

.contact__fieldSLKS input,
.contact__fieldSLKS textarea {
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  background: #e4e4e4;
  color: #000;
  resize: none;
}

/* BUTTON */
.contact__btnSLKS {
  margin-top: 10px;
  width: 100%;
  padding: 12px 0;
  border-radius: 100px;
  border: 2px solid #11b7e1;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.contact__btnSLKS:hover {
  background: #11b7e1;
  color: #000;
}

/* SUCCESS MESSAGE */
.contact__successSLKS {
  display: none;
  opacity: 0;
  text-align: center;
  margin-top: 15px;
  color: #00ff91;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.4s ease;
}

/* INFO BOX */
.contact__infoSLKS {
  background: #0b0e53;
  border-radius: 10px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.contact__info-itemSLKS {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.contact__iconSLKS {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #11b7e1;
}

.contact__iconSLKS img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1024px) {
  .contact__gridSLKS {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__infoSLKS {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .contactSLKS {
    padding: 70px 16px;
  }
  .contact__titleSLKS {
    font-size: 38px;
  }
  .contact__subtitleSLKS {
    font-size: 14px;
  }
  .contact__gridSLKS {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__rowSLKS {
    grid-template-columns: 1fr;
  }
  .contact__infoSLKS {
    gap: 20px;
    padding: 24px;
  }
  .contact__info-itemSLKS {
    align-items: flex-start;
  }
  .contact__iconSLKS {
    width: 44px;
    height: 44px;
  }
}

/* faq */

/* FAQ SECTION */
.faqSLKS {
  background: #000233;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.faq__containerSLKS {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD */
.faq__itemSLKS {
  background: #0b0e53;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 30px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* QUESTION */
.faq__questionSLKS {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq__iconSLKS {
  color: #e53935; /* 🔥 насыщенный красный */
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  top: -1px;
}

/* ANSWER */
.faq__answerSLKS {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 28px;
}

/* HOVER (мягкий эффект как в макете) */
.faq__itemSLKS:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(11, 14, 83, 0.95);
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 600px) {
  .faqSLKS {
    padding: 70px 16px;
  }
  .faq__questionSLKS {
    font-size: 16px;
  }
  .faq__answerSLKS {
    font-size: 14px;
    padding-left: 24px;
  }
}

/* terms */

/* TERMS PAGE */
.terms {
  background: #000233;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
}
.title-box {
  border-radius: 10px;
  background: #0b0e53;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  margin: 0 0 40px 0;
}

/* градиентный текст */
.title-box h1 {
  background: linear-gradient(90deg, #64fff4 0%, #ffb8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
  text-shadow: 0 0 7.9px rgba(157, 255, 255, 0.25);
  text-align: center;
  margin: 0;
}

/* адаптив */
@media (max-width: 768px) {
  .title-box {
    display: flex;
    margin: 0 auto 32px;
    padding: 16px 24px;
    text-align: center;
  }

  .title-box h1 {
    font-size: 34px;
    line-height: 1.3;
  }
}

/* H2 */
.terms h2 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: normal;
  margin: 30px 0 15px;
}

/* TEXT */
.terms p,
.terms ul,
.terms li {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* LIST */
.terms ul {
  padding-left: 20px;
  list-style-type: disc;
}

.terms li {
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 600px) {
  .terms {
    padding: 70px 16px;
  }

  .terms h1 {
    font-size: 34px;
    text-align: center;
  }

  .terms p,
  .terms li {
    font-size: 14px;
  }
}
