.kv {
  position: relative;
  z-index: 2;
}
.kv h1 {
  position: absolute;
  top: 1px;
  left: 1px;
  font-size: 1px;
  color: rgba(255, 255, 255, 0);
}
.kv a {
  cursor: pointer;
}

.gift {
  position: relative;
  text-align: center;
}
.gift::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(80, 115, 167, 0.3), transparent);
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}
.gift__logo {
  width: 30%;
  margin: 0 auto;
  max-width: 200px;
}
.gift__text {
  padding-bottom: 15px;
}
@media (min-width: 996px) {
  .gift__img {
    width: 50%;
    margin: 0 auto;
    max-width: auto;
    padding-top: 35px;
  }
}

.game {
  position: relative;
  text-align: center;
}
.game__box {
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  border-radius: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 0 0;
  overflow: hidden;
}
@media (min-width: 996px) {
  .game__box {
    border-radius: 50px;
  }
}
.game__title {
  display: flex;
  white-space: nowrap;
  padding-bottom: 25px;
  font-family: var(--font-title);
}
.game__title span {
  margin-right: 30px;
  animation: marquee 40s linear infinite;
}
@media (min-width: 996px) {
  .game__title {
    font-size: 30px;
  }
}
.game__img {
  animation: flash 1s linear infinite;
}
.game__img a {
  cursor: pointer;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes flash {
  0%, 100% {
    box-shadow: 0 0 5px #022962;
  }
  50% {
    box-shadow: 0 0 10px #0ecefe;
  }
}
.bundle {
  position: relative;
  text-align: center;
}
.bundle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(100, 161, 235, 0.1), transparent);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
@media (min-width: 768px) {
  .bundle__tab {
    display: flex;
    margin-top: 40px;
  }
}
.bundle__tab li {
  display: inline-block;
  background: linear-gradient(to bottom, transparent, rgba(100, 161, 235, 0.5));
  padding: 10px;
  margin: 2px;
  min-width: 40%;
  font-size: 16px;
  cursor: pointer;
}
.bundle__tab li:hover, .bundle__tab li.active {
  background: linear-gradient(to bottom, transparent, rgba(41, 194, 245, 0.6), transparent);
}
.bundle__tab li.active {
  transform: scale(1.1);
  font-weight: bold;
}
@media (min-width: 768px) {
  .bundle__tab li {
    flex: 1;
    min-width: auto;
  }
}
@media (min-width: 996px) {
  .bundle__tab li {
    font-size: 20px;
    padding: 25px 15px;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
}
.bundle__content {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px;
  display: none;
}
.bundle__content.active {
  display: block;
}
@media (min-width: 996px) {
  .bundle__content {
    margin-top: -40px;
    border-bottom-left-radius: 250px;
    border-bottom-right-radius: 250px;
  }
}
.bundle__items figure {
  display: inline-block;
  width: 40%;
  text-transform: uppercase;
}
.bundle__items figure span {
  display: block;
  font-weight: normal;
  font-size: 80%;
}
.bundle__items img {
  width: 80px;
}
@media (min-width: 996px) {
  .bundle__items {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    max-width: auto;
    padding: 90px 0 50px;
  }
  .bundle__items figure {
    width: auto;
    flex: 1;
    text-align: center;
    font-weight: bold;
    position: relative;
  }
  .bundle__items figure img {
    width: 100px;
  }
  .bundle__items figure::after {
    content: "+";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6);
    color: #030a7f;
    right: 0px;
    top: 45%;
  }
  .bundle__items figure:last-child::after {
    display: none;
  }
}
@media (min-width: 996px) {
  .bundle__gift {
    margin-top: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: #fff 1px solid;
    border-radius: 100px;
    padding: 25px;
  }
  .bundle__gift span.gift {
    border-right: #fff 1px solid;
    font-weight: bold;
    padding: 25px 45px;
    font-size: 25px;
    margin-right: 25px;
  }
  .bundle__gift p {
    text-align: center;
  }
}
.bundle__btn {
  padding: 45px 0 25px;
  width: 30%;
  margin: 0 auto;
  max-width: auto;
}
.bundle__btn a {
  display: block;
  width: 100%;
  padding: 15px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(-45deg, #c0ce50, #e6dd33, #dfa762, #eb7032);
  border-radius: 3px;
  transition: 1s all ease;
  cursor: pointer;
}
.bundle__btn a:hover {
  background: linear-gradient(185deg, #c0ce50, #e6dd33, #dfa762, #eb7032);
}

.pd {
  position: relative;
}
@media (min-width: 996px) {
  .pd {
    padding-bottom: 60px;
  }
}
.pd__inner {
  position: relative;
  padding-top: 50px;
}
.pd__tab {
  font-size: 16px;
  position: absolute;
  left: -100%;
}
@media (min-width: 996px) {
  .pd__tab {
    position: relative;
    left: 0;
    flex: 0 0 30%;
  }
  .pd__tab li {
    background: linear-gradient(to bottom, transparent, rgba(100, 161, 235, 0.3), transparent);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 48%, 0% 0%);
    padding: 50px 10px;
    margin: 2px;
    min-width: 40%;
    font-size: 16px;
    cursor: pointer;
    font-size: 30px;
  }
  .pd__tab li:hover {
    background: linear-gradient(to bottom, transparent, rgba(41, 194, 245, 0.6), transparent);
  }
}
.pd__box {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 996px) {
  .pd__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: #fff 1px dashed;
    border-radius: 250px;
    padding: 50px;
  }
  .pd__box ul {
    flex: 0 0 60%;
  }
}
.pd__box li {
  background: rgba(255, 255, 255, 0.1);
  border: rgba(255, 255, 255, 0.3) 1px solid;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 996px) {
  .pd__box li {
    background: none;
    border: none;
    padding: 0;
    text-align-last: left;
  }
  .pd__box li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #369;
    transform: rotate(45deg);
    margin-right: 15px;
  }
}
.pd__img {
  width: 60%;
  margin: 0 auto;
  max-width: 250px;
  padding-bottom: 25px;
  text-align: center;
}
.pd__img figcaption {
  padding-top: 10px;
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .pd__img {
    width: 40%;
    max-width: 350px;
    border-right: #fff 1px dashed;
    margin-right: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 768px) {
  .step__box {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 996px) {
  .step__box {
    align-items: stretch;
    padding-bottom: 50px;
  }
}
.step__title {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 25px;
}
.step__icon {
  padding: 20px;
}
.step__item {
  border: #fff 1px dashed;
  border-radius: 50px;
  padding: 0 25px 40px;
}
@media (min-width: 768px) {
  .step__item {
    border-radius: 80px;
    flex: 1;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .step__item {
    border-radius: 200px;
    padding: 0 50px 50px;
  }
}

.redeem {
  text-align: center;
}
.redeem__text {
  padding: 25px 0;
}
.redeem__text .note {
  color: #25d2de;
  padding: 15px 0;
}
.redeem__btn {
  padding-top: 50px;
  padding-bottom: 40px;
}
.redeem__btn a, .redeem__btn button {
  width: 100%;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .redeem__btn {
    display: flex;
  }
  .redeem__btn a, .redeem__btn button {
    flex: 1;
    margin-right: 8px;
  }
  .redeem__btn a:last-child, .redeem__btn button:last-child {
    margin-right: 0;
  }
}

.terms {
  text-align: center;
  padding-bottom: 50px;
}
@media (min-width: 996px) {
  .terms {
    padding-bottom: 150px;
  }
}
.terms a {
  display: inline-block;
  border: rgba(255, 255, 255, 0.5) 1px solid;
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  color: #fff;
  padding: 15px;
  border-radius: 3px;
}
.terms a:hover {
  color: #000;
  background: linear-gradient(-45deg, #c0ce50, #e6dd33, #dfa762, #eb7032);
}

.follow {
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  text-align: center;
}
.follow h2 {
  padding-bottom: 60px;
}
.follow a {
  display: inline-block;
  border: rgba(255, 255, 255, 0.5) 1px solid;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  font-size: 35px;
}
.follow a:hover {
  background: #fff;
  color: #000;
}

.popup {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
}
.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  background: #0b0020;
  position: relative;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-bottom: 10px;
}
.popup-close {
  position: sticky;
  top: 0;
}
.popup-close:hover::before {
  background: rgba(255, 255, 255, 0.5);
}
.popup-close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
@media (min-width: 996px) {
  .popup-close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
.popup__header {
  position: sticky;
  top: 0;
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-shadow: #111 1px 1px 3px;
}
@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}
.popup__content {
  padding: 25px;
  height: 80vh;
  overflow-y: auto;
  margin: 10px 10px 30px;
}
.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popup__content::-webkit-scrollbar-track {
  background: #0c1944;
}
.popup__content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #4292e9, #8ca6d1, #4292e9);
  border-radius: 10px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 80px;
  }
}

#terms {
  font-size: 17px;
  line-height: 1.8;
}
#terms ul {
  margin-left: 20px;
}
#terms ul li {
  list-style: disc;
  padding: 5px 0;
}
#terms ol {
  margin-left: 25px;
}
#terms ol li {
  list-style: lower-roman;
}
#terms h4 {
  padding: 15px 0;
}
#terms table {
  width: 100%;
  border-collapse: collapse;
}
#terms table th {
  background: linear-gradient(to left, #8ca6d1, #4292e9);
  padding: 15px;
  text-align: center;
  color: #fff;
  border-right: #fff 1px solid;
}
#terms table td {
  border: #8ca6d1 1px solid;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-family: var(--MSIBodyFont);
}
#terms .title {
  margin: 20px 0 10px;
  position: relative;
}
#terms .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background: linear-gradient(to left, #8ca6d1, #4292e9);
}
#terms .title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #0b0020;
  padding-right: 5px;
}
@media (min-width: 996px) {
  #terms .pdlist {
    list-style: none;
    margin-left: 0;
  }
  #terms .pdlist li {
    display: inline-block;
    width: calc(50% - 12px);
    margin-right: 10px;
    border: rgba(255, 255, 255, 0.3) 1px solid;
    padding: 10px;
    vertical-align: top;
    font-size: 14px;
    margin-bottom: 10px;
  }
  #terms .pdlist li:nth-child(even) {
    margin-right: 0;
  }
}

