@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&family=Playfair:ital,wght@1,300&display=swap');
@charset 'utf-8';

.position-relative {
  -webkit-transform: translate3d(0, 0, 0); /*force hardware acceleration*/
}

html,
body {
  width: 100%;
  font-family: 'Century Gothic', 'Noto Sans TC', sans-serif;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  /*max-width: 2560px;*/
  /*background-color: #350306;*/
  /*overflow-x: hidden;*/
  scroll-behavior: smooth;
  scroll-padding-top: 0rem;
  -webkit-font-smoothing: antialiased; /*force hardware acceleration*/
}
body {
  position: relative;
}

* {
  outline: 0;
  /*outline: 1px solid yellow!important;*/
}

.fs-7 {
  font-size: 0.75rem;
}
body * {
  animation-play-state: paused !important;
}

body.loaded * {
  animation-play-state: running !important;
}
body.loaded.modal-open * {
  animation-play-state: paused;
}
.bg-move {
  position: absolute;
  z-index: -1;
  animation: bg-move 30s linear infinite;
  background-image: url(../images/mobile/bg.jpg);
  -webkit-mask-image: radial-gradient(black 80%, transparent 90%);
  mask-image: radial-gradient(black 70%, transparent 80%);
  background-size: 100% auto;
  background-position: top 30px right 0px;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100vw;
  opacity: 1;
  overflow: hidden;
  scale: 1;
}

@keyframes bg-move {
  0% {
    opacity: 1;
    scale: 1;
  }
  25% {
    opacity: 1;
    scale: 1.1;
  }
  50% {
    opacity: 1;
    scale: 1.2;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
body {
  background-color: #000;
  /*   background-image: url(../images/mobile/bg.jpg);
  background-position: top 50px right 0;
  background-repeat: no-repeat;
  background-size: 100% auto; */
}

@media (min-width: 992px) {
  /*   body {
    background-image: url(../images/bg.jpg);
    background-position: top 50px center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  } */
  .bg-move {
    background-image: url(../images/bg.jpg);
    -webkit-mask-image: radial-gradient(black 60%, transparent 70%);
    mask-image: radial-gradient(black 60%, transparent 70%);
    background-size: 100% 100%;
    background-position: top 50px center;
    height: 150vh;
    width: 100vw;
  }
}
/* Dust/Scratches background effect for the entire site */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://img.freepik.com/premium-photo/white-dust-scratches-black-background_279525-2.jpg?w=640');
  background-repeat: repeat;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.bg-red {
  background-color: #d63829;
}
.bg-green {
  background-color: #567050;
}
.bg-gold {
  background-color: #a38a4f;
}
.bg-brown {
  background-color: #c22c2b;
}
.loading {
  position: fixed;
  background-color: #c53d0f;
  /*background-image: url(../images/wave1/loading-bg.jpg);*/
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  transition: all 1s ease-out;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 992px) {
  .loading {
    position: fixed;
    background-color: #c53d0f;
    /*background-image: url(../images/wave1/loading-bg.jpg);*/
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    transition: all 1s ease-out;
    user-select: none;
    pointer-events: none;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  border-top: 3px solid #fbe382;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  animation-play-state: running !important;
  will-change: transform;
  /*transform: translateZ(0);*/
}
@keyframes rotation {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}

a:link,
a:visited,
a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: var(--bs-body-color);
}
a:focus-visible {
  outline: none;
  box-shadow: none;
}
.section-title img {
  margin-top: 3rem;
  width: 80%;
}
.section-wrapper {
  /*   background: #4c4c4c;
  background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 1) 0%,
    rgba(4, 4, 4, 1) 40%
  );
  border-radius: 24px;
  border: #000000 solid 5px; */
}
.section-wrapper-stroke {
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: rgba(170, 215, 233, 0.5) solid 2px;
}
#signInTimer {
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  width: 100%;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  text-align: center;
  padding: 2rem 1rem;
}
#signInSeconds {
  font-size: 3rem;
  color: yellow;
}
#questComplete {
  display: none;
  font-size: 2rem;
}
.us-none {
  user-select: none;
}
::selection {
  color: #fff;
  background: #000;
}

