@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html, body {
  height: 100%;
}

body {
  font-family: "Golos Text", sans-serif;
  font-size: 1rem;
  background-color: #0D0D0D;
  color: #fff;
  line-height: unset;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex: 1 0 auto;
}

.global-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.logo {
  max-width: 120px;
}

.header {
  padding: 1.25rem;
  background-color: #252525;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media (width < 33.125rem) {
  .header__inner {
    flex-direction: column;
    align-items: center;
  }
}
.header__nav {
  display: flex;
  gap: 1.875rem;
}
.header__nav-link {
  font-size: 1.25rem;
}
.header__btn {
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 10px 20px;
  background-color: #FFD900;
  color: #000;
  cursor: pointer;
}

.banner {
  margin: 0 0 2rem 0;
  padding: 7.5rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url("../images/banner.jpg") no-repeat center center/cover;
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: clamp(320px, 100vw - 100px, 900px);
}
.banner__title {
  font-size: clamp(32px, 4vw + 24px, 56px);
  font-weight: 600;
  > span{
    background: linear-gradient(89deg, #FE0 51.52%, #E1DDAC 97.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.banner__subtitle {
  font-size: clamp(1rem, 1.5vw + 0.75rem, 1.25rem);
  font-weight: 500;
  max-width: 430px;
}
.banner__btn {
  display: flex;
  justify-content: center;
  width: fit-content;
  border-radius: 1rem;
  background-color: #FFD900;
  color: #000;
  padding: 12px 50px;
  cursor: pointer;
}
@media (width < 450px){
  .banner__content{
    text-align: center;
    align-items: center;
  }
  .banner__subtitle{
    max-width: none;
  }
  .banner__btn{
    font-size: 14px;
    padding: 12px;
  }
}

.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
  margin: 0 0 2.1875rem 0;
}
.stats__item {
  display: grid;
  grid-template-columns: minmax(0, 5rem) minmax(0, 150px);
  align-items: center;
  padding: 0.9375rem;
  background: linear-gradient(90deg, #1C1C1C 0%, #2D2D2D 100%);
  border-radius: 1.5rem;
}
.stats__content-value {
  font-size: 2.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.stats__content-text {
  opacity: 0.7;
}

.directions {
  margin: 0 0 3.125rem 0;
}
.directions__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 2.1875rem 0 2rem;
}

.directions__advantages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 800px));
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
}
@media (width < 37.5rem) {
  .directions__advantages {
    grid-template-columns: none;
  }
}
.directions__advantages-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(90deg, #1C1C1C 0%, #2D2D2D 100%);
  padding: 0.9375rem;
  border-radius: 1.5rem;
}
.directions__advantages-img {
  max-width: 7.5rem;
}
.directions__advantages-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.directions__advantages-subtitle {
  opacity: 0.8;
}

.analytics {
  margin: 0 0 5rem 0;
}
.analytics__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.375rem 2.8125rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #1C1C1C 0%, #2D2D2D 100%);
  max-width: 41.25rem;
  margin: 2.1875rem auto 0;
}
.analytics__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 19.375rem;
}
.analytics__title {
  font-size: 30px;
  font-weight: 700;
}
.analytics__subtitle {
  opacity: 0.8;
}
.analytics__btn {
  display: flex;
  justify-content: center;
  padding: 0.625rem 0.9375rem;
  background-color: #FFD900;
  color: #000;
  border-radius: 1rem;
  cursor: pointer;
}
.analytics__img{
  max-width: 255px;
}
@media (width < 450px){
  .analytics__content{
    text-align: center;
  }
}

