html {
  touch-action: manipulation;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

body {
  min-height: 100dvh;
  font-family: "Arial Black", Arial, sans-serif;
  height: 100dvh;
  touch-action: manipulation;
  background: radial-gradient(
    circle at center,
    #991010 0%,
    #650707 45%,
    #280101 100%
  );
}

/* Pc View Page */
.pc-view-container {
  display: none;
  background: radial-gradient(
    circle at center,
    #991010 0%,
    #650707 45%,
    #280101 100%
  );
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.pc-view-container img {
  width: 32vw;
  max-width: 18rem;
}

.pc-view-container .pc-view-copy {
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.pc-view-container .pc-view-copy h4 {
  color: #ffffff !important;
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .pc-view-container {
    display: flex;
  }
}

.header-container {
  position: absolute;
  z-index: 200;
  background: #261000;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.header-top-bar {
  background: #551a18;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0px;
}

.header-sunfeast-logo {
  width: 40px;
  margin-left: 10px;
}

.header-df-logo {
  display: none;
  visibility: hidden;
  opacity: 0;
  width: 65px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.header-itc-logo {
  width: 35px;
  margin-right: 10px;
  display: block;
  visibility: visible;
  opacity: 1;
  transition:
    visibility 400ms ease-in-out,
    opacity 400ms ease-in-out;
}

#pauseBtn {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 12px;
  right: 10px;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  transition:
    visibility 400ms ease-in-out,
    opacity 400ms ease-in-out;
}

#pauseBtn img {
  width: 28px;
  pointer-events: none;
}

#headerHomeBtn {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 8px;
  right: 10px;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  transition:
    visibility 400ms ease-in-out,
    opacity 400ms ease-in-out;
}

#headerHomeBtn img {
  width: 35px;
  pointer-events: none;
}

.header-marquee {
  width: 100%;
  height: 25px;
  background: #fff775;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid #d5b045;
  border-bottom: 1px solid #d5b045;
}

.header-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeMove 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 10px;
}

.marquee-item span {
  color: #de1f26;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.marquee-item strong {
  color: #6c1316;
}

.marquee-item img {
  width: 45px;
  margin-left: 10px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
