@charset "UTF-8";
@-webkit-keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes AniFloat {
  0% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}
@keyframes AniFloat {
  0% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}
:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",'Microsoft JhengHei',"Noto Sans TC", "微軟正黑體", "Meiryo UI", Roboto, Helvetica, Arial, sans-serif;
  --mainTitle: 22px;
  --mainTxt: 18px;
  --mainPrice: 20px;
  --mainNote: 15px;
}
@media (min-width: 768px) {
  :root {
    --mainTitle: 32px;
    --mainTxt: 20px;
    --mainPrice: 20px;
    --mainNote: 15px;
  }
}
:root {
  --font-color-dark: #fff;
  --font-color-light: #111;
}
:root html:lang(ja-JP) *:not(.material-icons):not(.fa):not(.buttonicons) {
  --font: -apple-system, BlinkMacSystemFont,"Meiryo UI", Arial, sans-serif;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

body.is-popup-open,
body.is-nav-open {
  overflow: hidden;
}

.luckyClaw {
  position: relative;
  overflow-x: hidden;
}
.luckyClaw .common__titleBox {
  text-align: center;
}
.luckyClaw .common__titleBox-tag {
  font-size: 18px;
  font-weight: normal;
  color: #595959;
  border-bottom: 2px solid #595959;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.luckyClaw .common__titleBox-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(0deg, #131313, #7963cd);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.luckyClaw .common__titleBox-subtitle {
  font-size: 16px;
  font-weight: normal;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.luckyClaw .common__btn {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#d4caff), to(#e5affc));
  background: linear-gradient(90deg, #d4caff 0%, #e5affc 100%);
  border: 2px solid #b560ea;
  color: #8732bc;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.luckyClaw .common__btn:hover {
  background: #b560ea;
  border-color: #b560ea;
  color: #fff;
}
@media (min-width: 996px) {
  .luckyClaw .common__titleBox-tag {
    font-size: 20px;
  }
  .luckyClaw .common__titleBox-title {
    font-size: 40px;
  }
  .luckyClaw .common__titleBox-subtitle {
    font-size: 17px;
  }
}
.luckyClaw .nav {
  position: absolute;
  top: 0.6%;
  right: 10%;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.luckyClaw .nav__toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 4px 18px rgba(108, 99, 255, 0.2);
          box-shadow: 0 4px 18px rgba(108, 99, 255, 0.2);
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.luckyClaw .nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ac38ef;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.luckyClaw .nav__toggle.is-open span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.luckyClaw .nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.luckyClaw .nav__toggle.is-open span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.luckyClaw .nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 43px;
}
.luckyClaw .nav__menu-mobile {
  display: none !important;
}
.luckyClaw .nav__menu a {
  display: inline-block;
  background: -webkit-linear-gradient(0deg, #131313 5%, #7963cd);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  padding-right: 20px;
}
@media screen and (max-width: 996px) {
  .luckyClaw .nav {
    position: fixed;
    top: 12px;
    right: 12px;
    width: auto;
    z-index: 200;
    pointer-events: none;
  }
  .luckyClaw .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(19, 19, 19, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .luckyClaw .nav.is-open {
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    pointer-events: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .luckyClaw .nav.is-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .luckyClaw .nav__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: auto;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  .luckyClaw .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80%, 320px);
    height: 100%;
    padding: 88px 28px 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    background: #fff;
    -webkit-box-shadow: -8px 0 32px rgba(108, 99, 255, 0.12);
            box-shadow: -8px 0 32px rgba(108, 99, 255, 0.12);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    z-index: 1;
  }
  .luckyClaw .nav__menu-mobile {
    display: block !important;
  }
  .luckyClaw .nav__menu.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .luckyClaw .nav__menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    background: none;
    -webkit-text-fill-color: #333;
    color: #333;
    border-bottom: 1px solid #efe8f8;
  }
  .luckyClaw .nav__menu a:hover, .luckyClaw .nav__menu a.is-active {
    color: #ac38ef;
    -webkit-text-fill-color: #ac38ef;
  }
}
.luckyClaw .sideBar {
  position: fixed;
  top: 50%;
  right: -10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
  z-index: 100;
  border-right: 1px solid #ac38ef;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: right 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
  transition: right 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.luckyClaw .sideBar.is-show {
  right: 1.5%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.luckyClaw .sideBar a {
  display: block;
  text-decoration: none;
  color: #a2a2a2;
  font-size: 17px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.luckyClaw .sideBar a:last-child {
  margin-bottom: 0;
}
.luckyClaw .sideBar a:hover, .luckyClaw .sideBar a.is-active {
  color: #ac38ef;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 1480px) {
  .luckyClaw .sideBar {
    display: none !important;
  }
}
.luckyClaw .kv {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}
.luckyClaw .kv__bg, .luckyClaw .kv__pic {
  position: relative;
}
.luckyClaw .kv__dragon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}
.luckyClaw .kv__bigBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
}
.luckyClaw .kv__bigBox img {
  -webkit-animation-name: kvBigBoxFloat;
          animation-name: kvBigBoxFloat;
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.luckyClaw .kv__bigBox-1 {
  z-index: 15;
}
.luckyClaw .kv__bigBox-1 img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.luckyClaw .kv__bigBox-2 {
  z-index: 10;
}
.luckyClaw .kv__bigBox-2 img {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.luckyClaw .kv__bigBox-3 {
  z-index: 5;
}
.luckyClaw .kv__bigBox-3 img {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@-webkit-keyframes kvBigBoxFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-32px);
            transform: translateY(-32px);
  }
}
@keyframes kvBigBoxFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-32px);
            transform: translateY(-32px);
  }
}
.luckyClaw .kv__box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.5;
}
.luckyClaw .kv__box img {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.luckyClaw .kv__box-1 img {
  -webkit-animation-name: kvBoxFloat1;
          animation-name: kvBoxFloat1;
  -webkit-animation-duration: 5.4s;
          animation-duration: 5.4s;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}
.luckyClaw .kv__box-2 {
  opacity: 0.5;
}
.luckyClaw .kv__box-2 img {
  -webkit-animation-name: kvBoxFloat2;
          animation-name: kvBoxFloat2;
  -webkit-animation-duration: 4.1s;
          animation-duration: 4.1s;
  -webkit-animation-delay: -2.8s;
          animation-delay: -2.8s;
}
.luckyClaw .kv__box-3 img {
  -webkit-animation-name: kvBoxFloat3;
          animation-name: kvBoxFloat3;
  -webkit-animation-duration: 6.2s;
          animation-duration: 6.2s;
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.luckyClaw .kv__box-4 img {
  -webkit-animation-name: kvBoxFloat4;
          animation-name: kvBoxFloat4;
  -webkit-animation-duration: 4.7s;
          animation-duration: 4.7s;
  -webkit-animation-delay: -3.6s;
          animation-delay: -3.6s;
}
.luckyClaw .kv__box-5 img {
  -webkit-animation-name: kvBoxFloat5;
          animation-name: kvBoxFloat5;
  -webkit-animation-duration: 5.8s;
          animation-duration: 5.8s;
  -webkit-animation-delay: -1.9s;
          animation-delay: -1.9s;
}
@-webkit-keyframes kvBoxFloat1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  38% {
    -webkit-transform: translate(3px, -14px);
            transform: translate(3px, -14px);
  }
  68% {
    -webkit-transform: translate(-2px, -5px);
            transform: translate(-2px, -5px);
  }
}
@keyframes kvBoxFloat1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  38% {
    -webkit-transform: translate(3px, -14px);
            transform: translate(3px, -14px);
  }
  68% {
    -webkit-transform: translate(-2px, -5px);
            transform: translate(-2px, -5px);
  }
}
@-webkit-keyframes kvBoxFloat2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-4px, -9px);
            transform: translate(-4px, -9px);
  }
}
@keyframes kvBoxFloat2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-4px, -9px);
            transform: translate(-4px, -9px);
  }
}
@-webkit-keyframes kvBoxFloat3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  28% {
    -webkit-transform: translate(2px, -7px);
            transform: translate(2px, -7px);
  }
  62% {
    -webkit-transform: translate(-3px, -16px);
            transform: translate(-3px, -16px);
  }
}
@keyframes kvBoxFloat3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  28% {
    -webkit-transform: translate(2px, -7px);
            transform: translate(2px, -7px);
  }
  62% {
    -webkit-transform: translate(-3px, -16px);
            transform: translate(-3px, -16px);
  }
}
@-webkit-keyframes kvBoxFloat4 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  42% {
    -webkit-transform: translate(-2px, -12px);
            transform: translate(-2px, -12px);
  }
  78% {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
}
@keyframes kvBoxFloat4 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  42% {
    -webkit-transform: translate(-2px, -12px);
            transform: translate(-2px, -12px);
  }
  78% {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
}
@-webkit-keyframes kvBoxFloat5 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(3px, -6px);
            transform: translate(3px, -6px);
  }
  58% {
    -webkit-transform: translate(-1px, -15px);
            transform: translate(-1px, -15px);
  }
}
@keyframes kvBoxFloat5 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(3px, -6px);
            transform: translate(3px, -6px);
  }
  58% {
    -webkit-transform: translate(-1px, -15px);
            transform: translate(-1px, -15px);
  }
}
.luckyClaw .kv__txt {
  position: relative;
  text-align: center;
  padding: 0 25px;
  width: 100%;
  z-index: 50;
  margin-top: -15%;
}
.luckyClaw .kv__txt-logo {
  width: 22%;
  margin: 0 45px 15px;
}
.luckyClaw .kv__txt-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.luckyClaw .kv__txt h1 {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
  background: -webkit-gradient(linear, left top, right top, from(#1d1c21), color-stop(38%, #4b3e87), to(#7c61f4));
  background: linear-gradient(90deg, #1d1c21 0%, #4b3e87 38%, #7c61f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.luckyClaw .kv__txt p {
  max-width: 550px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  margin: 0 auto 25px;
}
@media (min-width: 996px) {
  .luckyClaw .kv__box-2 {
    opacity: 0.1;
  }
  .luckyClaw .kv__txt {
    padding: 0;
    position: absolute;
    top: 40%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50%;
    text-align: left;
    margin-top: 0;
  }
  .luckyClaw .kv__txt h1 {
    font-size: 50px;
  }
  .luckyClaw .kv__txt p {
    font-size: 20px;
    margin: 0 0 25px;
  }
}
@media (min-width: 1300px) {
  .luckyClaw .kv__txt {
    left: 10%;
  }
}
@media (min-width: 1600px) {
  .luckyClaw .kv__txt {
    left: 15%;
  }
}
@media (min-width: 1930px) {
  .luckyClaw .kv::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 10;
    background: -webkit-gradient(linear, left top, right top, color-stop(-1%, rgba(255, 255, 255, 0)), color-stop(60%, #ffffff));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) -1%, #ffffff 60%);
  }
  .luckyClaw .kv::before {
    content: "";
    position: absolute;
    width: 15%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background: -webkit-gradient(linear, right top, left top, color-stop(-1%, rgba(255, 255, 255, 0)), color-stop(60%, #ffffff));
    background: linear-gradient(to left, rgba(255, 255, 255, 0) -1%, #ffffff 60%);
  }
}
.luckyClaw .purpleBg {
  background: linear-gradient(150deg, #ffffff 50%, #ece9f7 100%);
}
.luckyClaw .useCases {
  padding: 0px 0 100px;
  margin-top: -11%;
}
.luckyClaw .useCases__slider {
  margin-top: 50px;
}
.luckyClaw .useCases__slider .slick-list {
  margin: 0 -12px;
}
.luckyClaw .useCases__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.luckyClaw .useCases__slider .slick-slide {
  height: auto !important;
  float: none;
}
.luckyClaw .useCases__slider .slick-dots {
  bottom: -40px;
}
.luckyClaw .useCases__slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.luckyClaw .useCases__slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.luckyClaw .useCases__slider .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid #c5bce8;
  background: transparent;
  opacity: 1;
  color: transparent;
  -webkit-transition: width 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  transition: width 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.luckyClaw .useCases__slider .slick-dots li.slick-active {
  width: 28px;
}
.luckyClaw .useCases__slider .slick-dots li.slick-active button {
  width: 28px;
}
.luckyClaw .useCases__slider .slick-dots li.slick-active button:before {
  width: 28px;
  border-color: #c5bce8;
  background: #c5bce8;
}
.luckyClaw .useCases__card {
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #b770eb 0%, #c7bff5 50%, #b770eb 100%) border-box;
  -webkit-box-shadow: 0 8px 24px rgba(108, 99, 255, 0.06);
          box-shadow: 0 8px 24px rgba(108, 99, 255, 0.06);
  margin: 0 15px;
  cursor: pointer;
}
.luckyClaw .useCases__card:hover .useCases__card-media img:not(.useCases__card-play) {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.luckyClaw .useCases__card:hover .useCases__card-play {
  opacity: 0.8;
}
.luckyClaw .useCases__card-media {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.luckyClaw .useCases__card-media > img:not(.useCases__card-play) {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.luckyClaw .useCases__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}
.luckyClaw .useCases__card-txt {
  padding: 22px 20px 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
}
.luckyClaw .useCases__card-txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.35;
}
.luckyClaw .useCases__card-txt p {
  font-size: 16px;
  font-weight: 400;
  color: #777;
  margin: 0;
  line-height: 1.55;
}
@media screen and (max-width: 960px) {
  .luckyClaw .useCases {
    padding: 60px 0 80px;
    margin-top: 0%;
  }
  .luckyClaw .useCases__card-txt h3 {
    font-size: 18px;
  }
  .luckyClaw .useCases__card-txt p {
    font-size: 14px;
  }
}
.luckyClaw .keyFeatures {
  padding: 0px 0 100px;
}
.luckyClaw .keyFeatures__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.luckyClaw .keyFeatures__mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.luckyClaw .keyFeatures__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 28px 24px 20px;
  background: transparent;
  -webkit-box-shadow: 0 8px 24px rgba(108, 99, 255, 0.06);
          box-shadow: 0 8px 24px rgba(108, 99, 255, 0.06);
}
.luckyClaw .keyFeatures__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #b770eb 0%, #c7bff5 50%, #b770eb 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.luckyClaw .keyFeatures__card--tall {
  height: 100%;
}
.luckyClaw .keyFeatures__card--wide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 28px;
}
.luckyClaw .keyFeatures__card--wide .keyFeatures__card-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.luckyClaw .keyFeatures__card--wide .keyFeatures__card-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  max-width: 46%;
  margin: 0;
}
.luckyClaw .keyFeatures__card--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.luckyClaw .keyFeatures__card--reverse .keyFeatures__card-txt {
  text-align: right;
}
.luckyClaw .keyFeatures__card-txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.3;
}
.luckyClaw .keyFeatures__card-txt p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin: 0;
  line-height: 1.55;
}
.luckyClaw .keyFeatures__card-media {
  margin: 16px 0 0;
  text-align: center;
}
.luckyClaw .keyFeatures__card-media img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 960px) {
  .luckyClaw .keyFeatures {
    padding: 60px 0 80px;
  }
  .luckyClaw .keyFeatures__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .luckyClaw .keyFeatures__mid {
    gap: 16px;
  }
  .luckyClaw .keyFeatures__card--wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .luckyClaw .keyFeatures__card--wide .keyFeatures__card-txt {
    text-align: left;
  }
  .luckyClaw .keyFeatures__card--wide .keyFeatures__card-media {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 70%;
    margin: 16px auto 0;
  }
  .luckyClaw .keyFeatures__card--reverse .keyFeatures__card-txt {
    text-align: left;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .luckyClaw .keyFeatures__card--reverse .keyFeatures__card-media {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .luckyClaw .keyFeatures__card-txt h3 {
    font-size: 18px;
  }
  .luckyClaw .keyFeatures__card-txt p {
    font-size: 14px;
  }
}
.luckyClaw .download {
  padding: 173px 0;
  text-align: center;
  background: url(https://storage-asset.msi.com/event/2026/corp/luckyclaw/images/download-bg.jpg) no-repeat center center;
  background-size: cover;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}
.luckyClaw .download__titleBox {
  margin-bottom: 20px;
}
@media (min-width: 996px) {
  .luckyClaw .download__titleBox {
    margin-bottom: 40px;
  }
}
.luckyClaw .downloadPopup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  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;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.luckyClaw .downloadPopup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.luckyClaw .downloadPopup.is-open .downloadPopup__box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.luckyClaw .downloadPopup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 42, 0.45);
}
.luckyClaw .downloadPopup__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 42px 48px 36px;
  border-radius: 24px;
  border: 1px solid #c9bde8;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #f7f3fc 0%, #f4f2f8 55%, #eceaf2 100%);
  -webkit-box-shadow: 0 16px 48px rgba(80, 60, 140, 0.12);
          box-shadow: 0 16px 48px rgba(80, 60, 140, 0.12);
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-align: center;
}
.luckyClaw .downloadPopup__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  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;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.luckyClaw .downloadPopup__close:hover {
  opacity: 0.55;
}
.luckyClaw .downloadPopup__title {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  background: -webkit-linear-gradient(0deg, #131313 5%, #7963cd 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: left;
}
.luckyClaw .downloadPopup__desc {
  font-size: 17px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin: 0 0 18px;
  text-align: left;
}
.luckyClaw .downloadPopup__list {
  margin: 0 0 50px;
  padding-left: 1.15em;
  list-style: disc;
  text-align: left;
}
.luckyClaw .downloadPopup__list li {
  font-size: 17px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin-bottom: 4px;
  list-style: disc;
}
.luckyClaw .downloadPopup__list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .luckyClaw .downloadPopup__box {
    padding: 36px 24px 28px;
  }
  .luckyClaw .downloadPopup__title {
    font-size: 20px;
  }
  .luckyClaw .downloadPopup__desc, .luckyClaw .downloadPopup__list li {
    font-size: 14px;
  }
}
.luckyClaw .featuredProducts {
  padding: 100px 0;
  text-align: center;
  background: url(https://storage-asset.msi.com/event/2026/corp/luckyclaw/images/featured-products-bg.jpg) no-repeat center center;
  background-size: cover;
}
.luckyClaw .featuredProducts .common__titleBox {
  margin-bottom: 50px;
  padding: 0 20px;
}
.luckyClaw .featuredProducts__slider .slick-list {
  margin: 0 -12px;
}
.luckyClaw .featuredProducts__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.luckyClaw .featuredProducts__slider .slick-slide {
  height: auto !important;
  float: none;
}
.luckyClaw .featuredProducts__slider .slick-slide > div {
  height: 100%;
}
.luckyClaw .featuredProducts__slider .slick-dots {
  bottom: -40px;
}
.luckyClaw .featuredProducts__slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.luckyClaw .featuredProducts__slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.luckyClaw .featuredProducts__slider .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid #c5bce8;
  background: transparent;
  opacity: 1;
  color: transparent;
  -webkit-transition: width 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  transition: width 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.luckyClaw .featuredProducts__slider .slick-dots li.slick-active {
  width: 28px;
}
.luckyClaw .featuredProducts__slider .slick-dots li.slick-active button {
  width: 28px;
}
.luckyClaw .featuredProducts__slider .slick-dots li.slick-active button:before {
  width: 28px;
  border-color: #c5bce8;
  background: #c5bce8;
}
.luckyClaw .featuredProducts__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin: 0 12px;
  padding: 25px 20px 30px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  -webkit-box-shadow: 0 8px 24px rgba(108, 99, 255, 0.08);
          box-shadow: 0 8px 24px rgba(108, 99, 255, 0.08);
  -webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, background 0.25s ease;
  transition: box-shadow 0.25s ease, background 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.luckyClaw .featuredProducts__card:hover {
  -webkit-box-shadow: 0 0px 28px rgb(255, 255, 255) inset;
          box-shadow: 0 0px 28px rgb(255, 255, 255) inset;
}
.luckyClaw .featuredProducts__card:hover .featuredProducts__card-btn {
  background: #b560ea;
  border-color: #b560ea;
  color: #fff;
}
.luckyClaw .featuredProducts__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #b770eb 0%, #c7bff5 50%, #b770eb 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.luckyClaw .featuredProducts__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.3;
}
.luckyClaw .featuredProducts__card-media {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  width: 100%;
  max-width: 220px;
  margin: 45px auto 50px;
}
.luckyClaw .featuredProducts__card-media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.luckyClaw .featuredProducts__card-btn {
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 996px) {
  .luckyClaw .featuredProducts {
    padding: 80px 0 100px;
  }
  .luckyClaw .featuredProducts__card-title {
    font-size: 18px;
  }
  .luckyClaw .featuredProducts__card-media {
    max-width: 150px;
  }
  .luckyClaw .featuredProducts__card-btn {
    font-size: 14px;
    padding: 8px 24px;
  }
}
.luckyClaw .faq {
  padding: 100px 0;
  background: url(https://storage-asset.msi.com/event/2026/corp/luckyclaw/images/faq-bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 1300px) {
  .luckyClaw .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1050px) {
  .luckyClaw .faq {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .luckyClaw .faq {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.luckyClaw .accordion {
  display: none;
  position: relative;
  margin-bottom: 70px;
  padding: 50px 0;
  background: rgba(255, 255, 255, 0.5803921569);
}
.luckyClaw .accordion--active {
  display: block;
}
.luckyClaw .accordion dl {
  padding: 0 25px;
}
.luckyClaw .accordion dd {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f2fe), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, #f7f2fe 0%, rgb(255, 255, 255) 100%);
}
.luckyClaw .accordion dd a {
  text-decoration: underline;
  color: #9f47af;
}
.luckyClaw .accordion p {
  padding: 1em 2em 0;
  font-size: 16px !important;
  margin-bottom: 20px;
}
.luckyClaw .accordionTitle {
  text-align: start;
  font-weight: 500;
  padding: 25px 5px;
  font-size: 16px;
  text-decoration: none;
  color: #222222;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 1.5px solid #d8a3fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.luckyClaw .accordionTitle:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  margin-right: 1em;
  text-decoration: none;
  height: 18.03px;
  color: #bf5fe7;
}
.luckyClaw .accordionTitle:hover {
  text-decoration: none;
  color: #666666;
}
.luckyClaw .accordionTitle.is-expanded:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.luckyClaw .accordionItem {
  height: auto;
  overflow: hidden;
  max-height: 100em;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}
@media screen and (min-width: 48em) {
  .luckyClaw .accordionItem {
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}
.luckyClaw .accordionItem.is-collapsed {
  max-height: 0;
}
.luckyClaw .accordionItem.animateIn {
  -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
          animation: accordionIn 0.45s normal ease-in-out both 1;
}
.luckyClaw .accordionaas {
  width: 100%;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 996px) {
  .luckyClaw .accordionaas {
    margin-bottom: 50px;
  }
}
.luckyClaw .accordionaas .accordionTitle {
  color: #222222;
}
.luckyClaw .accordionaas dl {
  overflow: hidden;
}
@media (min-width: 996px) {
  .luckyClaw .accordion dl {
    padding: 0 50px;
  }
}
@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.msiHeader__nav {
  position: absolute;
  left: 60px;
  top: 32px;
  z-index: 100;
}/*# sourceMappingURL=main.css.map */