@charset "UTF-8";
@font-face {
  font-family: SF Pro Display;
  src: url(./SFProDisplay-Regular-xtUeAkBY.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 
@font-face {
  font-family: SF Pro Display;
  src: url(./SFProDisplay-Medium-DqTLIdsN.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: SF Pro Display;
  src: url(./SFProDisplay-Bold-CMK7PUaV.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: Arial Rounded MT Bold;
  src: url(./ArialRoundedMTBold-CAsiKAp1.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

:root {
  --sponsor-height: 49px;
  background-color: #0a011d;
  font-family:
    SF Pro Display,
    sans-serif;
  color: #fff;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html,
body {
  overscroll-behavior-y: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  width: 100%;
  background-color: #000;
}

header,
main {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.general-container {
  width: 100%;
}

header {
  display: flex;
  justify-content: right;
  text-align: center;
  padding-right: 30px;
}

.footer {
  width: 100%;
  background: linear-gradient(to right, #1e0329, #250034);
  padding: 17px 15px 10px;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 10px !important;
}

.footer .footer-content > div {
  text-align: center;
}

.footer .footer-content > div:nth-child(2) p {
  display: flex;
  justify-content: center;
}

.footer .footer-content > div ul {
  list-style-type: none;
}

.footer .footer-content > div ul li {
  margin-bottom: 10px;
}

.footer .footer-content > div ul a {
  color: #94ffc1;
  text-decoration: underline;
  line-height: 1.5;
  text-underline-offset: 3px;
  font-size: 18px;
}

.footer .footer-content > div h3 {
  font-size: 18px;
}

.footer .footer-content > div:first-child ul {
  margin-top: 15px;
}

.footer .footer-content > div:first-child img {
  width: 210px;
  height: 66px;
}

.footer .footer-content > div .contact-footer {
  margin: 15px 0 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer .footer-content > div .contact-footer button {
  background: none;
  border: none;
  cursor: pointer;
}

.footer .footer-content > div .contact-footer img {
  width: 38px;
  height: 38px;
}

.footer .footer-content > div .logo-footer {
  width: 120px;
  height: 110px;
  margin-top: -10px;
}

.footer .footer-content > div .support {
  width: 339px;
  height: 55px;
  cursor: pointer;
}

.copyright {
  margin: 10px 0;
  color: #fff;
  -webkit-text-stroke: 0.5px #710bc0;
}

.main-desc {
  margin-top: 15px;
  font-size: 12px;
  color: #cfb689;
}

.main-desc > a {
  display: inline-block;
  margin: 0 3px;
  color: #f68ef9;
  font-weight: 600;
}

#password {
  padding-right: 40px;
}

.btn-web {
  cursor: pointer;
}

.btn-eye {
  background-image: url(../assets/eye1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 10px);
  right: 12px;
  transform: translateY(-50%);
  transition: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.btn-eye:active {
  transform: translateY(-50%);
}

.btn-eye.slash {
  background-image: url(../assets/eye2.png);
}

.contact-box {
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  left: 25px;
}

.contact-box img {
  width: 33px;
}

.contact-box button {
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-size: 16px;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 270px;
  left: calc(50% + 290px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
}

#scrollToTopBtn img {
  width: 100%;
}

body:not(.scrolled) #scrollToTopBtn {
  transition: none;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bottom-content,
.main-inner {
  padding: 0 15px;
}

.bottom {
  display: flex;
  justify-content: center;
  padding: 0 15px;
  width: 100%;
  background: #090926;
  margin-top: -2px;
}

#loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #290324;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.main-inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url(../assets/background-sp.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
}

#playerDiv1,
#playerDiv2 {
  border-radius: 30px;
}

.logo-box {
  text-align: center;
  margin: 0 auto 15px;
  max-width: 745px;
}

.logo-box > .lottie-box img {
  width: 130px;
}

.logo-box .logo-title {
  width: 200px;
  transform: translateY(10px);
}

.download-1111 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  top: 40%;
  width: 63%;
  height: 10%;
  left: 27%;
  cursor: pointer;
}

.download-1111 > img {
  height: auto !important;
  width: 25% !important;
}

.dl-img {
  animation: bounce 1s infinite;
}

.download-1 {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.download-1 .img-1 {
  width: 52px;
}

.download-1 .dl-img {
  width: 20px;
  margin-left: 3px;
}

.access-text {
  position: fixed;
  z-index: 99;
  width: 105px;
  right: 0;
  top: 12px;
  cursor: pointer;
}

.access-text #openModalAccess {
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-text #openModalAccess img {
  width: 100%;
}

.access-text .dl-icon {
  width: 17px !important;
  position: absolute;
  left: 4px;
  animation: bounce 1s infinite;
}

.form-signup {
  position: relative;
  width: 100%;
  text-align: center;
  background-image: url(../assets/form-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px;
  margin: 15px auto 0;
}

.form-signup .input-icon {
  width: 20px;
  position: absolute;
  left: 15px;
  top: calc(50% - 12px);
  transform: translateY(-50%);
}

.form-signup input {
  height: 60px;
  border-radius: 20px;
  padding: 0 15px 0 40px;
  width: 100%;
  border: 1px solid #a197ff;
  color: #fff;
  background: transparent;
}

.form-signup input:active,
.form-signup input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #a197ff;
}

.form-signup input::placeholder {
  color: #bec5ff;
  opacity: 0.7;
}

.form-signup .btn-signup {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.form-signup .btn-signup > button {
  position: relative;
  width: 266px;
  max-width: 100%;
  height: 47px;
  font-size: 17px;
  font-weight: 700;
  background-color: transparent;
  border: 0;
  background-image: url(../assets/signup-btn.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.form-signup .btn-signup > button span {
  display: inline-block;
  background: linear-gradient(to bottom, #fff, #fff 45%, #b394ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: zoomInOut 2s infinite ease-in-out;
}

.error {
  position: absolute;
  bottom: -1px;
  color: red;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box input {
  width: 60% !important;
  height: 48px !important;
  padding-left: 15px !important;
}

.captcha-box #captchaBg {
  width: 110px;
  height: 40px;
  border-radius: 8px;
}

.captcha-box .reload-icon {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.captcha-box .reload-icon img {
  width: 23px;
  height: 23px;
}

body.toast-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

#toast-overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  min-height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: start;
  z-index: 9999;
  padding-top: 30%;
  animation: fadeIn 0.3s ease;
}

.toast-box {
  background: #ccc;
  color: #333;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  text-align: center;
  width: 280px;
  max-width: 85%;
  animation: slideUp 0.3s ease;
}

.toast-message {
  margin-bottom: 12px;
  line-height: 1.5;
}

.toast-btn {
  background: #091690;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.banner-left {
  margin-top: -30px;
}

.banner-left .banner-1111 {
  padding-top: 30px;
}

.banner-left .banner-1111 > img {
  border-radius: 30px;
  overflow: hidden;
}

.banner-left .domain-link {
  position: absolute;
  bottom: 129px;
  font-size: 11.5px;
  left: 44px;
  z-index: 9;
  max-width: 100px;
  overflow: hidden;
}

.phishing-text {
  margin: 15px 0;
  color: #fff;
  background: url(../assets/bg-phishing-text.png) no-repeat;
  background-size: contain;
  padding: 5px 0;
  line-height: 1.5;
  font-size: 15px;
  font-family:
    SF Pro Display,
    sans-serif;
}

.phishing-text > span {
  border-bottom: 1px solid rgba(204, 156, 201, 0.7607843137);
  display: inline-block;
}

.phishing-text .access-1111 {
  color: #fb0;
  font-weight: 700;
  font-size: 15px;
}

.phishing-text .domain-style {
  font-weight: 600;
  background: linear-gradient(to bottom, #fff, #ffe0b6 49%, #cc9cc9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
}

.phishing-text .real {
  background: linear-gradient(to bottom, #6bffa9, #00963c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  font-weight: 600;
}

.phishing-text .fake {
  background: linear-gradient(to bottom, #ff6a6a, #960000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  font-weight: 600;
}

.modal-slide .slick-dots {
  bottom: -5px;
}

.modal-slide .slick-dots li button {
  width: 20px;
}

.partner {
  margin-top: 15px;
  width: 270px;
}

.bottom-box {
  position: relative;
  text-align: center;
}

#noApp {
  display: none;
  margin-top: 5px;
  font-size: 11px;
}

#noApp p {
  color: #cfb689;
  line-height: 1;
}

.no-app-content .app-name {
  margin-bottom: 5px;
}

.no-app-content .custom-sp {
  margin-top: -3px;
}

.no-app-content .btn-web {
  margin-bottom: 0;
}

.install-btn {
  margin-top: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.install-btn button {
  overflow: hidden;
  position: relative;
  background-color: transparent;
  border: 0;
  width: 290px;
}

.install-btn button img {
  width: 100%;
}

.access-btn {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.access-btn button {
  background-color: transparent;
  border: 0;
  width: 292px;
  height: 46px;
  border-radius: 15px;
}

.access-btn button img {
  width: 100%;
}

.divider {
  text-align: center;
  padding: 5px 0;
  width: 100%;
}

button {
  font-size: 16px;
  touch-action: manipulation;
}

.access-btn button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  z-index: 1;
}

.access-btn button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: calc(100% - 4px);
  height: calc(100% + 1px);
  background: linear-gradient(90deg, #fff, #760083, #760083, #fff);
  background-size: 400%;
  z-index: -1;
  animation: borderRun 8s linear infinite;
  border-radius: 30px;
}

.access-btn button:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: -1;
  border-radius: 6px;
}

.animated-border {
  position: relative;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 195, 110, 0.52), rgba(255, 233, 200, 0.49));
  background-size: 200% 100%;
  position: absolute;
  width: calc(100% - 37px);
  left: 20px;
}

.animated-top {
  top: 3.5px;
  animation: moveGradient 2.2s linear infinite;
}

.animated-bottom {
  bottom: 9px;
  animation: moveGradient2 2.2s linear infinite;
}

.highlight-btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 35px;
  clip-path: polygon(12px 0%, calc(100% - 14px) 0%, 100% 14px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  animation: fadeBg 2s infinite;
  transition: background-color 2s ease;
}

.banner-left {
  position: fixed;
  left: 5%;
  transform: translateY(-50%);
  display: none;
  width: 335px;
  height: 650px;
  overflow: hidden;
}

.banner-left .slick-dots {
  bottom: -20px;
}

.banner-left img {
  width: 100%;
  height: 100%;
}

.banner-left .banner-phishing {
  padding-top: 33px;
}

.banner-left .banner-phishing .phishingDomain > span {
  display: inline-block;
  width: 210px;
  height: 33px;
  overflow: hidden;
  background: #4e3737;
  border-radius: 4px;
  border: 1px solid #d55658;
  padding: 6px 2px 1px 0;
}

.banner-left .banner-phishing .phishingDomain > span img {
  height: auto;
}

.banner-left .banner-phishing .domain1,
.banner-left .banner-phishing .domain2 {
  position: absolute;
  left: 48px;
}

.banner-left .banner-phishing .domain1 {
  top: 192px;
}

.banner-left .banner-phishing .domain2 {
  top: 295px;
}

.display-pc,
.contact-pc {
  display: none;
}

#scrollTop1,
#scrollTop2 {
  position: fixed;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
  z-index: 9;
}

body.modal-open,
body.modal-open-access {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

#modalContent.show,
#modalContentAccess.show {
  opacity: 1;
  visibility: visible;
}

#modalContentAccess {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100dvh;
  min-height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #060516, #36064a, #060516);
  opacity: 0;
  visibility: hidden;
}

#modalContentAccess .modal-content {
  position: relative;
  max-height: 630px;
  width: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#modalContentAccess .modal-content .download-1111 {
  top: 32%;
}

#modalContentAccess #closeBtn,
#modalContentAccess #closeBtnAccess {
  background: transparent;
  border: 0;
  width: 33px;
  height: 33px;
  position: absolute;
  top: 20px;
  right: -30px;
  z-index: 9;
  cursor: pointer;
}

#modalContentAccess img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#modalContent {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100dvh;
  min-height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #060516, #36064a, #060516);
  opacity: 0;
  visibility: hidden;
}

#modalContent .modal-content {
  position: relative;
  height: 630px;
  width: 350px;
  margin: 0 auto;
}

#modalContent .modal-content:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../assets/real-fake-sp3.png);
  top: 10px;
  left: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#modalContent .modal-content .phishingDomain > span {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
}

#modalContent .modal-content .domain-link {
  position: absolute;
  z-index: 9;
  top: 69.6%;
  left: 16%;
  font-size: 90%;
  max-width: 35%;
  overflow: hidden;
}

#modalContent .modal-content .domain1,
#modalContent .modal-content .domain2 {
  position: absolute;
  z-index: 10;
  left: 65px;
}

#modalContent .modal-content .domain1 {
  top: 28.5%;
}

