@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maitree:wght@200;300;400;500;600;700");
@import url("https://fonts.googleapis.com/css2?family=Schoolbell&display=swap");
body.links-page {
  width: 100vw;
  height: 100vh;
  background: url("../img/bg-blur.webp") center/cover no-repeat #000;
}

.links-logo {
  text-align: center;
  padding: 32px 0;
}
.links-logo img {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}

#links-container {
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  margin: 2rem auto;
}
#links-container .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#links-container .container .button {
  width: 100%;
  margin-bottom: 0 !important;
  font-size: 1.4rem;
  padding: 1rem 1.4rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
}
#links-container .container .button i {
  font-size: 1.8rem;
}
#links-container .container .button .fa-steam {
  color: #171a21;
}
#links-container .container .button .fa-discord {
  color: #5865F2;
}
#links-container .container .button .fa-tiktok {
  color: #EE1D52;
}
#links-container .container .button .fa-youtube {
  color: #FF0000;
}
#links-container .container .button .fa-instagram {
  color: #E4405F;
}
#links-container .container .platforms {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
#links-container .container .platforms a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 auto;
  padding: 2rem 1rem;
}
#links-container .container .platforms a.button i {
  font-size: 3rem;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: -3px 3px 0 2px #861b20;
  border: 5px solid #c24a0e;
}

.play-button {
  width: 90px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  position: relative;
  transition: background-color 0.3s;
}

.video-wrapper:hover .play-button {
  background-color: #ff0000;
}

.play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-colo1r: transparent transparent transparent #fff;
  position: absolute;
  top: 15px;
  left: 35px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

body {
  margin: 0;
  padding: 0;
  background: #222;
  font-family: "Maitree", sans-serif;
  font-weight: 300;
  font-style: normal;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title {
  font-family: "Kanit", sans-serif;
}

.jumbo {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.background {
  position: absolute;
  top: -10vh;
  left: 0;
  width: 100%;
  height: 130vh;
  background: url("../img/bg.png") center/cover no-repeat;
  transform: translateY(0);
  transition: transform 0.1s linear;
  filter: blur(0) brightness(0.6) saturate(0.8);
}

#video-modal, #image-modal {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#video-modal.show, #image-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: black;
  padding: 15px;
  border-radius: 8px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

#video-modal.show .modal-content, #image-modal.show .modal-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

iframe {
  width: 1280px;
  height: 768px;
}

.box {
  position: relative;
  background: url("../img/bg-repeat-l.png") fixed repeat-y #222;
  background-size: contain;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.box.padded {
  padding: 64px 0;
}
.box .inner-box {
  background: #1b1b1b;
  padding: 32px;
}
.box .inner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  transform: rotate(180deg);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" transform="scale(-1,-1)" viewBox="0 0 1000 100"><path d="m0 4 150 40h160l190 50 190-50h160l150-40V0H0v4z" fill="%23222"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.box .text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 64px;
  padding: 1ch 1.5ch;
}
.box.bordered::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" transform="scale(-1,-1)" viewBox="0 0 1000 100"><path d="m0 4 150 40h160l190 50 190-50h160l150-40V0H0v4z" fill="%23222"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.box.bordered .logo {
  padding: 32px;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -320px;
  margin-left: -10px;
}

button, .button {
  background: #fddd4d linear-gradient(to bottom, #fddd4d 5%, #fccf05 100%);
  border-radius: 32px;
  box-shadow: -3px 3px 0 2px #861b20;
  border: 5px solid #c24a0e;
  display: inline-block;
  cursor: pointer;
  color: #c24a0e;
  font-size: 42px;
  padding: 8px 32px;
  text-decoration: none;
  position: relative;
  font-family: "Schoolbell", cursive;
  font-weight: bold;
  text-shadow: -2px 2px 1px #ffde51;
}
button.small, .button.small {
  transform: scale(0.8);
}
button:hover, .button:hover {
  background: #fccf05 linear-gradient(to bottom, #fccf05 5%, #fddd4d 100%);
}
button:active, .button:active {
  position: relative;
  top: 1px;
}
button#play-btn, .button#play-btn {
  margin-top: 0;
}
button#play-btn::after, .button#play-btn::after {
  pointer-events: none;
  background: url("../img/arrow.png") no-repeat top;
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
  content: "Watch The Trailer!!";
  color: #fff;
  font-size: 24px;
  position: absolute;
  padding-top: 64px;
  right: -280px;
  top: -50px;
  width: 250px;
  transform: rotate(-25deg);
  text-shadow: none;
}
@media screen and (max-width: 768px) {
  button#play-btn::after, .button#play-btn::after {
    display: none;
  }
}

