@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;
}

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

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

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

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

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

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

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

img {
  pointer-events: none;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  height: 100%;
  background: #000318;
}

.container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 73.92% 26.08%;
}
@media only screen and (max-width: 768px) {
  .container {
    grid-template-rows: 65% 35%;
  }
}

.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.6588235294);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal--visible {
  visibility: visible;
  pointer-events: auto;
}
.modal--open {
  opacity: 1;
}
.modal__celebration {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  z-index: 0;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  transition: all 450ms ease-in-out;
}
@media only screen and (max-width: 576px) {
  .modal__celebration {
    width: unset;
    height: 50%;
  }
}
.modal__celebration--visible {
  display: block;
}
.modal__celebration--open {
  transform: translateY(0);
}
.modal__window {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transform: scale(0.88) translateY(28px);
  opacity: 0;
  padding: 40px;
  max-width: 380px;
  width: 100%;
  min-height: 476px;
  border-radius: 8px;
  background: rgba(18, 32, 38, 0.8431372549);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 40px 0 rgba(151, 234, 7, 0.4);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.modal__window--active {
  display: flex;
  flex-direction: column;
}
.modal__window--open {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal__title {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.modal__title-congrats {
  font-family: Bangers;
  font-size: 64px;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1490196078), 0px 2px 3px rgba(0, 0, 0, 0.3019607843), 0px -3px 0px rgba(0, 0, 0, 0.1607843137), 0px 2px 2px rgba(255, 255, 255, 0.8);
  color: #fafafa;
}
@media only screen and (max-width: 576px) {
  .modal__title-congrats {
    font-size: 55px;
  }
}
.modal__image {
  height: 100px;
}
.modal__promo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.modal__promo.copied .modal__promo-status {
  display: block;
}
.modal__promo-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: relative;
  padding: 16px 32px;
  border: 2px solid #ffffff;
  border-radius: 100px;
}
.modal__promo-status {
  font-family: Roboto;
  color: #fafafa;
  display: none;
  position: absolute;
  bottom: 5px;
  right: 28px;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .modal__promo-status {
    font-size: 14px;
    right: 32px;
  }
}
.modal__promo-text {
  font-family: Roboto;
  color: #fafafa;
  text-transform: uppercase;
  font-size: 28px;
}
@media only screen and (max-width: 576px) {
  .modal__promo-text {
    font-size: 28px;
  }
}
.modal__promo-copy {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
.modal__annotation {
  font-family: Roboto;
  color: #fafafa;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}
.modal__link, .modal__button {
  display: flex;
  height: 52px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  background: linear-gradient(180deg, #7eac2f 0%, #97ea07 100%);
  cursor: pointer;
}
.modal__link-text, .modal__button-text {
  color: var(--FFFFFF, #fff);
  text-shadow: 0 4px 4px #1c4367;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.stadium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .stadium {
    padding: 60px 0;
  }
}
.stadium {
  position: relative;
  overflow: hidden;
}
.stadium__logo {
  width: 256px;
  height: 56px;
}
@media only screen and (max-width: 576px) {
  .stadium__logo {
    width: 163px;
    height: 36px;
  }
}
.stadium__logo-icon {
  width: 100%;
  height: 100%;
}
.stadium__background {
  position: fixed;
  bottom: -35px;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}
.stadium__background-desktop {
  width: 143.6vw;
  height: 143.5vh;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 576px) {
  .stadium__background-desktop {
    display: none;
  }
}
.stadium__background-mobile {
  max-width: unset;
  top: 40%;
  transform: translate(-50%, -50%);
  bottom: unset;
  width: 110%;
  object-fit: contain;
  display: none;
}
@media only screen and (max-width: 576px) {
  .stadium__background-mobile {
    display: block;
  }
}
.stadium__center {
  width: max(540px, 28%);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .stadium__center {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
}
@media only screen and (max-width: 576px) {
  .stadium__center {
    width: 100%;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.stadium__center .prizes {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 16px;
  position: relative;
  z-index: 50;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .stadium__center .prizes {
    padding: 16px 12px;
  }
}
.stadium__center .prizes__left, .stadium__center .prizes__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stadium__center .prizes .prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  min-height: 120px;
  width: 120px;
  height: 120px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .stadium__center .prizes .prize {
    min-width: 90px;
    min-height: 90px;
    width: 90px;
    height: 90px;
    padding: 7px 0;
    gap: 3px;
  }
}
@media only screen and (max-width: 576px) {
  .stadium__center .prizes .prize {
    min-width: 60px;
    min-height: 60px;
    width: 14.5vw;
    height: 14.5vw;
    padding: 7px 0;
    gap: 3px;
  }
}
.stadium__center .prizes .prize {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px 0 rgba(151, 234, 7, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.stadium__center .prizes .prize#prizeBigFreebet {
  grid-area: prizeBigFreeBet;
}
.stadium__center .prizes .prize#prizeNewPhone {
  grid-area: prizeNewPhone;
}
.stadium__center .prizes .prize#prizeNoReward {
  grid-area: prizeNoReward;
}
.stadium__center .prizes .prize#prizeCash {
  grid-area: prizeCash;
}
.stadium__center .prizes .prize#prizeFreeSpins {
  grid-area: prizeFreeSpins;
}
.stadium__center .prizes .prize#prizeSmallFreeBet {
  grid-area: prizeSmallFreeBet;
}
.stadium__center .prizes .prize.dropped {
  background: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px 0 #00d9ff;
}
.stadium__center .prizes .prize__image-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stadium__center .prizes .prize__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stadium__center .prizes .prize__text {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 10px;
}
@media only screen and (max-width: 768px) {
  .stadium__center .prizes .prize__text {
    font-size: 8px;
  }
}
.stadium__center .prizes .prize__text {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.action {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #010101 0%, #025c2e 100%);
  --arrow-base-x: 30;
  --arrow-base-z: 20;
  --arrow-range-x: 30;
  --arrow-range-z: 45;
  --joystick-size: 143px;
}
@media only screen and (max-width: 768px) {
  .action {
    --arrow-base-x: 40;
    --arrow-base-z: -2;
    --arrow-range-x: 30;
    --arrow-range-z: 50;
    --joystick-size: 100px;
  }
}
.action.shooted .player__image {
  display: none;
  z-index: 250;
}
.action.shooted .player__gif {
  display: block;
  z-index: 250;
}
.action--locked .indicator,
.action--locked #nipple {
  opacity: 0;
  pointer-events: none;
}
.action .player__image {
  position: absolute;
  width: 515px;
  height: 686px;
  bottom: 0;
  right: 60%;
  object-fit: contain;
  display: block;
  z-index: 50;
}
@media only screen and (max-width: 768px) {
  .action .player__image {
    width: 265px;
    height: 353px;
    bottom: 50%;
    right: 45%;
  }
}
.action .player__gif {
  position: absolute;
  bottom: 0;
  right: 60%;
  width: 515px;
  height: 686px;
  display: none;
  z-index: 50;
}
@media only screen and (max-width: 768px) {
  .action .player__gif {
    width: 265px;
    height: 353px;
    bottom: 50%;
    right: 45%;
  }
}
.action .ball {
  position: absolute;
  bottom: 40px;
  right: 60%;
  z-index: 20;
  will-change: transform;
  --ball-base-transform: none;
}
@media only screen and (max-width: 768px) {
  .action .ball {
    width: 48px;
    bottom: 60%;
    right: 50%;
    --ball-base-transform: translateX(50%);
    transform: var(--ball-base-transform);
  }
}
.action .ball--flying {
  z-index: 200;
}
.action .ball__image {
  width: 94px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .action .ball__image {
    width: 48px;
  }
}
.action .indicator {
  position: absolute;
  right: 57%;
  bottom: 30px;
  width: 150px;
  height: 170px;
  overflow: hidden;
  perspective: 230px;
}
@media only screen and (max-width: 768px) {
  .action .indicator {
    width: unset;
    right: 50%;
    transform: translateX(50%);
    bottom: 45%;
    padding: 0 12px;
  }
}
.action .indicator__image {
  height: 100%;
  filter: drop-shadow(0 0 10px #fff);
}
.action .nipple__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(var(--joystick-size) - 20px);
  height: calc(var(--joystick-size) - 20px);
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
}
.action .nipple__arrows-icon {
  width: 100%;
  height: 100%;
}
.action #nipple {
  bottom: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .action #nipple {
    position: absolute;
    height: 50%;
  }
}
.action #nipple .back {
  border: 1px solid #fff;
}
.action #nipple .front {
  border: 1px solid #fff;
  opacity: 1 !important;
}

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