#shop .popup__content img {
  width: 80px;
  padding: 5px;
  border: #000 2px solid;
  vertical-align: bottom;
}
#shop .popup__content img:hover {
  border-color: #4292e9;
}
@media (min-width: 996px) {
  #shop .popup__content img {
    width: 150px;
  }
}

.msiHeader,
.msiFooter {
  position: relative;
  z-index: 900;
  background: #fff;
}

.toolBar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 30px;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
}
.toolBar a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
  background: #3c5cc3;
  margin-bottom: 2px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  transition: 0.5s all ease;
  cursor: pointer;
}
.toolBar a:hover, .toolBar a.active {
  background: #41bfdc;
  transform: translateX(0);
}
@media (min-width: 996px) {
  .toolBar a {
    transform: translateX(15px);
    width: 80px;
    height: 80px;
  }
}

.project {
  position: relative;
  color: #222;
  font-size: 18px;
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  color: #fff;
  font-size: 20px;
}
.project::before {
  content: "";
  position: fixed;
  z-index: 0;
  width: 50%;
  height: 100vh;
  top: 0;
  left: 0;
  background: url("../images/ribbons01.png") top right repeat;
}
@media (min-width: 996px) {
  .project::before {
    width: 30%;
  }
}
.project::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 50%;
  height: 100vh;
  top: 20%;
  right: 0;
  background: url("../images/ribbons02.png") top left repeat;
}
@media (min-width: 996px) {
  .project::after {
    width: 30%;
  }
}
.project img {
  max-width: 100%;
  vertical-align: bottom;
}
.project picture {
  display: block;
}
.project .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 25px;
}

.common__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 45px 25px;
}
@media (min-width: 996px) {
  .common__container {
    padding: 100px 0;
  }
}
.common-title {
  font-family: var(--font-title);
  text-align: center;
  padding-bottom: 10px;
  padding-top: 15px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  font-weight: bold;
}
@media (min-width: 996px) {
  .common-title {
    font-size: 3vw;
  }
}
.common-btn {
  border: rgba(255, 255, 255, 0.5) 1px solid;
  background: linear-gradient(-45deg, #0b0020, #030a7f, #070336, #0c1944);
  color: #fff;
  font-size: 100%;
  padding: 15px 25px;
  outline: none;
  display: inline-block;
  cursor: pointer;
}
.common-btn:hover {
  background: linear-gradient(-45deg, #c0ce50, #e6dd33, #dfa762, #eb7032);
  color: #000;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