#modalContent .modal-content .domain2 {
  top: 47.7%;
}

#modalContent #closeBtn,
#modalContent #closeBtnAccess {
  background: transparent;
  border: 0;
  width: 33px;
  height: 33px;
  position: absolute;
  top: 20px;
  right: -30px;
  z-index: 9;
  cursor: pointer;
}

#modalContent img {
  width: 100%;
}

.bottom-content {
  margin: 70px 0 30px;
  padding: 10px;
  border-radius: 20px;
}

.bottom-content .hl {
  font-weight: 700;
  font-size: 16px;
  color: #26fbff;
}

.bottom-content > p {
  margin: 15px 0;
  line-height: 1.4;
}

.bottom-content > img {
  width: 100%;
  margin: 10px 0;
}

.center-text {
  font-size: 14px;
  text-align: center;
  margin-top: 0 !important;
  font-style: italic;
  font-family: Roboto, sans-serif;
}

.title01 {
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #fff, #5ffaff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  font-size: 14px;
  padding-top: 3px;
  text-transform: uppercase;
}

.streaming-box {
  display: none;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.arrow-scroll {
  position: absolute;
  top: calc(100vh - 45px);
  left: 50%;
  transform: translate(-50%);
  cursor: pointer;
}

.arrow-scroll img {
  width: 12px;
  display: inline-block;
  animation: bounce 1.5s infinite ease-in-out;
}

.banner-right {
  position: fixed;
  right: 5%;
  z-index: 100;
  display: none;
  width: 321px;
  height: 573px;
}

.banner-right img {
  width: 100%;
  height: 100%;
}

.slick-dots {
  bottom: 0;
  list-style: none;
  display: flex !important;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.slick-dots li {
  height: auto;
}

.slick-dots li::marker {
  content: none;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-dots li button {
  height: auto;
  width: 25px;
  padding: 3.5px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #a696ff, #261e52);
  opacity: 0.3;
  font-size: 0;
  line-height: 0;
  border: 0;
  cursor: pointer;
}

.game-slide {
  width: 100%;
  padding-bottom: 27px;
  height: 287px;
  overflow: hidden;
}

.game-slide .slick-track {
  width: 100%;
}

.game-slide .live-icon {
  width: 91px;
  height: 32px;
}

.game-slide .slick-slide,
.game-slide #playerDiv1,
.game-slide #playerDiv2 {
  height: 260px !important;
}

.game-slide .slick-slide {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  outline: 4px solid transparent;
  outline-offset: -4px;
  background: linear-gradient(to bottom, #f5beff, #7853ff, #0f0423);
}

.game-slide .slick-slide:after {
  content: '';
  background: #060516;
  position: absolute;
  width: calc(100% - 2px);
  height: 100%;
  border-radius: 30px;
  top: 1px;
  left: 1px;
}

.game-slide .game-title {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  z-index: 101;
  width: 100%;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  border-top: 0.5px solid rgba(255, 170, 0, 0.1450980392);
  border-left: 0.5px solid rgba(255, 170, 0, 0.1450980392);
  border-right: 0.5px solid rgba(255, 170, 0, 0.1450980392);
}

.game-slide .game-title h3 {
  background: linear-gradient(to right, #ffedd7, #ffd1b5 45%, #ffe1c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.game-slide .slick-arrow {
  display: none !important;
}

.app-name {
  color: #bec5ff;
  font-size: 12px;
  margin: 10px 0 5px;
}

#openModalAccess,
#openModal {
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 420px;
  margin: 0 auto;
  max-width: 100%;
}

#openModal img {
  width: 420px;
  margin: 0 auto;
  max-width: 100%;
}

#scrollTop.stop {
  position: absolute;
  top: auto;
  transform: unset;
}

.video-container {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 100;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  padding: 1px;
}

.video-container video {
  object-fit: cover;
}

.sound-btn {
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 20px;
  height: 20px;
  background-size: cover;
  cursor: pointer;
  z-index: 100;
}

.full-height {
  width: 319px !important;
  height: 568px !important;
}

.full-height video {
  object-fit: cover;
}

.lottie-logo {
  width: 230px;
  margin: 0 auto;
}

.main-title {
  background: linear-gradient(to bottom, #fff, #ffe0b6 49%, #cc9cc9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 15px;
}

.main-title .domain-name {
  text-transform: uppercase;
}

.main-title img {
  display: inline-block;
  transform: translateY(4px);
  margin-left: 3px;
  width: 14px;
}

@media screen and (max-height: 850px) {
  .arrow-scroll {
    position: relative;
    top: unset !important;
    left: unset;
    transform: unset;
    text-align: center;
    margin-top: 15px;
  }
}

@media screen and (min-width: 1400px) and (max-height: 800px) {
  .main-inner {
    padding-top: 10px;
  }
  .banner-left .domain-link {
    bottom: 124px;
    font-size: 11.3px;
    max-width: 92px;
  }
  .lottie-logo {
    width: 180px;
  }
  .form-signup {
    padding: 20px;
  }
  .form-signup input {
    height: 55px;
    border-radius: 15px;
  }
  .banner-right {
    width: 285px !important;
    height: 480px !important;
  }
  .banner-left {
    top: 20% !important;
    width: 285px !important;
    height: 558px !important;
  }
  .banner-left .banner-phishing .phishingDomain .domain1,
  .banner-left .banner-phishing .phishingDomain .domain2 {
    left: 46px;
    font-size: 9.2px;
  }
  .banner-left .banner-phishing .phishingDomain .domain1 {
    top: 183px;
  }
  .banner-left .banner-phishing .phishingDomain .domain2 {
    top: 282px;
  }
  .contact-box {
    transform: translate(20px, -45px) !important;
  }
  .contact-box img {
    width: 32px !important;
    height: 32px !important;
  }
}

@media screen and (min-width: 550px) {
  .main-inner {
    background-image: url(../assets/background-pc.png);
  }
}

@media screen and (max-width: 550px) {
  #scrollToTopBtn {
    right: 20px !important;
    left: unset !important;
  }
}

@media screen and (min-width: 400px) and (max-width: 549px) {
  .logo-title {
    margin: 12px 0 5px;
  }
  .arrow-scroll {
    top: calc(100vh - 60px);
  }
  .access-btn {
    margin: 10px 0 0;
  }
  .main-desc {
    margin-top: 10px;
  }
  .install-btn {
    margin-top: 22px;
  }
  .app-name {
    margin: 15px 0;
  }
  .access-btn button {
    margin: 10px 0;
  }
  .streaming-box {
    margin-top: 20px;
  }
}

@media screen and (max-width: 389px) {
  .access-text {
    width: 95px;
  }
  .logo-box {
    margin-bottom: 10px;
  }
  .logo-box > .lottie-box img {
    width: 95px;
  }
  .contact-box button {
    margin-bottom: 3px;
  }
  .footer .footer-content > div .contact-footer {
    gap: 0;
  }
  .footer .footer-content > div .contact-footer button {
    margin: 0 5px;
  }
  #modalContentAccess .modal-content,
  #modalContent .modal-content {
    width: 300px;
    height: 500px;
  }
  #modalContent .modal-content .phishingDomain > span {
    left: 18%;
    max-width: 152px;
  }
  #modalContent .modal-content .domain-link {
    font-size: 77%;
  }
  .main-title {
    font-size: 14px;
  }
  .install-btn {
    margin-top: 10px !important;
  }
  .game-slide {
    padding-bottom: 20px;
  }
  .install-btn button {
    width: 270px;
  }
  .access-btn {
    margin-top: 5px;
  }
  .access-btn button {
    width: 270px;
    height: 52px;
  }
  .access-btn button:before {
    top: 15%;
    left: 8px;
    width: calc(100% - 8px);
    height: calc(100% - 12px);
  }
  .footer .footer-content > div h3 {
    font-size: 13px;
  }
  .app-name {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .center-text {
    font-size: 12px;
  }
  .phishing-text {
    font-size: 14px;
  }
  .game-slide {
    width: 100%;
  }
  .form-wrapper {
    padding: 0 15px;
  }
  .bottom {
    background: #060516;
  }
  .captcha-box #captchaBg {
    width: 95px;
    height: 36px;
  }
  .captcha-box input {
    height: 40px !important;
  }
  .captcha-box .reload-icon img {
    width: 20px;
    height: 20px;
  }
  .form-signup {
    padding: 20px 15px;
  }
  .form-signup input {
    height: 46px;
    border-radius: 15px;
  }
  .form-signup .input-icon {
    width: 17px;
    top: calc(50% - 10px);
  }
  .lottie-logo {
    width: 150px;
  }
  #scrollToTopBtn {
    bottom: 20px;
  }
  .title01 {
    font-size: 16px;
  }
  .main-inner {
    padding-top: 10px;
  }
  .logo-box {
    margin-bottom: 10px;
  }
  .install-btn {
    margin-top: 12px;
  }
  .access-btn {
    margin-top: 10px;
  }
  .game-slide {
    height: 243px;
    overflow: hidden;
  }
  .game-slide .slick-slide,
  .game-slide #playerDiv1,
  .game-slide #playerDiv2 {
    height: 215px !important;
  }
  .footer {
    padding: 25px 15px;
  }
  .footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer-content > div:first-child {
    grid-column: 1;
    grid-row: 2;
  }
  .footer .footer-content > div:first-child ul {
    margin-top: 0;
  }
  .footer .footer-content > div:first-child img {
    width: 175px;
    height: 55px;
    margin-bottom: 12px;
  }
  .footer .footer-content > div:nth-child(2) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .footer .footer-content > div:last-child {
    grid-column: 2;
    grid-row: 2;
  }
  .footer .footer-content > div .support {
    width: 278px;
    height: 46px;
  }
  .footer .footer-content > div .logo-footer {
    width: 107px;
    height: 100px;
  }
  .footer .footer-content > div h3 {
    font-size: 14px;
  }
  .footer .footer-content > div ul li {
    margin-bottom: 5px;
  }
  .footer .footer-content > div ul a {
    font-size: 15px;
  }
  .footer .footer-content > div .contact-footer img {
    width: 32px;
    height: 32px;
  }
  .copyright {
    font-size: 12px;
    -webkit-text-stroke: #fff;
  }
  .contact-box {
    gap: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  .access-text {
    width: 140px;
  }
  .access-text .dl-icon {
    width: 22px !important;
  }
  .footer .footer-content > div:first-child img {
    width: 190px;
    height: 60px;
  }
  .footer .footer-content > div .logo-footer {
    width: 100px;
    height: 92px;
    margin-bottom: 10px;
  }
  .footer .footer-content > div h3 {
    font-size: 16px;
  }
  .footer .footer-content > div ul a {
    font-size: 16px;
  }
  .footer .footer-content > div .support {
    width: 250px;
    height: 40px;
  }
  .install-btn button,
  .access-btn button {
    width: 325px !important;
  }
  #openModal {
    max-width: 370px !important;
  }
}

