:root {
  --mint: #b4fff1;
  --deep: #172a30;
  --ink: #181a1a;
  --muted: #6c6c72;
  --paper: #f9f9f9;
  --white: #ffffff;
  --blue: #669def;
  --shadow: 0 24px 70px rgba(23, 42, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

button,
a {
  font: inherit;
}
button {
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

.home-page {
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}
.section-screen {
  scroll-margin-top: 82px;
}

.banner-box {
  width: 100%;
  height: 823px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.video-element,
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg {
  background: url("https://image.TopTop.net/20240705/9006d1bd11384464a56f7fd0b53f3da2.png")
    center / cover no-repeat;
  z-index: 0;
}

.video-element {
  z-index: 1;
}
.banner-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.22) 40%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.42) 100%
    );
  pointer-events: none;
}

.navbar-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 81px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar-fix.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(23, 42, 48, 0.1);
  backdrop-filter: blur(16px);
}

.navbar-in {
  width: 95%;
  max-width: 2000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-button {
  display: block;
}
.logo {
  width: 129px;
  margin-top: -10px;
}
.menu-box {
  display: flex;
  align-items: center;
}
.menu-item {
  margin: 0 16px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    font-weight 0.2s ease;
}
.menu-item:hover,
.menu-item.is-active {
  font-weight: 600;
  transform: translateY(-1px);
}

.recharge-jp-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 20px;
  margin-right: 10px;
  border-radius: 200px;
  background: var(--mint);
  color: var(--ink);
}
.coin-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--mint);
  font-size: 12px;
}
.recharge-jp-box-text {
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  white-space: nowrap;
}

.dropdown-wrap {
  position: relative;
}
.lng-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
}
.lng-box img {
  width: 15px;
  margin: 0 2px;
  transition: transform 0.2s ease;
}
.dropdown-wrap.is-open .lng-box img {
  transform: rotate(180deg);
}
.popover {
  position: absolute;
  right: 0;
  top: 63px;
  padding: 20px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 60;
}
.dropdown-wrap.is-open .popover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.recharge-title {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.recharge-box {
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
  text-align: center;
}
.line {
  width: 1px;
  background: #cfcfcf;
  margin: 0 24px;
}
.recharge-item,
.lng-item {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  white-space: nowrap;
  text-align: center;
}
.lng-item {
  font-size: 20px;
}
.recharge-item:last-child,
.lng-item:last-child {
  margin-bottom: 0;
}
.recharge-item:hover,
.lng-item:hover,
.recharge-item-active,
.is-current {
  color: var(--blue) !important;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.slogan-text {
  z-index: 10;
  width: 916px;
  text-align: center;
  color: var(--white);
  font-size: 56px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.2;
}
.slogan-text img {
  width: 916px;
  position: absolute;
  z-index: 10;
}
.slogan-text span {
  display: block;
  z-index: 20;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}
.btn-box {
  display: flex;
  align-items: center;
}
.hero-downloads {
  z-index: 10;
  margin-top: 64px;
}
.btn-box img {
  cursor: pointer;
  width: 211px;
  height: 70px;
  object-fit: contain;
  margin-right: 32px;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}
.hero-downloads img {
  margin: 0 0 0 12px;
}
.btn-box img:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.16));
}

.about-box {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://image.TopTop.net/20240628/4247f7f116d54e9480e8e1b1d6c4e11d.png")
    center / cover no-repeat;
}
.box-out {
  width: 100%;
  max-width: 1200px;
  padding: 120px 0;
  position: relative;
}
.about-slider {
  position: relative;
  min-height: 638px;
}
.about-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(32px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.about-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.text-box {
  width: 485px;
}
.about-tag,
.honor-tag {
  display: inline-block;
  color: var(--deep);
  font-size: 14px;
  font-weight: 600;
  background: var(--mint);
  padding: 8px 16px;
  border-radius: 4px 20px;
}
.text-box h3,
.comment-left h3,
.honor-inner h3,
.leader-text h3,
.partner-box h3,
.call-box h3 {
  margin: 24px 0 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
}
.text-box h5,
.call-box h5,
.leader-text li {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
}
.text-box .btn-box {
  margin-top: 32px;
}
.game-box {
  width: 482px;
  height: 638px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-box .bg {
  width: 482px;
  position: absolute;
}
.game-box .icon {
  position: absolute;
  width: 153px;
  z-index: 10;
  bottom: 0;
  right: 0;
}
.game-border {
  z-index: 10;
  width: 295px;
  height: 638px;
  border: 8px solid #000;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  box-shadow: var(--shadow);
}
.game-img {
  height: 638px;
  max-width: none;
}
.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
}
.swiper-pagination-bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 200px;
  background: rgba(23, 42, 48, 0.4);
  transition:
    width 0.22s ease,
    background 0.22s ease;
}
.swiper-pagination-bullet-active {
  width: 16px;
  background: var(--deep);
}

