@font-face {
  font-family: "FusionPixel";
  src: url("./assets/FusionPixel.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  font-size: 16px;
}

body {
  font-family: "FusionPixel", "PingFang SC", "Noto Sans SC", sans-serif;
  font-weight: 700;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #ff6b9d;
  border-radius: 5px;
}

#loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 107, 157, 0.2);
  border-top-color: #ff6b9d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 107, 157, 0.35);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.lang-btn {
  border: none;
  background: transparent;
  color: #ccc;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  min-width: 2rem;
}

.lang-btn.active {
  background: #ff6b9d;
  color: #000;
}

.lang-btn:hover:not(.active) {
  color: #ff6b9d;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 107, 157, 0.55);
  background: #fff0f5;
}
.logo-text {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: #ff6b9d;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
@media (min-width: 1200px) {
  .nav-menu {
    display: flex;
  }
}
.nav-link {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #ff6b9d;
}

.btn-primary {
  padding: 0.625rem 1.35rem;
  background: #ff6b9d;
  color: #000;
  border: none;
  border-radius: 4px;
  font: inherit;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #ff85ae;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.45);
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: none;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 107, 157, 0.2);
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
}
.mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none !important;
  }
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  overflow: hidden;
  background: #111;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
  background: #1a1216;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide img.slide-contain {
  object-fit: contain;
  padding: 8vh 10vw;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.5) 42%,
    rgba(0, 0, 0, 0.28) 68%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 2;
  padding: 2.5rem 0 4.5rem;
}
.hero-text {
  flex: 1 1 420px;
  max-width: 560px;
  animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-subtitle {
  color: #ff6b9d;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.hero-description {
  color: #cccccc;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.get-app-panel {
  flex: 0 1 420px;
  width: min(100%, 420px);
  margin-left: auto;
  padding: 1.35rem 1.35rem 1.45rem;
  border: 2px solid rgba(255, 107, 157, 0.75);
  border-radius: 10px;
  background: linear-gradient(
    160deg,
    rgba(255, 107, 157, 0.28) 0%,
    rgba(20, 8, 14, 0.88) 42%,
    rgba(0, 0, 0, 0.78) 100%
  );
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-out 0.12s both;
}
.get-app-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  color: #000;
  background: #ff6b9d;
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.get-app-lead {
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.get-app-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.get-app-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
a.platform-btn:hover {
  border-color: #ff6b9d;
  background: rgba(255, 107, 157, 0.18);
  transform: translateY(-1px);
}
.platform-btn.is-soon {
  opacity: 0.55;
  cursor: not-allowed;
}
.platform-name {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.platform-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}
.get-section .platform-btn {
  width: auto;
  min-width: 160px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .hero-text {
    max-width: none;
  }
  .get-app-panel {
    width: 100%;
    max-width: 480px;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 2rem 0 4rem;
  }
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #ff6b9d;
  color: #000;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-primary-large:hover {
  background: #ff85ae;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 157, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: #fff;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: #ff6b9d;
  color: #ff6b9d;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 107, 157, 0.4);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
@media (min-width: 1024px) {
  .slider-control {
    display: grid;
    place-items: center;
  }
}
.slider-control.prev {
  left: 1.25rem;
}
.slider-control.next {
  right: 1.25rem;
}
.slider-control:hover {
  background: rgba(255, 107, 157, 0.25);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.slider-dot.active {
  background: #ff6b9d;
}

section {
  padding: 4.5rem 0;
}
@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}
.section-bg-dark {
  background: #111111;
}
.section-bg-black {
  background: #0a0a0a;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-subtitle {
  color: #ff6b9d;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.section-divider {
  width: 64px;
  height: 3px;
  background: #ff6b9d;
  margin: 0 auto 1.25rem;
}
.section-description {
  color: #999;
  max-width: 640px;
  margin: 0 auto;
}
.muted {
  color: #999;
  margin-bottom: 1.35rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.image-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 157, 0.2);
  background: #1a1a1a;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.image-container.soft-pad {
  background: #181018;
}
.image-container.soft-pad img {
  object-fit: contain;
  padding: 1.5rem;
  min-height: 320px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.stat-number {
  color: #ff6b9d;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.stat-label {
  color: #999;
  font-size: 0.85rem;
}

.card {
  background: #141414;
  border: 1px solid rgba(255, 107, 157, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 157, 0.45);
  box-shadow: 0 16px 40px rgba(255, 107, 157, 0.12);
}
.card-icon-img {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
  margin-bottom: 1rem;
}
.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.card-description {
  color: #999;
  font-size: 0.92rem;
}

.card-badge {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 157, 0.55);
  background: linear-gradient(145deg, rgba(255, 107, 157, 0.28), rgba(20, 8, 14, 0.9));
  color: #ff6b9d;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card,
.pro-card {
  background: linear-gradient(165deg, #1a1216 0%, #141414 55%, #101010 100%);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 107, 157, 0.35);
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.08);
  color: #fff;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.brand-chip:hover {
  border-color: #ff6b9d;
  background: rgba(255, 107, 157, 0.18);
  transform: translateY(-2px);
}

.step-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.step-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.55;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ff6b9d;
  color: #000;
  font-size: 0.85rem;
}

.pro-note {
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: #ccc;
}
.check-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: #ff6b9d;
  position: relative;
  flex-shrink: 0;
}
.check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(255, 107, 157, 0.18);
  border-radius: 10px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: #141414;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  color: #ff6b9d;
  transition: transform 0.3s;
  font-size: 1.4rem;
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: #999;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  display: block;
}

.get-section .get-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}
.store-badge {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 157, 0.35);
  background: #000;
}
.store-badge img {
  width: 160px;
  height: 60px;
  object-fit: cover;
}
.legal-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #777;
  font-size: 0.9rem;
}
.legal-row a {
  color: #ccc;
}
.legal-row a:hover {
  color: #ff6b9d;
}

footer {
  background: #050505;
  border-top: 1px solid rgba(255, 107, 157, 0.15);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer-copy {
  color: #999;
  margin-top: 0.85rem;
}
footer h4 {
  color: #ff6b9d;
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
}
footer a {
  display: block;
  color: #ccc;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}
footer a:hover {
  color: #ff6b9d;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  color: #777;
  font-size: 0.85rem;
}
.footer-bottom p {
  margin-bottom: 0.25rem;
}
.footer-bottom a {
  display: inline;
  color: #777;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #ff6b9d;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-text,
  .loader-spinner,
  .card {
    animation: none !important;
    transition: none !important;
  }
}