@media only screen and (min-device-width: 1024px) and (orientation: landscape) {
  .app-name {
    margin: 20px 0;
  }
}

@media only screen and (max-device-width: 1400px) and (orientation: landscape) {
  #openModal {
    max-width: 350px;
  }
}

@media only screen and (max-device-width: 1023px) and (orientation: landscape) {
  .access-text {
    width: 109px !important;
  }
  .access-text .dl-icon {
    width: 17px !important;
  }
  .logo-box {
    margin-bottom: 10px;
  }
  .logo-box .lottie-box .lottie-logo {
    width: 110px;
  }
  .logo-box .lottie-box img {
    width: 80px;
  }
  .captcha-box #captchaBg {
    width: 95px;
    height: 35px;
  }
  .form-signup {
    padding: 20px;
    max-width: 350px !important;
  }
  .form-signup input {
    height: 43px !important;
    border-radius: 15px;
  }
  .form-signup .input-icon {
    width: 15px;
    top: calc(50% - 9px);
  }
  .form-signup .btn-signup > button {
    width: 250px;
    height: 42px;
  }
  .error {
    font-size: 11px;
  }
  #openModal {
    max-width: 350px;
    margin: 10px auto 0;
  }
  #modalContentAccess .modal-content,
  #modalContent .modal-content {
    width: 230px;
  }
  #modalContent .modal-content .phishingDomain > span {
    max-width: 110px;
  }
  #modalContent .modal-content .domain1,
  #modalContent .modal-content .domain2 {
    left: 43px;
    font-size: 8px;
  }
  #modalContent .modal-content .domain-link {
    font-size: 59%;
    top: 70.5%;
  }
  #modalContent .modal-content .domain1 {
    top: 29.5%;
  }
  #modalContent .modal-content .domain2 {
    top: 48.5%;
  }
  .streaming-box {
    max-width: 450px;
  }
  .game-slide .slick-slide {
    border-radius: 20px;
  }
  .game-slide .slick-slide:after {
    border-radius: 20px;
  }
  .main-title {
    font-size: 14px;
  }
  .install-btn {
    margin-top: 10px;
  }
  .main-inner {
    padding-bottom: 20px;
  }
  .arrow-scroll {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    text-align: center;
    margin-top: 10px;
  }
  .access-btn {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --sponsor-height: 57px;
  }
  .streaming-box {
    display: block;
  }
  .form-signup {
    display: none;
  }
  .game-slide {
    height: 390px;
    overflow: hidden;
  }
  .game-slide .slick-slide,
  .game-slide #playerDiv1,
  .game-slide #playerDiv2 {
    height: 350px !important;
  }
  .form-signup {
    width: 435px;
    margin-bottom: 10px;
  }
  .form-signup .input-wrapper {
    padding-bottom: 20px;
  }
  .form-signup .form-title {
    font-size: 22px;
    top: 10px;
  }
  .form-signup input {
    font-size: 21px;
  }
  .form-signup input:active,
  .form-signup input:focus {
    border-radius: 20px;
  }
  .form-signup .btn-signup > button {
    width: 307px;
    height: 55px;
    font-size: 20px;
    border-radius: 20px;
  }
  .main-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .main-title img {
    width: 19px;
    margin-left: 5px;
  }
  .game-slide {
    padding-bottom: 40px;
  }
  .install-btn {
    margin-top: 35px;
  }
  header .main-inner {
    padding-left: 160px;
    padding-right: 160px;
  }
  #password {
    padding-right: 50px;
  }
  .btn-eye {
    width: 20px;
    height: 20px;
    top: calc(50% - 9px);
    right: 20px;
  }
  .bottom-box,
  .bottom-content {
    width: 570px;
  }
  .error {
    font-size: 13px !important;
    bottom: -1px !important;
  }
  .arrow-scroll {
    top: calc(100vh - 45px);
  }
  .arrow-scroll img {
    width: 20px;
  }
  .bottom-box {
    width: 100%;
    text-align: center;
  }
  .install-btn .install-inner {
    height: calc(100% - 11px);
    top: 7px;
    border-radius: 30px;
  }
  .partner {
    width: 319px;
  }
  .main-desc {
    margin-top: 30px;
    font-size: 16px;
  }
  .title01 {
    font-size: 16px;
  }
  .display-pc {
    display: block;
  }
  .display-sp {
    display: none;
  }
  .animated-border {
    left: 25px;
    height: 3px;
    width: calc(100% - 50px);
  }
  .animated-top {
    top: 5px;
  }
  .animated-bottom {
    bottom: 1px;
  }
}