.comment-box {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://image.TopTop.net/20240628/a6d1f9c90b53461499cfe25bee0b841f.png")
    center / cover no-repeat;
  overflow: hidden;
}
.comment-innner {
  position: relative;
  isolation: isolate;
  padding: 120px 0;
  width: 100%;
  max-width: 1200px;
  display: flex;
}
.comment-left {
  position: relative;
  z-index: 999;
}
.comment-left h3 {
  position: relative;
  z-index: 1001;
  width: 338px;
  margin-top: 0;
}
.left-btn {
  position: relative;
  z-index: 1001;
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.left-btn img {
  width: 48px;
  transition: transform 0.2s ease;
}
.left-btn button:hover img {
  transform: scale(1.08);
}
.comment-right {
  position: relative;
  z-index: 1;
  display: flex;
  margin-left: 121px;
  transition: transform 0.35s ease;
}
.user-box {
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 20px;
  margin-right: 24px;
  opacity: 0.2;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 18px 45px rgba(23, 42, 48, 0.08);
}
.user-box.is-active {
  opacity: 1;
  transform: translateY(-4px);
}
.user-inner {
  width: 412px;
  height: 358px;
  padding: 20px 30px;
  position: relative;
}
.user-inner h3 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}
.user-inner h5 {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  margin: 20px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.box-bottom {
  width: 412px;
  position: absolute;
  left: 0;
  bottom: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 52px;
}
.user-info {
  display: flex;
  align-items: center;
}
.user-info img {
  width: 52px;
}
.user-info h3 {
  font-size: 16px;
  margin: 0 12px;
}
.star-img img {
  width: 129px;
}

.honor-box {
  width: 100%;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(180, 255, 241, 0.12),
      transparent 30%
    ),
    var(--deep);
  display: flex;
  justify-content: center;
  align-items: center;
}
.honor-inner {
  padding: 120px 0;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.honor-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}
.honor-inner h3 {
  color: var(--white);
  margin-top: 24px;
}
.honor-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.78;
}
.honor-metrics {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.honor-metrics span {
  width: fit-content;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 255, 241, 0.2);
  box-shadow: inset 0 0 24px rgba(180, 255, 241, 0.04);
  font-weight: 600;
}
.responsibility-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}
.responsibility-feature {
  min-height: 100%;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}