.forecasts {
  position: relative;
  margin: 0 0 2.5rem 0;
}
.forecasts__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  filter: blur(0.1875rem);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.forecasts__item {
  max-width: 25rem;
}
.forecasts__note {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
  box-shadow: 0 0.25rem 2rem 0 #fff;
  background-color: #000;
  padding: 1.5625rem;
  border-radius: 1.5rem;
}
@media (width < 450px){
  .forecasts__note{
    text-align: center;
  }
}
.forecasts__wrapper {
  position: relative;
  margin: 0 0 1.25rem 0;
}
.forecasts__content {
  display: grid;
  grid-template-columns: minmax(0, 4.375rem) auto minmax(0, 4.375rem);
  justify-content: space-between;
  align-items: center;
  background-color: #252525;
  padding: 2.1875rem 1.25rem;
  border-radius: 1.5rem;
}
.forecasts__content-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.forecasts__content-name > img {
  max-width: 2.5rem;
}
.forecasts__content-text {
  opacity: 0.7;
}
.forecasts__game {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  translate: -50% 0;
}
.forecasts__game > svg:nth-child(2) {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  translate: -50% 0;
  width: 2.5rem;
  height: 2.5rem;
}
.forecasts__date {
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  translate: -50% 0;
}
.forecasts__date > span {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  color: #8A8A8E;
}
.forecasts__info {
  font-size: 0.875rem;
  margin: 0 0 1.25rem 0;
}
.forecasts__info-title {
  font-weight: 700;
}
.forecasts__btn {
  background-color: #FFD900;
  color: #000;
  padding: 0.9375rem 0;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.cybersport__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 2rem;
  background: linear-gradient(90deg, #1C1C1C 0%, #2D2D2D 100%);
  gap: 2rem;
  margin: 2.1875rem 0 0 0;
  padding: 2.8125rem 0;
}
.cybersport__text {
  font-size: 27px;
  font-weight: 600;
  max-width: 460px;
}
@media (width < 450px){
  .cybersport__text{
    text-align: center;
    padding: 0 20px;
    max-width: none;
  }
}
.cybersport__item {
  max-width: 18.75rem;
  background-color: #0D0D0D;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cybersport__item-img{
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  overflow: hidden;
}
.cybersport__item-text {
  opacity: 0.8;
  padding: 0.9375rem 1.5625rem 1.25rem;
}

.unsubscribe {
  max-width: 32.1875rem;
  border-radius: 1rem;
  background-color: #252525;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  margin: 6.25rem auto;
  gap: 0.5rem;
}
.unsubscribe__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.unsubscribe__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.unsubscribe__wrapper > label {
  font-size: 0.75rem;
  padding: 0 0 0 0.75rem;
  color: #8A8A8E;
}
.unsubscribe__wrapper > input {
  color: #fff;
  background-color: #0D0D0D;
  border: 0;
  outline: 0;
  border-radius: 0.75rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.75rem;
}
.unsubscribe__btn {
  background-color: #FFD900;
  color: #000;
  padding: 0.9375rem 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 0;
}

.footer {
  flex: 0 0 auto;
  padding: 1.5625rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0 0 2.5rem 0;
  margin: 0 0 2.5rem 0;
}
@media (width < 31.25rem) {
  .footer__inner {
    justify-content: center;
  }
}
.footer__info {
  max-width: 360px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 12px 0;
}
.footer__nav-link{
  color: rgba(255, 255, 255, 0.50);
}
.footer__copyright{
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, background-color 0.3s ease, visibility 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, visibility 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  z-index: 1000;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 32.1875rem;
  border-radius: 1rem;
  background-color: #252525;
  padding: 1.5625rem;
  transform: scale(0.7) translateY(-50px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
  opacity 0.3s ease;
}
.modal__content.active {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.modal__text{
  margin: 0 0 1.25rem 0;
}
.modal__text > a {
  text-decoration: underline;
}
.modal__title.left {
  align-self: flex-start;
}
.modal__subtitle {
  font-size: 0.875rem;
  color: #8A8A8E;
}
.modal__subtitle > a {
  color: #fff;
  text-decoration: underline;
}
.modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.modal__wrapper > label {
  font-size: 0.75rem;
  padding: 0 0 0 0.75rem;
  color: #8A8A8E;
}
.modal__wrapper > input {
  color: #fff;
  background-color: #0D0D0D;
  border: 0;
  outline: 0;
  border-radius: 0.75rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.75rem;
}
.modal__btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FFD900;
  color: #000;
  padding: 0.9375rem 0;
  border-radius: 1rem;
  border: 0;
}
.modal__checkbox {
  display: grid;
  grid-template-columns: minmax(0, 2rem) auto;
  gap: 0.5rem;
  align-self: start;
  font-size: 0.75rem;
  color: #8A8A8E;
  padding-left: 5px;
}

.modal__checkbox a {
  text-decoration: underline;
}

.modal__checkbox > input {
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid #8A8A8E;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0D0D0D;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.modal__checkbox > input::after {
  content: "";
  display: none;
  position: absolute;
  top: 0.375rem;
  width: 0.375rem;
  height: 0.75rem;
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}
.modal__checkbox > input:checked::after {
  display: block;
}
.modal__note {
  text-align: center;
  font-size: 0.625rem;
  color: #8A8A8E;
}/*# sourceMappingURL=style.css.map */


.form_pass_wrapper2 {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.form-button {
  margin: 0 auto;
  max-width: 32.5rem;
}

.form_pass_wrapper2 label {
  padding: 5px;
}

.form_pass_wrapper {
  gap: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_passcode {
  width: 50px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  text-align: center;
  font-weight: 500;
  padding: 11px 15px;
  vertical-align: center;
}