#topNav {
  position: relative !important;
  top: initial !important;
  height: 46px;
  /*background-color: transparent!important;*/
  /*display: none!important;*/
}
footer {
  /*display: none!important;*/
}

*.modal-open {
  /*padding-right: 0!important;*/
}

.modal-backdrop {
  /*background-color: transparent!important;*/
  background-color: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.2s linear;
}
.modal-backdrop.show {
  opacity: 1;
}
#app {
  width: 100%;
  overflow-x: clip;
  position: relative;
}

.container-xl {
  max-width: 1200px;
}

.s300-logo {
  width: 70%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 0;
  animation: landingLogo 0.1s ease-in-out infinite;
}
.viva-live {
  width: 100%;
  padding: 0.5rem;
  background-color: #000;
  align-self: flex-end;
}
.s300-info {
  width: 90%;
  display: flex;
  justify-content: center;
}
.viva-logo-20th {
  top: 0;
  left: 5%;
}
.viva-logo-20th img {
  width: 40%;
}
.slogan {
  position: absolute;
  right: -20px;
  top: 0;
  width: 50%;
}

@keyframes landingLogo {
  0% {
    transform: translateX(5px);
    -webkit-transform: rotate(-3deg);
  }
  50% {
    transform: translateX(-10px);
    -webkit-transform: rotate(3deg);
  }
  100% {
    transform: translateX(5px);
    -webkit-transform: rotate(-3deg);
  }
}

@media (min-width: 992px) {
  .section-title img {
    width: 50%;
  }
  .s300-logo {
    width: 45%;
    display: flex;
    justify-content: center;
  }
  .s300-info {
    width: 97%;
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
  }
  .viva-live {
    width: 40%;
    padding: 0.5rem;
    background-color: #000;
    align-self: flex-end;
  }
  .s300-logo-sub {
    width: 25%;
    right: 5%;
    top: 280px;
  }
  .viva-logo-20th {
    width: 55%;
    left: 4%;
    top: 1%;
  }
  .viva-logo-20th img {
    width: 50%;
  }
  .slogan {
    width: 25%;
    right: 10px;
    top: 560px;
  }
}
@media (min-width: 1200px) {
  .s300-logo-sub {
    width: 25%;
    right: 5%;
    top: 300px;
  }
  .s300-logo {
    width: 40%;
    display: flex;
    justify-content: center;
  }
  .viva-logo-20th {
    width: 30%;
    left: 2%;
    top: 1%;
  }
  .viva-logo-20th img {
    width: 80%;
  }
  .slogan {
    width: 25%;
    right: 30px;
    top: 620px;
  }
}
@media (min-width: 1399px) {
  .slogan {
    width: 25%;
    right: 30px;
    top: 700px;
  }
}
@media (min-width: 1400px) {
  .s300-logo-sub {
    width: 25%;
    right: 5%;
    top: 400px;
  }
  .s300-logo {
    width: 40%;
    display: flex;
    justify-content: center;
  }
  .viva-logo-20th {
    width: 30%;
    left: 2%;
    top: 1%;
  }
  .viva-logo-20th img {
    width: 60%;
  }
  .slogan {
    width: 25%;
    right: 30px;
    top: 880px;
  }
}

.live-text {
  display: flex;
  justify-content: center;
  padding: 1rem 0 0;
}
.live-time {
  background-color: rgba(198, 128, 54, 1);
  display: flex;
  justify-content: center;
  padding: 0.75rem;
}
.item-today-wrapper {
  /* filter: drop-shadow(0 0 55px rgba(255, 212, 119, 0.998)); */
}
.drop-shadow {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.75));
}
.item-today {
  display: flex;
  flex-direction: column-reverse;
  background-color: #fff;
  padding: 0.5rem;
  font-family: 'Century Gothic', 'Noto Sans TC', sans-serif;
  gap: 0.5rem;
}