.responsibility-feature .card-img {
  height: 100%;
  object-fit: cover;
}
.card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.card-img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  object-fit: cover;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}
.card-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.leader-box {
  width: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.leader-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 491px;
  background: var(--deep);
}
.leader-inner {
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  height: 512px;
  border-radius: 30px;
  background:
    radial-gradient(
      126.67% 126.67% at 50% -3.06%,
      rgba(23, 42, 48, 0) 0%,
      rgba(54, 241, 205, 0.1) 100%
    ),
    radial-gradient(
      182.13% 182.11% at 48.85% -21.33%,
      rgba(54, 241, 205, 0.16) 0%,
      rgba(54, 241, 205, 0) 100%
    ),
    var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.leader-text {
  width: 446px;
  margin: 0 50px;
}
.leader-text h3 {
  margin-top: 0;
}
.leader-text ul {
  padding-left: 20px;
  margin: 24px 0 0;
}
.leader-img {
  display: flex;
}
.leader-img img {
  height: 512px;
  margin-left: 56px;
  max-width: none;
}

.partner-box {
  width: 100%;
  padding: 80px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.partner-box h3 {
  margin-top: 0;
}
.partner-img {
  width: 100%;
  overflow: hidden;
  height: 166px;
  position: relative;
  margin-top: 24px;
}
.slide-animation {
  position: absolute;
  left: 0;
  height: 166px;
  display: flex;
  animation: slide 20s linear infinite;
}
.slide-animation img {
  height: 166px;
  max-width: none;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.call-box {
  width: 100%;
  padding: 160px 0;
  background: url("https://image.TopTop.net/20240628/b2a8d506c091412dbad3f27054a6041c.png")
    top center / 100% auto no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.call-box h3 {
  width: 737px;
  margin-top: 0;
  font-size: 56px;
  text-align: center;
}
.call-box h5 {
  width: 737px;
  text-align: center;
}
.call-box .btn-box {
  margin-top: 48px;
}
.img-icon {
  position: absolute;
  width: 82px;
  animation: floaty 5s ease-in-out infinite;
}
.icon-a {
  left: 10%;
  top: 24%;
}
.icon-b {
  right: 11%;
  top: 18%;
  animation-delay: 0.7s;
}
.icon-c {
  right: 18%;
  bottom: 17%;
  animation-delay: 1.4s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.contact-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--deep);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.6);
}
.contact-inner {
  padding: 60px 0;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
}
.Sawalif-logo {
  width: 236px;
  margin-bottom: 24px;
}
.contact-inner h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
}
.contact-inner h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}
.media-box {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}
.media-img {
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}
.bottom-box {
  width: 100%;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 38px 0;
}
.link-list {
  display: flex;
}
.link-list a,
.bottom-inner h3 {
  color: rgba(228, 229, 230, 0.8);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.link-list a:nth-child(2) {
  margin: 0 36px;
}
.link-list a:hover {
  color: var(--mint);
}

@media (max-width: 1240px) {
  .box-out,
  .comment-innner,
  .honor-inner,
  .leader-inner,
  .contact-inner,
  .bottom-inner {
    width: calc(100% - 48px);
  }
  .menu-item {
    margin: 0 8px;
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .banner-box {
    height: 720px;
    min-height: 620px;
  }
  .mobile-toggle {
    display: flex;
    z-index: 70;
  }
  .menu-box {
    position: fixed;
    top: 81px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .menu-box.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu-item {
    margin: 0;
    padding: 10px;
    text-align: left;
  }
  .dropdown-wrap {
    width: 100%;
  }
  .recharge-jp-box,
  .lng-box {
    width: 100%;
  }
  .popover {
    position: static;
    display: none;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid rgba(23, 42, 48, 0.08);
  }
  .dropdown-wrap.is-open .popover {
    display: block;
  }
  .slogan-text {
    width: min(90vw, 760px);
    font-size: 42px;
  }
  .slogan-text img {
    width: 100%;
  }
  .about-slide,
  .comment-innner,
  .leader-inner,
  .contact-inner,
  .bottom-inner {
    flex-direction: column;
  }
  .about-slider {
    min-height: auto;
  }
  .about-slide {
    position: absolute;
    gap: 48px;
  }
  .about-slide.is-active {
    position: relative;
  }
  .text-box,
  .game-box,
  .leader-text,
  .call-box h3,
  .call-box h5 {
    width: 100%;
  }
  .game-box {
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -80px;
  }
  .comment-right {
    margin-left: 0;
    margin-top: 36px;
    width: 100%;
    overflow: hidden;
  }
  .comment-left h3 {
    width: auto;
  }
  .honor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .honor-copy {
    position: static;
    text-align: center;
  }
  .honor-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .responsibility-layout {
    grid-template-columns: 1fr;
  }
  .responsibility-feature .card-img {
    max-height: 430px;
  }
  .leader-inner {
    height: auto;
    padding-top: 40px;
  }
  .leader-img img {
    height: auto;
    width: 100%;
    margin: 24px 0 0;
  }
  .contact-inner,
  .bottom-inner {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .navbar-fix {
    height: 70px;
  }
  .menu-box {
    top: 70px;
  }
  .logo {
    width: 108px;
  }
  .banner-box {
    height: 620px;
    min-height: 560px;
  }
  .slogan-text {
    font-size: 31px;
  }
  .hero-downloads,
  .btn-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .btn-box img,
  .hero-downloads img {
    width: 178px;
    height: auto;
    margin: 0;
  }
  .box-out,
  .comment-innner,
  .honor-inner {
    padding: 72px 0;
  }
  .text-box h3,
  .comment-left h3,
  .honor-inner h3,
  .leader-text h3,
  .partner-box h3 {
    font-size: 32px;
  }
  .call-box {
    padding: 100px 24px;
  }
  .call-box h3 {
    font-size: 38px;
  }
  .game-box {
    transform: scale(0.68);
    margin: -20px 0 -180px;
  }
  .user-inner {
    width: min(82vw, 412px);
    height: 390px;
  }
  .box-bottom {
    width: 100%;
  }
  .user-inner h5 {
    font-size: 17px;
  }
  .card-list {
    grid-template-columns: 1fr;
  }
  .responsibility-feature {
    padding: 12px;
    border-radius: 24px;
  }
  .honor-copy p {
    font-size: 15px;
  }
  .honor-metrics span {
    width: 100%;
    text-align: center;
  }
  .leader-box {
    padding: 72px 0;
  }
  .leader-text {
    margin: 0 24px;
  }
  .link-list {
    flex-direction: column;
    gap: 12px;
  }
  .link-list a:nth-child(2) {
    margin: 0;
  }
  .img-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