.marquee-wrapper {
  max-width: calc(100vw - 25px);
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.marquee-wrapper .marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-wrapper .marquee-item {
  width: auto;
  height: 100%;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.marquee-wrapper .marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center {
  text-align: center;
}

#openChatBtn {
  display: none;
}

#openChatBtn.show-chat {
  display: block;
}

#chatContainer {
  position: relative;
  border-radius: 24px;
}

.mobile-chat {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  border-radius: 0 !important;
  left: unset !important;
  transform: unset !important;
  right: 0 !important;
  bottom: 0 !important;
}

.mobile-close {
  top: 5px;
  right: 40px !important;
  left: unset !important;
  transform: unset !important;
}

#chatIframe {
  border: 0;
  width: 360px;
  height: 650px;
  max-width: 100%;
  right: 15px;
  display: none;
}

#chatIframe.show-iframe {
  width: 360px;
  height: 80vh;
  opacity: 1;
}

#closeChatBtn {
  position: fixed;
  right: 62px;
  bottom: 636px;
  width: 17px;
  height: 20px;
  font-size: 24px;
  z-index: 10000;
  border: 0;
  cursor: pointer;
  background: none;
  display: none;
}

#closeChatBtn:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
}

.input-wrapper {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 7px;
}

@media screen and (max-width: 1023px) {
  .form-signup,
  .bottom-box,
  .bottom-content {
    max-width: 420px;
    font-size: 14px;
  }
  #scrollToTopBtn {
    left: calc(50% + 210px);
  }
  .bottom-box {
    margin: 10px auto 0;
  }
}

