.pbm {
  background: #111;
  color: #fff;
}
.pbm img {
  max-width: 100%;
}
.pbm .common__container {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 25px;
  position: relative;
}
.pbm .common-title {
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, transparent 0%, #bf8b01 30%, #a15f01 50%, #dbbc5f 70%, transparent);
  padding: 10px 0;
}
@media (min-width: 996px) {
  .pbm .common-title {
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, #bf8b01), color-stop(50%, #a15f01), color-stop(70%, #dbbc5f));
    background: linear-gradient(to right, #bf8b01 30%, #a15f01 50%, #96a4c5, #dbbc5f 70%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pbm .common-title::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #bf8b01;
    margin-right: 10px;
  }
  .pbm .common-title::after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #dbbc5f;
    margin-left: 10px;
  }
}

.kv {
  position: relative;
  z-index: 0;
  background: #000;
  overflow: hidden;
}
.kv::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 50px;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  background: #111;
}
.kv::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent 0%, #bf8b01 30%, #a15f01 50%, #dbbc5f 70%, transparent);
}
@media (min-width: 996px) {
  .kv {
    height: 70vh;
  }
  .kv::after {
    height: 100px;
  }
}
.kv__qrcode {
  position: absolute;
  z-index: 2;
  width: 60%;
  right: 0;
  top: 20px;
  max-width: 300px;
}
.kv__qrcode__inner {
  position: relative;
}
.kv__qrcode__game {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  animation: 1s qrcode infinite;
}
@media (min-width: 996px) {
  .kv__qrcode {
    bottom: 30px;
    top: auto;
  }
}
.kv__text {
  position: relative;
  z-index: 2;
  top: -10vh;
  padding: 0 25px 25px;
  max-width: 600px;
  margin: 0 auto;
}
.kv__text h1 {
  padding-bottom: 20px;
}
.kv__text .icon {
  padding-top: 20px;
  max-width: 150px;
}
@media (min-width: 996px) {
  .kv__text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 800px;
  }
  .kv__text h1 {
    width: 70%;
  }
  .kv__text p {
    line-height: 1.5;
    font-size: 20px;
  }
  .kv__text p b {
    font-weight: bolder;
    font-size: 130%;
  }
  .kv__text .icon {
    max-width: none;
  }
}
@media (min-width: 996px) {
  .kv__img {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 85%;
  }
  .kv__img img {
    width: 100%;
  }
}

@keyframes qrcode {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.modles {
  padding: 0px 0px 100px;
  position: relative;
}
.modles::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 50px;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  background: #222;
}
.modles::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent 0%, #bf8b01 30%, #a15f01 50%, #dbbc5f 70%, transparent);
}
@media (min-width: 996px) {
  .modles {
    padding-bottom: 150px;
  }
  .modles::after {
    height: 100px;
  }
  .modles .common-title {
    padding-top: 50px;
  }
}
.modles__list {
  margin-top: 20px;
}
@media (min-width: 996px) {
  .modles__list {
    border: none;
  }
}
.modles__category {
  padding-bottom: 30px;
}
.modles__table .th {
  border-bottom: #bf8b01 2px solid;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.modles__table .th img {
  width: 80px;
}
.modles__table .td {
  margin: 20px;
  font-size: 15px;
}
.modles__table .td li {
  padding: 5px;
}
@media (min-width: 996px) {
  .modles__table {
    display: table;
    border-collapse: collapse;
    width: 100%;
  }
  .modles__table .tr {
    display: table-row;
  }
  .modles__table .th {
    display: table-cell;
    background: #000;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    width: 400px;
    position: relative;
    padding: 15px 15px 15px 40px;
  }
  .modles__table .th img {
    width: 150px;
  }
  .modles__table .th::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(45deg, #000 0%, #a15f01 10%, #96a4c5 50%, #a15f01 70%);
  }
  .modles__table .td {
    display: table-cell;
    border-bottom: #a15f01 2px solid;
    padding: 20px;
    vertical-align: top;
  }
  .modles__table .td ul {
    display: flex;
    flex-wrap: wrap;
  }
  .modles__table .td li {
    display: inline-flex;
    width: calc(33% - 10px);
    background: #222;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
  }
}

.redeem {
  text-align: center;
  background: #222;
  padding: 40px 0px 100px;
  position: relative;
}
.redeem::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: -1px;
  width: 60%;
  height: 50px;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  background: #fff;
}
.redeem::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent 0%, #bf8b01 30%, #a15f01 50%, #dbbc5f 70%, transparent);
}
@media (min-width: 996px) {
  .redeem {
    padding-bottom: 150px;
  }
  .redeem::after {
    height: 100px;
  }
}
.redeem__box {
  padding-top: 40px;
}
.redeem__box img {
  width: 60px;
}
@media (min-width: 996px) {
  .redeem__box {
    display: flex;
  }
}
.redeem__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (min-width: 996px) {
  .redeem__item {
    flex: 1;
    margin-right: 30px;
  }
  .redeem__item:last-child {
    margin-right: 0;
  }
  .redeem__item h4 {
    margin: 20px auto;
    display: inline-block;
    border-radius: 30px;
    border: #bf8b01 1px solid;
    padding: 10px 25px;
  }
}
.redeem__btns {
  padding-bottom: 40px;
}
.redeem__btns a {
  position: relative;
  display: block;
  background: linear-gradient(to right, #bf8b01 30%, #a15f01 50%, #96a4c5, #dbbc5f 70%);
  padding: 1px;
  color: #fff;
  margin-top: 5px;
}
.redeem__btns a span {
  display: block;
  padding: 10px;
  background: #222;
}
.redeem__btns a:hover span {
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 996px) {
  .redeem__btns {
    display: flex;
  }
  .redeem__btns a {
    flex: 1;
    margin-right: 20px;
  }
  .redeem__btns a:last-child {
    margin-right: 0;
  }
}

.wtb {
  background: #fff;
  padding: 40px 0px 100px;
}

.popup {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: -moz-scrollbars-none;
}
.popup::-webkit-scrollbar {
  width: 0 !important;
}
.popup__inner {
  max-width: 1000px;
  background: #000000;
  border: #222 5px solid;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow: hidden;
  overflow-y: auto;
}
.popup__inner::-webkit-scrollbar {
  width: 10px !important;
}
.popup-btn-close {
  position: fixed;
  right: 10px;
  top: 10px;
  cursor: pointer;
  color: #999;
  font-size: 40px;
}
.popup__header {
  padding: 50px 25px 0;
}
.popup__body {
  padding: 0 25px 25px;
}
.popup__body p {
  padding-bottom: 20px;
}
.popup__body ul {
  margin-left: 20px;
}
.popup__body ul li {
  list-style: disc;
  padding: 5px;
}
@media (min-width: 768px) {
  .popup__body {
    padding: 25px 50px 50px;
  }
}
.popup__body a {
  color: #fff;
  text-decoration: underline;
}
.popup__body a:hover {
  text-decoration: none;
}

.terms {
  line-height: 1.8;
}
.terms h3 {
  color: #bf8b01;
  padding-bottom: 10px;
  margin-top: 30px;
}
.terms ul.lower-roman li {
  list-style: lower-roman;
}
