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

:root {
  --bg: #06060c;
  --text: #eeeef6;
  --brand: #ff6b00;
  --brand-soft: #ff9548;
  --brand-mid: #ff8c40;
  --muted: rgba(238, 238, 246, 0.45);
  --muted-2: rgba(238, 238, 246, 0.38);
  --muted-3: rgba(238, 238, 246, 0.18);
  --font: 'Outfit', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: #080810;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.fade-up {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up-2 {
  animation: fade-up 0.7s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}

.fade-up-3 {
  animation: fade-up 0.7s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}

.fade-up-4 {
  animation: fade-up 0.7s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}

.float-anim {
  animation: float 5s ease-in-out infinite;
}

.page {
  position: relative;
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  background: var(--bg);
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-a {
  top: -180px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(255, 100, 0, 0.18);
}

.orb-b {
  bottom: 8%;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 100, 0, 0.09);
  filter: blur(100px);
}

.orb-c {
  top: 28%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  background: rgba(255, 107, 0, 0.07);
  filter: blur(80px);
}

.dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.028) 1px, transparent 0);
  background-size: 28px 28px;
}

.content {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--brand);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.9);
}

.dot.small {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(255, 107, 0, 0.7);
}

.brand-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.2px;
}

.badge-free {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ff8030;
  letter-spacing: 0.5px;
  background: rgba(255, 107, 0, 0.11);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 20px;
  padding: 4px 11px;
}

.hero {
  text-align: center;
  padding: 36px 24px 28px;
}

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  width: 128px;
  height: 128px;
}

.logo-glow {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 78px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.65);
  filter: blur(16px);
  animation: glow-pulse 3.6s ease-in-out infinite;
  pointer-events: none;
}

.logo-ring {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.22) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.logo {
  position: relative;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 107, 0, 0.35));
  z-index: 1;
}

.version-wrap {
  margin-bottom: 16px;
}

.version-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-soft);
  background: rgba(255, 107, 0, 0.09);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 30px;
  padding: 5px 14px;
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  box-shadow: 0 0 5px #ff6b00;
}

.title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 14px;
}

.title-accent {
  background: linear-gradient(120deg, #ff6b00 0%, #ffb060 40%, #ff6b00 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.2s linear infinite;
}

.title-rest {
  color: var(--text);
}

.subtitle {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 22px;
  color: var(--muted);
  max-width: 248px;
  font-weight: 400;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12px;
  color: rgba(238, 238, 246, 0.42);
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
}

.dl-panel {
  padding: 0 20px;
  margin-bottom: 34px;
}

.dl-panel .downloads,
.dl-panel .hint,
.dl-panel .dl-loading,
.dl-panel .dl-error {
  display: none;
}

.dl-panel.is-loading .dl-loading,
.dl-panel.is-error .dl-error,
.dl-panel.is-ready .downloads,
.dl-panel.is-ready .hint {
  display: flex;
}

.dl-panel.is-ready .downloads {
  flex-direction: column;
  gap: 11px;
  padding: 0;
}

.dl-panel.is-ready .hint {
  display: block;
  margin: 12px 0 0;
}

.dl-loading,
.dl-error {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-loading {
  gap: 12px;
  color: rgba(238, 238, 246, 0.4);
  font-size: 13px;
}

.dl-error {
  gap: 8px;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.1), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 107, 0, 0.22);
}

.dl-error-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: #ff9548;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.dl-error-title {
  font-size: 15px;
  font-weight: 700;
  color: #eeeef6;
  letter-spacing: 0.2px;
}

.dl-error-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(238, 238, 246, 0.4);
  max-width: 220px;
  margin: 0 0 10px;
}

.dl-retry {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #ff7418, #e04200);
  box-shadow: 0 8px 22px rgba(255, 80, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-retry:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 80, 0, 0.38);
}

.dl-retry:active {
  transform: scale(0.98);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 107, 0, 0.15);
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.downloads {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 22px;
  border-radius: 18px;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 48%;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
  opacity: 0.75;
}