@media screen and (min-width: 2000px) {
  .banner-left .banner-phishing .phishingDomain > span {
    left: 49px !important;
  }
  .contact-box {
    right: calc(8% + 105px) !important;
  }
  .banner-left .domain1,
  .banner-left .domain2 {
    left: 60px !important;
    max-width: 180px !important;
  }
  .banner-left .domain1 {
    top: 180px;
  }
  .banner-left .domain2 {
    top: 290px;
  }
}

@media screen and (min-width: 2001px) {
  .banner-left .domain1,
  .banner-left .domain2 {
    left: 54px !important;
    max-width: 186px !important;
    height: 37px !important;
  }
  .banner-left .banner-phishing .domain1 {
    top: 210px !important;
  }
  .banner-left .banner-phishing .domain2 {
    top: 325px !important;
  }
  .banner-left .banner-phishing .domain-link {
    bottom: 146px;
    left: 52px;
  }
}

@media screen and (max-width: 1366px) {
  .highlight-btn:after {
    height: calc(100% - 5px);
  }
}

@media screen and (min-width: 1650px) {
  .bottom-content {
    width: 680px;
  }
  #scrollToTopBtn {
    left: calc(50% + 340px);
  }
}

@media screen and (min-width: 1400px) and (max-width: 2000px) {
  .banner-right {
    width: 300px;
    height: 530px;
    top: 23%;
  }
  .banner-left {
    width: 300px;
    height: 585px;
    top: 21%;
  }
  .banner-left img,
  .banner-right img {
    width: 100%;
    height: 100%;
  }
  .contact-box {
    top: calc(50% + 285px) !important;
    right: calc(5% + 110px) !important;
  }
  .footer .footer-content {
    max-width: 750px;
    margin: 0 auto;
  }
  .footer .footer-content > div h3 {
    font-size: 15px;
  }
  .footer .footer-content > div .logo-footer {
    width: 110px;
    height: 100px;
  }
  .footer .footer-content > div .support {
    width: 310px;
    height: 50px;
    margin-top: 10px;
  }
  .footer .footer-content > div:first-child img {
    width: 190px;
    height: 55px;
  }
}

