@font-face {
  font-family: "GothamProBold";
  src: url("../fonts/GothamProBold.eot");
  src: url("../fonts/GothamProBold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamProBold.woff") format("woff"), url("../fonts/GothamProBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
:root {
  --1: #fff;
  --2: #030310;
  --3: #201d3a;
  --4: #ff5c21;
  --5: #484848;
}

:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Oswald", sans-serif;
  --third-family: "GothamProBold", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  background: var(--2);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--1);
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  font-weight: 700;
  color: var(--1);
  font-family: var(--font-family);
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--1);
  font-family: var(--second-family);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--4);
  position: relative;
}
h1 span::before,
h2 span::before,
h3 span::before,
h4 span::before,
h5 span::before,
h6 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 30%;
  background: var(--4);
  filter: blur(10px);
  border-radius: 100%;
  opacity: 0.6;
}

.btn {
  background: rgba(106, 51, 251, 0.3);
  border-radius: 32px;
  padding: 6px;
  max-width: 312px;
  width: 100%;
  height: 70px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--1);
  background: rgba(106, 51, 251, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  margin: 8px auto;
}
.btn span {
  box-shadow: inset 2px -2px 0px 0 #733fec, inset 0 1px 4px 0 rgba(255, 255, 255, 0.4), 0 0 4px 0 rgba(255, 255, 255, 0.07);
  background: #5e27ee;
  border-radius: 24px;
  padding: 16px 24px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn span::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 102px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(15px);
  border-radius: 100%;
  z-index: 1;
  transition: all 0.1s;
}
.btn span font {
  position: relative;
  z-index: 2;
}
.btn:hover span::before {
  bottom: 33px;
  width: 100%;
}

.wrapper {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.header img {
  width: 100%;
}
.header p {
  padding: 16px 24px;
}
.header__img-block {
  position: relative;
}
.header__img-block h1 {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 48px 24px 0;
}

.spots {
  padding: 8px 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.spots__block {
  display: flex;
  gap: 4px;
}
.spots__digit {
  border-radius: 4px;
  width: 24px;
  height: 48px;
  overflow: hidden;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  text-transform: uppercase;
  position: relative;
  perspective: 120px;
}
.spots__digit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #1f1d1e;
  z-index: 1;
}
.spots__digit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #3a363a;
  z-index: 1;
}
.spots__flipper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
}
.spots__flipper.spots__flipper--flip {
  transform: rotateX(-180deg);
}
.spots__front, .spots__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transform: translateZ(0);
  z-index: 2;
}
.spots__back {
  transform: rotateX(180deg) translateZ(0);
}

.steps {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps__block {
  border-radius: 8px;
  padding: 32px 16px 48px;
  background: #1b1b26;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.steps__block h2 {
  font-size: 48px;
}
.steps__block h2 span::before {
  display: none;
}
.steps__block h3 {
  font-size: 18px;
  letter-spacing: 0.06em;
}
.steps__block p {
  opacity: 0.7;
  text-align: center;
  line-height: 1.2;
}
.steps__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access {
  padding: 48px 24px;
  background: url("../images/access-bg.webp") no-repeat center center;
  background-size: cover;
}
.access h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.access p {
  opacity: 0.7;
  text-align: center;
  margin-bottom: 24px;
}
.access__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.access__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  position: relative;
}
.access__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px 0 0 0;
}
.access__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0 8px 0;
}
.access__item h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-transform: capitalize;
  padding: 10px 0;
}
.access__item img {
  width: 23px;
  height: 27px;
}
.access__item p {
  opacity: 1;
  text-align: left;
  margin-bottom: 0;
}

.hours {
  padding: 48px 24px 40px;
  background: url("../images/hours.webp") no-repeat center center;
  background-size: cover;
}
.hours h2 {
  color: var(--5);
  font-size: 24px;
  margin-bottom: 8px;
}
.hours p {
  margin-bottom: 16px;
  color: var(--5);
  text-align: center;
}
.hours__block {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours__item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 130%;
  color: var(--5);
}

.right-now img {
  width: 100%;
}
.right-now__block {
  padding: 16px 24px 40px;
}
.right-now__block h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.right-now__block p {
  opacity: 0.7;
  text-align: center;
  margin-bottom: 24px;
}

.footer {
  padding: 48px 16px;
}
.footer div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.footer div img {
  width: 100%;
}
.footer p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  margin-bottom: 48px;
}
.footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.footer ul li {
  padding: 10px;
}
.footer ul li a {
  opacity: 0.5;
  font-weight: 400;
}