.btn-ios {
  background: linear-gradient(145deg, #ff7418 0%, #e04200 100%);
  box-shadow: 0 14px 44px rgba(255, 80, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-ios:hover {
  background: linear-gradient(145deg, #ff8530 0%, #f05000 100%);
  box-shadow: 0 20px 56px rgba(255, 80, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-ios:active {
  transform: scale(0.985);
}

.btn-android {
  background: linear-gradient(145deg, #5b6cff 0%, #3a45d4 55%, #2f38b8 100%);
  border: 1.5px solid rgba(170, 185, 255, 0.35);
  box-shadow: 0 14px 40px rgba(70, 90, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-android:hover {
  background: linear-gradient(145deg, #6a7aff 0%, #4552e8 55%, #3842c9 100%);
  border-color: rgba(190, 200, 255, 0.45);
  box-shadow: 0 20px 52px rgba(70, 90, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-android:active {
  transform: scale(0.985);
}

.btn-android .btn-sheen {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.btn-icon {
  flex-shrink: 0;
  position: relative;
  color: #fff;
  display: flex;
  width: 28px;
  justify-content: center;
}

.btn-icon.android {
  color: #78d64b;
}

.btn-text {
  flex: 1;
  text-align: left;
  position: relative;
}

.btn-sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 0.35px;
}

.btn-sub.muted {
  color: rgba(238, 238, 246, 0.35);
}

.btn-label {
  display: block;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1;
}

.btn-label.light {
  color: var(--text);
}

.btn-arrow {
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.hint {
  text-align: center;
  font-size: 11px;
  margin: 12px 0 34px;
  color: var(--muted-3);
  letter-spacing: 0.2px;
}

.divider {
  margin: 0 24px 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.28), transparent);
}

.stats {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.stat {
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.stat:hover {
  border-color: rgba(255, 107, 0, 0.28);
  background: rgba(255, 107, 0, 0.06);
}

.stat.accent {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.18);
}

.stat-value {
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  color: var(--brand-mid);
}

.stat-label {
  font-size: 11px;
  color: rgba(238, 238, 246, 0.35);
  font-weight: 500;
}

.features {
  padding: 0 20px;
  margin-bottom: 30px;
}

.features h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.2px;
  margin-bottom: 13px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature.accent {
  background: rgba(255, 107, 0, 0.07);
  border-color: rgba(255, 107, 0, 0.16);
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(255, 107, 0, 0.05));
  border: 1px solid rgba(255, 107, 0, 0.16);
}

.feature.accent .feature-icon {
  background: rgba(255, 107, 0, 0.16);
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}

.cta {
  padding: 0 20px;
  margin-bottom: 40px;
}

.cta-card {
  border-radius: 24px;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.14) 0%, rgba(255, 50, 0, 0.04) 100%);
  border: 1px solid rgba(255, 107, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  filter: blur(40px);
  pointer-events: none;
}

.cta-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
  position: relative;
  filter: drop-shadow(0 6px 14px rgba(255, 107, 0, 0.3));
}

.cta-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  position: relative;
}

.cta-desc {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 22px;
  line-height: 1.65;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 10px;
  position: relative;
}

.cta-btn {
  flex: 1;
  padding: 13px 0;
  border-radius: 13px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn.primary {
  background: linear-gradient(145deg, #ff7418, #e04200);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 80, 0, 0.3);
}

.cta-btn.secondary {
  background: linear-gradient(145deg, #5b6cff, #3a45d4);
  border: 1px solid rgba(170, 185, 255, 0.3);
  color: #fff;
  box-shadow: 0 6px 18px rgba(70, 90, 255, 0.28);
}

.footer {
  text-align: center;
  padding: 20px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(238, 238, 246, 0.25);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-links span {
  font-size: 11px;
  color: rgba(238, 238, 246, 0.16);
  cursor: pointer;
}

.copyright {
  font-size: 11px;
  color: rgba(238, 238, 246, 0.1);
  margin: 0 0 6px;
}

.icp {
  font-size: 11px;
  color: rgba(238, 238, 246, 0.18);
  text-decoration: none;
}

.icp:hover {
  color: rgba(238, 238, 246, 0.35);
}

@media (max-width: 380px) {
  .title {
    font-size: 42px;
  }

  .logo,
  .logo-wrap {
    width: 100px;
    height: 100px;
  }

  .logo-wrap {
    width: 116px;
    height: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-up-2,
  .fade-up-3,
  .fade-up-4,
  .float-anim,
  .logo-glow,
  .title-accent {
    animation: none !important;
    opacity: 1 !important;
  }
}
