* {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
}
.fl-page {
  overflow: hidden;
}
::selection {
  background: #b343db;
  color: #fff;
}

body {
  background-color: #1e0d49;
  color: #fff;
  font-size: 14px;
}

html {
  scroll-behavior: smooth !important;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

h1 {
  font-size: 54px;
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
}
h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.19;
  color: #fff;
}
h3 {
  color: #fff;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 14px;
}

a:hover {
  color: #fff;
}

.linear-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(to right, #4e23d5, #ff5bdf);
  padding: 11px 29px;
  display: inline-block;
  background-size: 140% auto;
  background-position: right center;
}
.linear-btn:hover {
  background-position: left center;
}

.container {
  max-width: 1240px !important;
}

ul {
  padding: 0;
  margin: 0;
}

/* footer */
footer {
  background-color: #25105e;
  padding: 42px 0 48px;
}
.footer-wrapper {
  text-align: center;
}
.copyright-col {
  background: #1e0d49;
  border-radius: 10px;
  padding: 22px;
  margin: 19px 0;
}
.copyright-col p {
  color: #d0c5ed;
  margin-bottom: 0;
  line-height: 1.8;
}
/* header */
.main-nav {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.main-nav__play--now {
  margin-left: auto;
}
.main-nav__items {
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav__items a:hover {
  color: #d74fdd;
}
.main-nav__items a:last-of-type {
  display: none;
}
.mobile-hamburger {
  display: none;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  .main-nav__play--now {
    display: none;
  }
  .mobile-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 9999;
  }
  .mobile-hamburger span {
    background: #fff;
    width: 30px;
    height: 1px;
    transition: all 0.2s ease;
  }
  .mobile-hamburger.active .line-1 {
    transform: rotate(45deg);
  }
  .mobile-hamburger.active .line-2 {
    transform: rotate(-45deg);
    margin-top: -5px;
  }
  .main-nav__items a:last-of-type {
    display: flex;
  }
  .main-nav__items {
    position: fixed;
    background: #230f59;
    width: 100%;
    height: 100dvh;
    top: 0;
    z-index: 999;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    padding-left: 0;
  }
  .main-nav__items a {
    font-size: 16px;
  }
  .main-nav__items.active {
    opacity: 1;
    pointer-events: all;
  }
  .main-nav {
    justify-content: space-between;
  }
  .main-nav__logo img {
    width: 125px;
  }
  body.active {
    max-height: 100vh;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 30px;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  footer {
    padding: 35px 0 25px;
  }
  .copyright-col p {
    line-height: 1.6;
  }
  .copyright-col {
    margin-bottom: 25px;
  }
}