.item-today-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.item-today-fullname {
  padding: 0.5rem 0.5rem 1rem;
  border-bottom: 5px solid #e8e8e8;
  margin-bottom: 1.5rem;
  font-size: 20px;
}
.item-today-brand {
  font-weight: bold;
  margin-right: 0.5rem;
}

.item-today-feature {
  font-size: 16px;
  margin-bottom: 0rem;
}
.item-today-feature ul li {
  margin-bottom: 0.5rem;
}
.item-today-price {
  margin-top: auto;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  font-size: 26px;
  text-align: center;
}
.item-today-price-type {
  color: #ac020d;
}
.item-today-price-number {
  color: #ac020d;
  font-size: 36px;
  letter-spacing: -2px;
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .item-today-price-number {
    color: #ac020d;
    font-size: 48px;
    letter-spacing: -2px;
    margin-right: 1rem;
  }
}
.item-today-price-delete {
  color: #898989;
  text-decoration: line-through;
  letter-spacing: -1px;
}
.item-today-price-delete:before {
  content: '$';
}
.item-today-image {
  width: 100%;
  border: 1px solid #b71d2c;
  position: relative;
  margin-bottom: auto;
}
.item-today-discount-number {
  font-size: 28px;
}
.item-today-discount {
  color: #fff;
  /*background-color: #b71d2c;*/
  background-color: rgba(183, 29, 44, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.125rem 0.75rem;
  pointer-events: none;
}
.item-discount-number {
  font-size: 18px;
}
.item-discount {
  color: #fff;
  background-color: rgba(183, 29, 44, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.125rem 0.5rem;
  pointer-events: none;
}

@media (min-width: 992px) {
  .live-text {
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
  }
  .item-today {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 2rem;
    font-family: 'Century Gothic', 'Noto Sans TC', sans-serif;
    gap: 2rem;
  }
  .item-today-info {
    width: 65%;
    display: flex;
    flex-direction: column;
  }
  .item-today-info.preview {
    width: 80%;
  }
  .item-today-image {
    width: 35%;
    border: 1px solid #b71d2c;
    position: relative;
    margin-bottom: auto;
  }
  .item-today-image.preview {
    width: 20%;
  }
  .item-today-fullname {
    padding: 0.5rem 0.5rem 1rem;
    border-bottom: 5px solid #e8e8e8;
    margin-bottom: 1.5rem;
    font-size: 25px;
  }
  .item-today-feature {
    font-size: 22px;
    margin-bottom: 1rem;
  }
  .item-today-price {
    margin-top: auto;
    margin-bottom: initial;
    padding: 0 0.5rem;
    font-size: 26px;
    text-align: left;
  }
  .item-discount-number {
    font-size: 28px;
  }
  .item-discount {
    color: #fff;
    background-color: rgba(183, 29, 44, 0.95);
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.125rem 0.75rem;
    pointer-events: none;
    font-size: 1rem;
  }
}

img[src='/html/images/act/2022/11/11/images/img-error.png'] {
  background-color: #2b0205;
}

.item-date {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.85));
  padding: unset;
  color: #fff;
  -webkit-text-fill-color: #ee0000; /* Will override color (regardless of order) */
  /*   -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff; */
}

.item-date-today {
  color: #fff;
  background-color: #c68036;
  border-radius: 25px;
  /* background-image: url(../images/item-date-today.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.item-inner {
  background-color: #fff;
  background-image: url(../images/frame.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  --border-size: 4px;
  --border-size-m: 2px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  transition: all 0.2s linear;
  position: relative;
}

@media (min-width: 992px) {
  .item-inner {
    background-size: 100% 100%;
  }
  .item-date {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.85));
    padding: 0.5rem;
  }
  .item-inner:hover {
    transform: translateY(-5px);
  }
  .item-inner:hover:after {
    /*height: calc(100% + calc(2*var(--border-size)));*/
  }
}
.item-inner img {
  /*border-radius: 1rem;*/
  aspect-ratio: 1/1;
}

.item-inner a:link,
.item-inner a:visited,
.item-inner a:focus,
.item-inner a:hover,
.item-inner a:active {
  /*color: #fffed7;*/
}