header {
  z-index: 999999;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
  }
}
header .logo-container {
  width: 128px;
}
header nav {
  display: flex;
  gap: 8px;
  font-size: 2rem;
}
header nav .link {
  padding: 8px 16px;
  text-align: center;
  color: #fccf05;
  text-shadow: rgb(194, 74, 14) 3px 0 0, rgb(194, 74, 14) 2.83487px 0.981584px 0, rgb(194, 74, 14) 2.35766px 1.85511px 0, rgb(194, 74, 14) 1.62091px 2.52441px 0, rgb(194, 74, 14) 0.705713px 2.91581px 0, rgb(194, 74, 14) -0.287171px 2.98622px 0, rgb(194, 74, 14) -1.24844px 2.72789px 0, rgb(194, 74, 14) -2.07227px 2.16926px 0, rgb(194, 74, 14) -2.66798px 1.37182px 0, rgb(194, 74, 14) -2.96998px 0.42336px 0, rgb(194, 74, 14) -2.94502px -0.571704px 0, rgb(194, 74, 14) -2.59586px -1.50383px 0, rgb(194, 74, 14) -1.96093px -2.27041px 0, rgb(194, 74, 14) -1.11013px -2.78704px 0, rgb(194, 74, 14) -0.137119px -2.99686px 0, rgb(194, 74, 14) 0.850987px -2.87677px 0, rgb(194, 74, 14) 1.74541px -2.43999px 0, rgb(194, 74, 14) 2.44769px -1.73459px 0, rgb(194, 74, 14) 2.88051px -0.838247px 0;
  text-decoration: none;
  position: relative;
}
header nav .link:hover {
  color: #ffde51;
}
header nav .link.wishlist::after, header nav .link.wishlist:before {
  pointer-events: none;
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
  content: "Wishlist Now!";
  text-shadow: none;
  color: #fff;
  font-size: 16px;
  position: absolute;
  padding-top: 16px;
  right: -100px;
  top: 60px;
  width: 200px;
  transform: rotate(-15deg);
}
header nav .link.wishlist:before {
  background: url("../img/arrow.png") no-repeat top left/16%;
  content: "";
  right: 0;
  top: 120px;
  transform: rotate(-45deg) scaleX(-1);
}

