@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-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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;
  }
}
:root {
  --color-primary: #031838;
  --color-primary-light: #11366b;
  --color-primary-dark: #031329;
  --text: #fff;
  --orange-gradient: linear-gradient(0deg,#e73d00,#ffbf00);
  --font: "Inter", sans-serif;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

body {
  background: var(--color-primary);
  color: var(--text);
  font-family: var(--font);
  line-height: normal;
  font-size: 1rem;
}
@media (width <= 63.99875rem) {
  body {
    font-size: 0.875rem;
  }
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.5rem;
}
@media (width <= 90.06125rem) {
  h1 {
    font-size: 1.875rem;
  }
}
@media (width <= 63.99875rem) {
  h1 {
    font-size: 1.5625rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (width <= 63.99875rem) {
  h2 {
    font-size: 1.25rem;
  }
}

p {
  hyphens: auto;
}

ul, ol {
  margin: 0;
  padding: 0 0 0 20px;
  margin-bottom: 1.25rem;
}

a {
  color: var(--text);
}
a:visited {
  color: inherit;
}

.container {
  max-width: 90rem;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (width <= 90.06125rem) {
  .container {
    max-width: 90%;
  }
}

.btn {
  color: #FFF;
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--color-primary-light);
  border-radius: 0.3125rem;
  font-size: 0.875rem;
}
.btn.login {
  background: var(--orange-gradient);
}
.btn.login:hover {
  background: var(--orange-gradient);
  filter: saturate(0.6);
  transition: 0.2s ease;
}
.btn:hover {
  background: var(--color-primary-dark);
  transition: 0.5s ease;
}

section {
  padding: 3.125rem 0;
}
@media (width <= 63.99875rem) {
  section {
    padding: 1.875rem 0;
  }
}
@media (width <= 47.99875rem) {
  section {
    padding: 1.25rem 0;
  }
}

.play-onlywin-header a.logo-play {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
.play-onlywin-header a.logo-play span {
  display: table;
  width: 1px;
  height: 30px;
  background: #FFF;
}
.play-onlywin-header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 90%;
}
.play-onlywin-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.play-onlywin-header__bottom {
  min-height: calc(70dvh - 77px);
  display: flex;
  width: 100%;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .play-onlywin-header__bottom {
    height: calc(100svh - 77px - env(safe-area-inset-bottom));
  }
}
.play-onlywin-header__bottom h1 {
  margin: 0px;
  text-align: center;
  margin-bottom: 3.5rem;
}
.play-onlywin-header__bottom .demogame {
  display: grid;
  justify-items: center;
  max-width: 70%;
  gap: 1.25rem;
  margin: 0 auto;
}
.play-onlywin-header__bottom .demogame img {
  aspect-ratio: 6/7;
  max-width: 80%;
  border-radius: 1rem;
  object-fit: cover;
}
@media (width <= 63.99875rem) {
  .play-onlywin-header__bottom .demogame img {
    max-width: 100%;
  }
}
.play-onlywin-header__bottom .demogame .play-game {
  background: var(--orange-gradient);
  width: 100%;
  max-width: 35%;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}
@media (width <= 63.99875rem) {
  .play-onlywin-header__bottom .demogame .play-game {
    max-width: 100%;
  }
}

.banner {
  text-decoration: none;
}
.banner h2 {
  margin-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .banner h2 {
    text-align: center;
  }
}
.banner__card {
  background: linear-gradient(85deg, #240071 0%, #2D34C4 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 1rem;
}
@media (width <= 63.99875rem) {
  .banner__card {
    display: flex;
    flex-direction: column-reverse;
    padding: 2.5rem 1.25rem;
    gap: 2.5rem;
  }
}
.banner__card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__card-item img {
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  width: 70%;
}
@media (width <= 63.99875rem) {
  .banner__card-item img {
    max-width: 415px;
  }
}
.banner__card-item:not(:has(a)) .title {
  color: #FFF;
}
.banner__card-item .subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  text-align: center;
}
.banner__card-item .title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: table;
  margin: 0.625rem 0 1.875rem;
}
@media (width <= 47.99875rem) {
  .banner__card-item .title {
    font-size: 1.75rem;
    margin: 0.3125rem 0 1.875rem;
  }
}
.banner__card-item .btn {
  background: #e81c63;
  padding: 1.25rem 4.375rem;
  font-size: 1.25rem;
}
.banner__card-item .btn:hover {
  background: #c91653;
}
@media (width <= 90.06125rem) {
  .banner__card-item .btn {
    padding: 1.25rem 3.125rem;
  }
}
@media (width <= 47.99875rem) {
  .banner__card-item .btn {
    padding: 1.25rem 0rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.card-ek312kc h2,
.banners h2 {
  margin-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .card-ek312kc .container,
  .banners .container {
    max-width: 100%;
    padding-left: 1.25rem;
  }
}
.card-ek312kc__slider-item,
.banners__slider-item {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
  border-radius: 0.5rem;
  width: 100%;
  background: red;
}
.card-ek312kc__slider-item img,
.banners__slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
}
.card-ek312kc__slider-item:hover .overlay,
.banners__slider-item:hover .overlay {
  opacity: 1;
  transition: 0.5s ease;
}
.card-ek312kc__slider-item .overlay,
.banners__slider-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  color: #fff;
  opacity: 0;
}
.card-ek312kc__slider-item .overlay .play,
.banners__slider-item .overlay .play {
  background: #1d7ef0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.125rem;
  aspect-ratio: 1;
  width: 50%;
  background: #1d7ef0 url(../../img/play.svg) no-repeat center/contain;
  background-size: 24px 24px;
}
.card-ek312kc__slider-item .overlay .play img,
.banners__slider-item .overlay .play img {
  width: 1.5625rem;
  height: 1.5625rem;
  position: unset;
}
.card-ek312kc__slider-item .overlay .play svg,
.banners__slider-item .overlay .play svg {
  width: 1.5625rem;
  height: 1.5625rem;
  display: none;
}
.card-ek312kc__slider-item .overlay .play svg use,
.banners__slider-item .overlay .play svg use {
  width: 100%;
}
.card-ek312kc__slider-item .overlay .title,
.banners__slider-item .overlay .title {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
}

footer {
  padding: 3.125rem 0;
  opacity: 0.5;
}

/*# sourceMappingURL=main.css.map */