.item-body {
  /*box-shadow: 0 10px 10px rgba(255, 255, 255, .5);*/
  /*border: 2px solid #ffe78e;*/
  position: relative;
}

.item-body > a.d-block {
  /*border-top-left-radius: .5rem;
	border-top-right-radius: .5rem;
	border: 1px solid rgb(198, 156, 103);*/
  overflow: hidden;
}

.item-slogan {
  font-size: 0.75rem;
  line-height: 20px;
  border-bottom: 3px dotted #ddd;
  padding-bottom: 0.5rem;
  color: #ac760f;
}

.item-name {
  font-size: 0.875rem;
  line-height: 20px;
  /*color: #fbffe9;*/
}

.item-brand span,
.item-brand a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  height: 1.5rem;
}
.item-name span,
.item-name a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  line-height: 1.5;
  height: 1.5rem;
  text-align: center;
  white-space: pre-wrap;
}
@media (min-width: 992px) {
  .item-name span,
  .item-name a {
    line-height: 1.5;
    height: 2.5rem;
  }
}
.oneday-section .item-name span,
.oneday-section .item-name a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  height: 1.25rem;
}

.item-name.double-lines span,
.item-name.double-lines a {
  /*display: -webkit-box;*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  /*-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;*/
  word-break: break-all;
  white-space: pre-wrap;
  height: 2.75rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25;
}
@media (min-width: 992px) {
  .item-name.double-lines span,
  .item-name.double-lines a {
    font-size: 1.1rem;
  }
}
.item-brand {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  /*color: #fffed7;*/
  padding: 0 1rem;
}
.item-brand a:link,
.item-brand a:visited,
.item-brand a:focus,
.item-brand a:hover,
.item-brand a:active {
  /*color: #fffed7;*/
}

.item-price {
  font-size: 18px;
  color: #dc3c14;
  font-family: 'Century Gothic', 'Noto Sans TC', serif;
  letter-spacing: -1px;
}

.item-price.dollar-sign:before {
  color: #f8cf01;
}

.item-price .price-type {
  color: #ac020d;
  font-size: 1.25rem;
  font-weight: normal;
}
.item-price .dollar-sign {
  color: #ac020d;
  font-size: 1.25rem;
}

.item-price span {
  color: #ac020d;
}

@media (max-width: 768px) {
  .item-price .price-type,
  .item-price .dollar-sign {
    font-size: 0.875rem;
  }
}

.coming-soon {
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .coming-soon {
    font-size: 1.25rem;
  }
}

.scrollToTop {
  position: fixed;
  width: 40px;
  height: 40px;
  /*background: #3f3c42;*/
  right: 5px;
  bottom: 5px;
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #3f3c42;
  border: 0px solid #d49655;
  border-radius: 20px;
}
.scrollToTop .fas {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  height: 1em;
}

.item {
  z-index: 2;
}

iframe {
  /*border-radius: 16px;*/
  overflow: hidden;
}

@media (min-width: 1200px) {
  html,
  body {
    font-size: 16px;
  }
  iframe {
    overflow: hidden;
  }

  .item-slogan {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .item-name {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .item-note {
    font-size: 30px;
    line-height: 2.7rem;
    color: #ac020d;
  }

  .item-brand {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.125rem;
    padding: 0.5rem;
  }
  .item-price {
    font-size: 30px;
  }

  .item-price.dollar-sign:before {
    font-family: 'Noto Sans TC';
    font-weight: 400;
    content: '$';
    color: #946d31;
  }

  .coming-soon {
    font-size: 1.5rem;
    letter-spacing: -1px;
  }

  #app {
    min-height: calc(100vh - 108px);
  }

  .scrollToTop {
    right: 10px;
    bottom: 10px;
  }
}
.landing-main {
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100%;
}
/* ===== WEBGL SECTION ===== */
.sticky-container {
  position: fixed;
  height: 500vh;
  width: 100%;
  margin: 0;
}

.webgl-section {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  overflow: hidden;
  will-change: transform, opacity, filter;
}

.canvas-container {
  width: 100%;
  height: 100%;
  position: relative;
  will-change: transform, opacity, filter;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas#space {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
