.project {
  background: #000;
  color: #fff;
  position: relative;
}

.project picture {
  display: block;
}

.project img {
  max-width: 100%;
  vertical-align: bottom;
}

.project .page {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.project .page.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.project .common-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1320px;
  padding: 25px;
  position: relative;
  z-index: 5;
}

@media (min-width: 996px) {
  .project .common-container {
    padding: 64px 25px;
  }
}

.project .common-title {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--title-xl);
  color: #c6984a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

@media (min-width: 996px) {
  .project .common-title::before {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(231, 174, 81, 0)), to(#e7ae51));
    background: linear-gradient(to right, rgba(231, 174, 81, 0) 0%, #e7ae51 100%);
  }
  .project .common-title::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(231, 174, 81, 0)), to(#e7ae51));
    background: linear-gradient(to left, rgba(231, 174, 81, 0) 0%, #e7ae51 100%);
  }
}

.project .common-summary {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: var(--text-xl);
  padding: 36px 0;
}

.project .backtotop {
  display: none;
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../images/gotop.png") center center no-repeat ;
  background-size: cover;
}

@media (min-width: 996px) {
  .project .backtotop {
    width: 80px;
    height: 80px;
    bottom: 30px;
  }
  .project .backtotop:hover {
    -webkit-filter: drop-shadow(0 0 5px rgba(240, 255, 0, 0.75)) brightness(1.2);
            filter: drop-shadow(0 0 5px rgba(240, 255, 0, 0.75)) brightness(1.2);
  }
}

.wtb {
  background: url("../images/bg-wtb.jpg") center center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
}

.kv {
  position: relative;
  overflow: hidden;
}

.kv__img img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.kv__img--top {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-animation: 2s flash infinite ease-in-out;
          animation: 2s flash infinite ease-in-out;
}

@media (min-width: 996px) {
  .kv__img--top {
    display: block;
  }
}

.kv .spark-video {
  position: absolute;
  bottom: 30%;
  right: 20%;
  z-index: 10;
  width: 40%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 35%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 35%, transparent 75%);
}

@media (min-width: 996px) {
  .kv .spark-video {
    bottom: 0;
    right: 20%;
  }
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

.menu {
  position: relative;
  z-index: 10;
  padding: 16px 24px;
}

@media (min-width: 996px) {
  .menu {
    padding: 24px 0;
    background: url("../images/bg.jpg") center center no-repeat ;
    background-size: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.menu__btn {
  color: #c6984a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 8px;
  padding: 8px 16px;
  border: #c6984a 1px solid;
}

@media (min-width: 996px) {
  .menu__btn {
    display: none;
  }
}

.menu__box {
  background: rgba(0, 0, 0, 0.75);
  font-weight: bold;
  border: #c6984a 1px solid;
  display: none;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}

.menu__box li {
  padding: 8px 16px;
  cursor: pointer;
}

.menu__box li:hover {
  background: #c6984a;
  color: #000;
}

.menu__box li.active {
  background: #c6984a;
  color: #000;
}

@media (min-width: 996px) {
  .menu__box {
    display: block;
    border: none;
    background: transparent;
  }
  .menu__box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    text-transform: uppercase;
  }
}

.popup {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #c9c9c9;
  overflow-y: auto;
  display: none;
}

.popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__wrapper {
  --cut-size: clamp(50px, 3vw, 40px);
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.popup__inner {
  position: relative;
  z-index: 5;
  padding: 40px;
  background: linear-gradient(120deg, #d69d3a, #000 80%);
  -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-size)) 0, 100% var(--cut-size), 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - var(--cut-size)) 0, 100% var(--cut-size), 100% 100%, 0 100%);
}

.popup__header {
  position: relative;
  text-align: center;
}

.popup__body {
  padding: 35px;
}

@media (min-width: 996px) {
  .popup__body {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
  }
}

.popup__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
}

@media (min-width: 768px) {
  .lang .popup__body {
    position: relative;
    padding-bottom: 70px;
  }
}

@media (min-width: 996px) {
  .lang .popup__body {
    min-height: 500px;
  }
}

.lang__nav {
  text-align: center;
}

.lang__nav li {
  padding: 15px;
  border-bottom: #3c0909 5px solid;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.lang__nav li.lang__nav--active, .lang__nav li:hover {
  border-color: #c6984a;
  color: #c6984a;
}