h3 {
  font-size: 42px;
  color: #fccf05;
  text-transform: uppercase;
  background-image: linear-gradient(to bottom, #fbd94a, #c0490e);
  background-repeat: repeat;
  background-size: 42px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

.warning-border {
  padding: 16px 32px 32px;
  border: 10px solid #151515;
  border-image: repeating-linear-gradient(-55deg, #151515, #151515 20px, #d07521 20px, #d07521 40px) 10;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .columns {
    flex-direction: column;
  }
}
.columns .text {
  flex: 1 auto;
}
.columns .media-stack {
  position: relative;
  flex: 1 auto;
  transition: all 0.1s ease-in-out;
}
.columns .media-stack:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.columns .media {
  width: 640px;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  border: 6px solid #151515;
  border-image: repeating-linear-gradient(-55deg, #151515, #151515 20px, #d07521 20px, #d07521 40px) 10;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .columns .media {
    width: 480px;
    height: 260px;
  }
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.scroll-hint,
.scroll-hint:before {
  display: block;
  bottom: 50px;
  left: 50%;
}

.scroll-hint {
  position: absolute;
  overflow: hidden;
  top: 100vh;
  width: 30px;
  height: 60px;
  margin-left: -10px;
  margin-top: -80px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  z-index: 1000;
}

.scroll-hint:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: 11px;
  top: 32px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}

.scroll-hint:after {
  display: block;
  color: #fff;
  font-size: 12px;
  text-align: center;
  content: "scroll to continue";
  position: relative;
  top: 64px;
  left: -30px;
  width: 100px;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}
body:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #c0490e;
  border-image: linear-gradient(to bottom, #c0490e, #45050d) 0 100%;
  z-index: 9999;
  pointer-events: none;
}

.bite, .blood {
  display: block;
  content: " ";
  position: absolute;
  background: url("../img/bite.png") no-repeat center center;
  background-size: cover;
  width: 128px;
  height: 43px;
  z-index: 99;
  pointer-events: none;
}
.bite.top-right, .blood.top-right {
  transform: rotate(90deg);
  top: 35px;
  right: -54px;
}
.bite.top-left, .blood.top-left {
  top: -10px;
  left: 0;
}
.bite.bottom-right, .blood.bottom-right {
  bottom: -10px;
  right: 0;
  transform: rotate(180deg);
}
.bite.bottom-left, .blood.bottom-left {
  bottom: 35px;
  left: -54px;
  transform: rotate(-90deg);
}

.blood {
  height: 128px;
  z-index: -1;
  background: url("../img/blood.png") no-repeat center center;
}
.blood.top-right {
  top: -5px;
  right: -24px;
}
.blood.top-left {
  top: -24px;
}
.blood.bottom-right {
  bottom: -24px;
  right: 0;
}
.blood.bottom-left {
  bottom: 0;
  left: -24px;
}

.footer-links .logo-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .footer-links .logo-links {
    margin: 6ch 0;
  }
}
.footer-links .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links .social-links .link {
  padding: 8px 16px;
  text-align: center;
  color: #fccf05;
  text-shadow: rgb(194, 74, 14) 3px 0 0, rgb(194, 74, 14) 2.83487px 0.981584px 0, rgb(194, 74, 14) 2.35766px 1.85511px 0, rgb(194, 74, 14) 1.62091px 2.52441px 0, rgb(194, 74, 14) 0.705713px 2.91581px 0, rgb(194, 74, 14) -0.287171px 2.98622px 0, rgb(194, 74, 14) -1.24844px 2.72789px 0, rgb(194, 74, 14) -2.07227px 2.16926px 0, rgb(194, 74, 14) -2.66798px 1.37182px 0, rgb(194, 74, 14) -2.96998px 0.42336px 0, rgb(194, 74, 14) -2.94502px -0.571704px 0, rgb(194, 74, 14) -2.59586px -1.50383px 0, rgb(194, 74, 14) -1.96093px -2.27041px 0, rgb(194, 74, 14) -1.11013px -2.78704px 0, rgb(194, 74, 14) -0.137119px -2.99686px 0, rgb(194, 74, 14) 0.850987px -2.87677px 0, rgb(194, 74, 14) 1.74541px -2.43999px 0, rgb(194, 74, 14) 2.44769px -1.73459px 0, rgb(194, 74, 14) 2.88051px -0.838247px 0;
  text-decoration: none;
  position: relative;
  font-size: 3rem;
}
.footer-links .social-links .link:hover {
  color: #ffde51;
}

#leaderboard {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

th {
  background-color: rgba(0, 0, 0, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
}

tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

td {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
}

tr.rank-1 {
  border-left: 4px solid #FFD700;
}
tr.rank-1 td {
  font-size: 1.4em;
  font-weight: bolder;
}
tr.rank-2 {
  border-left: 4px solid #C0C0C0;
}
tr.rank-2 td {
  font-size: 1.2em;
}
tr.rank-3 {
  border-left: 4px solid #CD7F32;
}
tr.rank-3 td {
  font-size: 1.1em;
}

input {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.faq {
  margin-top: 32px;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Kanit", sans-serif;
  font-size: 24px;
  color: #fccf05;
  background-image: linear-gradient(to bottom, #fbd94a, #c0490e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  padding: 16px;
  margin: 0;
  font-size: 18px;
}

.faq-answer a {
  color: #fccf05;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-note {
  font-size: 16px;
  opacity: 0.7;
  text-align: center;
  margin-top: 24px;
}

/*# sourceMappingURL=main.css.map */