.custom-sp {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.app-name {
  display: none;
}

@media screen and (min-width: 1400px) {
  .install-custom,
  .custom-sp,
  .app-name {
    display: none !important;
  }
  .custom-pc {
    display: flex !important;
  }
  .install-btn button {
    width: 410px;
    height: 63px;
  }
  #modalContent {
    overflow: hidden;
    visibility: hidden !important;
  }
  body {
    position: relative !important;
    top: 0 !important;
  }
}

@media screen and (min-width: 1400px) {
  .access-text {
    display: none;
  }
  .banner-left,
  .banner-right {
    display: block;
  }
  .modal-sp {
    display: none;
  }
  .contact-pc {
    display: flex;
  }
  .contact-sp {
    display: none;
  }
  .contact-box {
    flex-direction: row;
    gap: 20px;
    margin-top: 10px;
    top: calc(50% + 310px);
    transform: translateY(-50%);
    right: calc(5% + 130px);
    width: 106px;
    left: unset;
  }
  .contact-box img {
    width: 38px;
    height: 38px;
  }
  .logo-box .lottie-box img {
    width: 175px;
  }
}

@media screen and (min-width: 1100px) {
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1750px) {
  .banner-right {
    right: 8%;
  }
  .streaming-box {
    max-width: 725px;
  }
  .streaming-box .game-slide {
    height: 440px;
    overflow: hidden;
  }
  .streaming-box .slick-slide,
  .streaming-box #playerDiv1,
  .streaming-box .game-slide #playerDiv2 {
    height: 400px !important;
  }
  .install-btn button {
    width: 477px;
    height: 73px;
  }
  .banner-left {
    left: 8%;
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  to {
    background-position: -100% 0%;
  }
}

@keyframes moveGradient2 {
  0% {
    background-position: -100% 0%;
  }
  to {
    background-position: 0% 0%;
  }
}

@keyframes fadeBg {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(39, 143, 255, 0.267);
  }
  to {
    background-color: transparent;
  }
}

@keyframes zoomInOut {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }
  to {
    background-position: 400% 50%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  80% {
    left: 125%;
  }
  to {
    left: 125%;
  }
}

@keyframes scroll-left {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}

@keyframes bounce {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scale-pulse {
  0%,
  100% {
    filter: brightness(0.95);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.15);
    transform: scale(1.05);
  }
}

.animate-scale-pulse {
  animation: 1.5s ease-in-out infinite scale-pulse;
}