@media (min-width: 768px) {
  .lang__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang__nav li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 10px;
  }
  .lang__nav li:last-child {
    margin-right: 0;
  }
}

.lang__list {
  padding-top: 25px;
}

.lang__list li {
  display: inline-block;
  width: calc(50% - 12px);
  margin: 5px;
}

@media (min-width: 768px) {
  .lang__list li {
    width: calc(33% - 13px);
  }
}

.lang__list a {
  position: relative;
  display: block;
  background: linear-gradient(45deg, #300, #852020, #300);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.lang__list a::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(45deg, #300, #852020, #300);
  -webkit-mask: url("../images/title-mask.png") center center repeat;
  mask: url("../images/title-mask.png") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.lang__list a span {
  display: block;
  position: relative;
  z-index: 10;
}

.lang__list a:hover {
  background: #c6984a;
  color: #000;
}

.lang__list-box {
  display: none;
}

.lang__list-box:first-child {
  display: block;
}

.lang-note {
  padding-top: 25px;
  text-align: center;
  font-size: 16px;
  color: #999;
}

@media (min-width: 768px) {
  .lang-note {
    position: absolute;
    width: 100%;
    bottom: 25px;
    left: 0;
  }
}

.terms {
  font-size: 16px;
  line-height: 1.5;
}

.terms .popup__wrapper {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.terms .popup__inner {
  height: 70vh;
  overflow-y: auto;
}

.terms-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  margin-top: 20px;
}

.terms ul {
  margin-left: 20px;
  padding-bottom: 20px;
}

.terms ul li {
  list-style: disc;
  padding: 5px 0;
}

.terms ul li ol {
  margin-top: 5px;
  padding-bottom: 10px;
}

.terms ul li ol li {
  list-style: none;
}

.terms ul.pds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 15px 0 0;
}

.terms ul.pds li {
  border: #eee 1px solid;
  padding: 5px;
  list-style: none;
  margin: 0;
}

@media (min-width: 768px) {
  .terms ul.pds {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .terms ul.pds li {
    width: calc(33% - 10px);
  }
}

.terms b {
  font-size: 18px;
  border-bottom: #eee 3px solid;
}

.terms p {
  padding-bottom: 20px;
}

.terms a {
  color: #fff;
  border-bottom: #fff 1px solid;
}

.terms a:hover {
  border: none;
}

.terms h4 {
  padding-bottom: 10px;
  font-size: 19px;
  color: #fff;
}

.e-tailer .popup__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.e-tailer .popup__header {
  padding-top: 20px;
}

.e-tailer__list {
  text-align: center;
}

@media (min-width: 768px) {
  .e-tailer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.e-tailer__list a {
  display: block;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  margin: 10px;
  border: #fff 3px solid;
  color: #000;
}

.e-tailer__list a img {
  margin: 0 auto;
  height: 50px;
  width: auto;
}

@media (min-width: 768px) {
  .e-tailer__list a {
    width: calc(33% - 30px);
  }
}

.e-tailer__list a:hover {
  border-color: #c6984a;
}

.keyOut .popup__body {
  font-size: 22px;
  text-align: center;
  padding: 60px 0;
}

.keyOut .popup__body a {
  color: #c6984a;
  text-decoration: underline;
}

.keyOut .popup__body a:hover {
  text-decoration: none;
}

.models * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.models__title {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}

.models ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 40px;
}

.models ul li {
  background: #222;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  width: 40%;
}

.index {
  background: url("../images/bg-index.jpg") center center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
}

.index h1 {
  poasition: absolute;
  font-size: 0px;
  top: -100%;
}

.gameDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (min-width: 996px) {
  .gameDate {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 24px;
  }
}

.gameDate__item {
  border: 1px solid #c6984a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  gap: 16px;
  border-radius: 8px;
}

@media (min-width: 996px) {
  .gameDate__item {
    padding: 48px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.gameDate__title {
  font-size: var(--title-xs);
  color: #c6984a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (min-width: 996px) {
  .gameDate__title {
    padding-bottom: 8px;
  }
}

.gameDate__date {
  font-size: var(--title-lg);
}

.gameDate__date span {
  font-weight: normal;
  font-size: 80%;
}

.gameNote {
  text-align: center;
}

.gameNote li {
  padding: 2px 0;
}

.gameCode {
  background: url("../images/bg-gamecode.jpg") center center no-repeat ;
  background-size: cover;
  padding: 80px 0;
}

.gameCode__box {
  border-bottom: 1px solid #c6984a;
  background: rgba(0, 0, 0, 0.75);
  padding: 24px;
  text-align: center;
}

@media (min-width: 996px) {
  .gameCode__box {
    margin-left: 50%;
  }
}

.gameCode__redeem {
  background: -webkit-gradient(linear, left top, right top, from(#e7ae51), color-stop(50%, #f1c784), to(#e7ae51));
  background: linear-gradient(to right, #e7ae51 0%, #f1c784 50%, #e7ae51 100%);
  color: #000;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.gameCode__redeem::after {
  content: "\ea09";
  font-family: "msi-icons";
  font-size: 24px;
  -webkit-animation: btn 2s infinite;
          animation: btn 2s infinite;
}

.gameCode__text {
  font-size: var(--title-lg);
}

.gameCode__text span {
  font-size: var(--title-xl);
  font-weight: bold;
}

@media (min-width: 996px) {
  .gameCode__text {
    padding-bottom: 24px;
  }
}

.gameCode__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

@media (min-width: 996px) {
  .gameCode__btns {
    margin-left: 50%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 32px;
    gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gameCode__btns a, .gameCode__btns button {
  border: 1px solid #c6984a;
  border-radius: 4px;
  padding: 8px 16px;
  color: #c6984a;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@-webkit-keyframes btn {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
  }
}

@keyframes btn {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
  }
}

.models {
  background: url("../images/bg-models.jpg") center center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
}

.buynow .slick-arrow {
  position: absolute;
  z-index: 10;
  width: 60px;
  height: 60px;
}

.buynow .slick-arrow::before {
  display: none;
}

.buynow .slick-prev {
  background-image: url(https://storage-asset.msi.com/event/2026/cnd/resonance-a-plague-tale-legacy/images/arrow-prev.png);
  background-size: cover;
  left: -50px;
}

.buynow .slick-next {
  background-image: url(https://storage-asset.msi.com/event/2026/cnd/resonance-a-plague-tale-legacy/images/arrow-next.png);
  background-size: cover;
  right: -50px;
}

.buynow__filters {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
  padding: 16px;
}

@media (min-width: 996px) {
  .buynow__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.buynow__filters button {
  margin: 10px;
}

.buynow__filters button.active {
  -webkit-box-shadow: #e7ae51 0 0 30px;
          box-shadow: #e7ae51 0 0 30px;
}

.buynow__filters button:hover {
  -webkit-box-shadow: #e7ae51 0 0 30px;
          box-shadow: #e7ae51 0 0 30px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.buynow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (min-width: 996px) {
  .buynow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.buynowPdCard {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #c6984a;
  padding: 16px;
  text-align: center;
}

@media (min-width: 996px) {
  .buynowPdCard {
    width: calc(25% - 12px);
  }
}

@media (min-width: 996px) {
  .buynowPdCard__img {
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.buynowPdCard__img img {
  width: 70%;
  margin: 0 auto;
  max-width: auto;
}

.buynowPdCard__title {
  padding: 8px 0 24px;
}

.buynowPdCard__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.buynowPdCard__btn button {
  background: -webkit-gradient(linear, left top, right top, from(#e7ae51), color-stop(50%, #f1c784), to(#e7ae51));
  background: linear-gradient(to right, #e7ae51 0%, #f1c784 50%, #e7ae51 100%);
  color: #000;
  padding: 16px 32px;
  border-radius: 4px;
  display: block;
  width: 100%;
  margin: 4px auto;
}

.buynowPdCard__btn a {
  background: none;
  border: 1px solid #c6984a;
  color: #c6984a;
  padding: 16px 32px;
  border-radius: 4px;
  display: block;
  width: 100%;
  margin: 4px auto;
}

.buynow__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px;
}

.qdled {
  background: url("../images/bg-whyqdled.jpg") center center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
}

@-webkit-keyframes common-title {
  0%, 100% {
    text-shadow: #fcf5de 1px 1px 5px;
  }
  50% {
    text-shadow: #fcf5de 1px 1px 15px;
  }
}

@keyframes common-title {
  0%, 100% {
    text-shadow: #fcf5de 1px 1px 5px;
  }
  50% {
    text-shadow: #fcf5de 1px 1px 15px;
  }
}
/*# sourceMappingURL=main.css.map */