@charset "UTF-8";
/* 原有PC端样式保持不变 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgb(11, 14, 23);
  color: rgb(255, 255, 255);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

/* ============ 导航栏 ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  min-width: 1200px;
}
.navbar.scrolled {
  background: rgba(11, 14, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 72px;
  margin: 0 auto;
}
.navbar .nav-inner .nav-logo {
  display: flex;
  align-items: center;
}
.navbar .nav-inner .nav-logo .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .nav-inner .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.navbar .nav-inner .nav-links a {
  position: relative;
  color: rgb(160, 174, 192);
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 3px;
}
.navbar .nav-inner .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  transition: width 0.3s ease;
}
.navbar .nav-inner .nav-links a:hover {
  color: rgb(255, 255, 255);
}
.navbar .nav-inner .nav-links a:hover::after {
  width: 100%;
}
.navbar .nav-inner .button-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar .nav-inner .button-box .nav-btn-reg {
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  color: rgb(11, 14, 23);
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .nav-inner .button-box .nav-btn-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}
.navbar .nav-inner .button-box .nav-btn-down {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: rgb(255, 255, 255);
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .nav-inner .button-box .nav-btn-down:hover {
  border-color: rgb(0, 212, 170);
  background: rgba(0, 212, 170, 0.05);
}
.navbar .nav-inner .mobile-toggle {
  display: none;
}

/* ============ Hero 区域 ============ */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  overflow: hidden;
  width: 100%;
}
.hero .hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  width: 1200px;
  line-height: 1.2;
  gap: 50px;
  margin: 0 auto;
}
.hero .hero-grid .hero-content {
  position: relative;
  z-index: 2;
}
.hero .hero-grid .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 50px;
  font-size: 14px;
  color: rgb(0, 212, 170);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero .hero-grid .hero-content .hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(0, 212, 170);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero .hero-grid .hero-content .highlight {
  font-size: 56px;
  color: rgb(255, 255, 255);
  font-weight: 900;
  margin: 0 0 5px;
}
.hero .hero-grid .hero-content .subtitle {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-grid .hero-content .hero-desc {
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero .hero-grid .hero-content .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.hero .hero-grid .hero-content .hero-actions .btn-reg {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: rgb(11, 14, 23);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .hero-grid .hero-content .hero-actions .btn-reg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 212, 170, 0.35);
}
.hero .hero-grid .hero-content .hero-actions .btn-down {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: rgb(255, 255, 255);
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .hero-grid .hero-content .hero-actions .btn-down:hover {
  border-color: rgb(0, 212, 170);
  background: rgba(0, 212, 170, 0.05);
}
.hero .hero-grid .hero-content .hero-actions .btn-pc {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: rgb(255, 255, 255);
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .hero-grid .hero-content .hero-actions .btn-pc:hover {
  border-color: rgb(0, 212, 170);
  background: rgba(0, 212, 170, 0.05);
}
.hero .hero-grid .hero-content .hero-stats {
  display: flex;
  gap: 40px;
}
.hero .hero-grid .hero-content .hero-stats .hero-stat {
  text-align: left;
}
.hero .hero-grid .hero-content .hero-stats .hero-stat .hero-stat-value {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, rgb(240, 185, 11) 0%, rgb(248, 213, 107) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-grid .hero-content .hero-stats .hero-stat .hero-stat-label {
  font-size: 14px;
  color: rgb(107, 122, 153);
  margin-top: 5px;
}
.hero .hero-grid .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero .hero-grid .hero-visual .hero-phone {
  position: relative;
  width: 300px;
  height: 600px;
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
  background: rgb(20, 25, 41);
  overflow: hidden;
}
.hero .hero-grid .hero-visual .hero-phone img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-grid .hero-visual .hero-float-card {
  position: absolute;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: rgb(20, 25, 41);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.hero .hero-grid .hero-visual .hero-float-card.card-1 {
  top: 60px;
  left: -30px;
  animation-delay: 0s;
}
.hero .hero-grid .hero-visual .hero-float-card.card-2 {
  bottom: 120px;
  right: -30px;
  animation-delay: 2s;
}
.hero .hero-grid .hero-visual .hero-float-card.card-3 {
  bottom: 40px;
  left: -20px;
  animation-delay: 4s;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 18px;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info {
  display: flex;
  flex-direction: column;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-name {
  font-weight: 700;
  font-size: 14px;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-price {
  font-size: 12px;
  color: rgb(0, 212, 170);
  font-weight: 600;
}
.hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-change {
  font-size: 12px;
  color: rgb(107, 122, 153);
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ============ 特色功能区 ============ */
.features {
  position: relative;
  width: 100%;
  padding: 80px 0;
  z-index: 1;
}
.features .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.features .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.features .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.features .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.features .features-grid {
  display: grid;
  grid-template-columns: 384px 384px 384px;
  gap: 24px;
  width: 1200px;
  margin: 0 auto;
}
.features .features-grid .feature-card {
  background: rgb(20, 25, 41);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.features .features-grid .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.features .features-grid .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 170, 0.2);
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.15);
}
.features .features-grid .feature-card:hover::before {
  transform: scaleX(1);
}
.features .features-grid .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 212, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
}
.features .features-grid .feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.features .features-grid .feature-card p {
  color: rgb(160, 174, 192);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ 币种展示区 ============ */
.coins {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: rgb(20, 25, 41);
}
.coins .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.coins .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.coins .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.coins .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.coins .coins-table {
  width: 1200px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.coins .coins-table th {
  text-align: left;
  padding: 12px 20px;
  color: rgb(107, 122, 153);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.coins .coins-table td {
  padding: 20px;
  background: rgb(11, 14, 23);
  font-size: 15px;
}
.coins .coins-table td:first-child {
  border-radius: 12px 0 0 12px;
}
.coins .coins-table td:last-child {
  border-radius: 0 12px 12px 0;
}
.coins .coins-table .coin-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.coins .coins-table .coin-info .coin-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.coins .coins-table .coin-info .coin-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coins .coins-table .coin-info .coin-name {
  font-weight: 700;
}
.coins .coins-table .coin-info .coin-symbol {
  color: rgb(107, 122, 153);
  font-size: 13px;
}
.coins .coins-table .coin-change.positive {
  color: rgb(0, 212, 170);
}
.coins .coins-table .coin-change.negative {
  color: rgb(255, 107, 107);
}
.coins .coins-table .trade-btn {
  padding: 8px 20px;
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 8px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}
.coins .coins-table .trade-btn:hover {
  background: rgb(0, 212, 170);
  color: rgb(11, 14, 23);
}

/* ============ 安全与优势区 ============ */
.security {
  width: 100%;
  padding: 80px 0;
  position: relative;
}
.security .section-header {
  margin-bottom: 40px;
}
.security .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.security .section-header .section-title {
  line-height: 1.4;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.security .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.security .security-grid {
  display: grid;
  grid-template-columns: 560px 560px;
  gap: 80px;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
.security .security-grid .security-image {
  position: relative;
  width: 560px;
  height: 400px;
}
.security .security-grid .security-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}
.security .security-grid .security-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.security .security-grid .security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.security .security-grid .security-list .security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.security .security-grid .security-list .security-item .security-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 21px;
}
.security .security-grid .security-list .security-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.security .security-grid .security-list .security-item p {
  color: rgb(160, 174, 192);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ 交易数据展示 ============ */
.data-showcase {
  width: 100%;
  padding: 80px 0;
  background: rgb(20, 25, 41);
}
.data-showcase .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.data-showcase .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.data-showcase .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.data-showcase .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.data-showcase .data-grid {
  display: grid;
  grid-template-columns: 282px 282px 282px 282px;
  gap: 24px;
  width: 1200px;
  margin: 0 auto 64px;
}
.data-showcase .data-grid .data-card {
  text-align: center;
  padding: 40px 24px;
  background: rgb(11, 14, 23);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.data-showcase .data-grid .data-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-4px);
}
.data-showcase .data-grid .data-card .data-value {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 180, 216) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.data-showcase .data-grid .data-card .data-label {
  color: rgb(160, 174, 192);
  font-size: 15px;
}
.data-showcase .data-chart {
  width: 1200px;
  height: 300px;
  margin: 0 auto;
  background: rgb(11, 14, 23);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.data-showcase .data-chart img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}

/* ============ 用户评价 ============ */
.testimonials {
  width: 100%;
  padding: 80px 0;
  position: relative;
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonials .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.testimonials .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: 384px 384px 384px;
  gap: 24px;
  width: 1200px;
  margin: 0 auto;
}
.testimonials .testimonials-grid .testimonial-card {
  background: rgb(20, 25, 41);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}
.testimonials .testimonials-grid .testimonial-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
}
.testimonials .testimonials-grid .testimonial-card .testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: rgb(240, 185, 11);
  font-size: 16px;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-text {
  color: rgb(160, 174, 192);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-name {
  font-weight: 700;
  font-size: 15px;
}
.testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-role {
  color: rgb(107, 122, 153);
  font-size: 13px;
}

/* ============ 下载CTA区 ============ */
.download-cta {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: rgb(20, 25, 41);
  overflow: hidden;
}
.download-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-cta .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.download-cta .section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  color: rgb(0, 212, 170);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  background: rgba(0, 212, 170, 0.1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.download-cta .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.download-cta .section-header .section-desc {
  width: 600px;
  font-size: 18px;
  color: rgb(160, 174, 192);
  margin: 0 auto;
}
.download-cta .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
}
.download-cta .cta-content h2 {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.download-cta .cta-content p {
  color: rgb(160, 174, 192);
  font-size: 18px;
  margin-bottom: 40px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.download-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}
.download-cta .cta-content .cta-buttons .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: rgb(11, 14, 23);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.download-cta .cta-content .cta-buttons .download-btn:hover {
  border-color: rgb(0, 212, 170);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.15);
}
.download-cta .cta-content .cta-buttons .download-btn .download-btn-icon {
  font-size: 32px;
}
.download-cta .cta-content .cta-buttons .download-btn .download-btn-text {
  text-align: left;
}
.download-cta .cta-content .cta-buttons .download-btn .download-btn-text .download-btn-small {
  font-size: 12px;
  color: rgb(107, 122, 153);
}
.download-cta .cta-content .cta-buttons .download-btn .download-btn-text .download-btn-large {
  font-size: 18px;
  font-weight: 700;
}
.download-cta .cta-content .cta-platforms {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.download-cta .cta-content .cta-platforms .cta-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(107, 122, 153);
  font-size: 14px;
}
.download-cta .cta-content .cta-platforms .cta-platform svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============ 页脚 ============ */
.footer {
  background: rgb(10, 15, 25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 20px 30px;
}
.footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .footer-grid .footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  color: rgb(255, 255, 255);
  margin-bottom: 16px;
}
.footer .footer-grid .footer-brand p {
  font-size: 14px;
  color: rgb(160, 175, 190);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer .footer-grid .footer-brand .footer-social {
  display: flex;
  gap: 12px;
}
.footer .footer-grid .footer-brand .footer-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgb(30, 35, 41);
  border: 1px solid rgb(43, 49, 57);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  font-size: 14px;
}
.footer .footer-grid .footer-brand .footer-social .social-link:hover {
  border-color: rgb(0, 185, 210);
  background: rgba(240, 185, 11, 0.1);
}
.footer .footer-grid .footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(234, 236, 239);
}
.footer .footer-grid .footer-col a {
  display: block;
  color: rgb(160, 175, 190);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.1s;
}
.footer .footer-grid .footer-col a:hover {
  color: rgb(0, 185, 210);
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgb(43, 49, 57);
}
.footer .footer-bottom p {
  font-size: 14px;
  color: rgb(160, 175, 190);
}
.footer .footer-bottom .footer-links {
  display: flex;
}

/* ============ 动画 ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(11, 14, 23);
}

::-webkit-scrollbar-thumb {
  background: rgb(28, 35, 51);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(107, 122, 153);
}

/* ==================== 移动端响应式设计 ==================== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  body {
    min-width: 100%;
  }
  .container {
    width: 100%;
    padding: 0 0.725rem;
  }
  /* ============ 导航栏 ============ */
  .navbar {
    min-width: 100%;
  }
  .navbar .nav-inner {
    width: 100%;
    height: 3.5rem;
    padding: 0 0.725rem;
  }
  .navbar .nav-inner .nav-links {
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1.5rem 0;
    background: rgba(11, 14, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .navbar .nav-inner .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .navbar .nav-inner .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  .navbar .nav-inner .button-box {
    display: none;
  }
  .navbar .nav-inner .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background-color: transparent;
  }
  .navbar .nav-inner .mobile-toggle span {
    width: 1.5rem;
    height: 0.15rem;
    background: rgb(255, 255, 255);
    border-radius: 0.0625rem;
    transition: all 0.3s ease;
  }
  .navbar .nav-inner .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
  }
  .navbar .nav-inner .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar .nav-inner .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
  }
  /* ============ Hero 区域 ============ */
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 3rem;
    padding: 0 1.25rem;
  }
  .hero .hero-grid .hero-content {
    text-align: center;
  }
  .hero .hero-grid .hero-content .hero-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero .hero-grid .hero-content .hero-badge::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .hero .hero-grid .hero-content .highlight {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  .hero .hero-grid .hero-content .subtitle {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .hero .hero-grid .hero-content .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .hero .hero-grid .hero-content .hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero .hero-grid .hero-content .hero-actions .btn-reg,
  .hero .hero-grid .hero-content .hero-actions .btn-down {
    width: 100%;
    justify-content: center;
    padding: 1.275rem 2rem;
    font-size: 1.125rem;
  }
  .hero .hero-grid .hero-content .hero-actions .btn-pc {
    display: none;
  }
  .hero .hero-grid .hero-content .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  .hero .hero-grid .hero-content .hero-stats .hero-stat {
    text-align: center;
  }
  .hero .hero-grid .hero-content .hero-stats .hero-stat .hero-stat-value {
    font-size: 1.5rem;
  }
  .hero .hero-grid .hero-content .hero-stats .hero-stat .hero-stat-label {
    font-size: 0.75rem;
  }
  .hero .hero-grid .hero-visual .hero-phone {
    width: 80%;
    height: 100%;
    border-radius: 2rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card {
    padding: 0.75rem 1rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card.card-1 {
    top: 3rem;
    left: -0.5rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card.card-2 {
    bottom: 6rem;
    right: -0.5rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card.card-3 {
    bottom: 2rem;
    left: -0.25rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card .float-card-row {
    gap: 0.5rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-name {
    font-size: 0.75rem;
  }
  .hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-price,
  .hero .hero-grid .hero-visual .hero-float-card .float-card-row .float-card-info .float-card-change {
    font-size: 0.625rem;
  }
  /* ============ 特色功能区 ============ */
  .features {
    padding: 4rem 0;
  }
  .features .section-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }
  .features .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .features .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .features .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
    width: 100%;
    padding: 0 1.25rem;
  }
  .features .features-grid .feature-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .features .features-grid .feature-card .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .features .features-grid .feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .features .features-grid .feature-card p {
    font-size: 0.875rem;
    text-align: center;
  }
  /* ============ 币种展示区 ============ */
  .coins {
    padding: 4rem 0;
  }
  .coins .section-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }
  .coins .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .coins .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .coins .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .coins .coins-table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem;
  }
  .coins .coins-table th,
  .coins .coins-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .coins .coins-table .coin-info {
    gap: 0.75rem;
  }
  .coins .coins-table .coin-info .coin-logo {
    width: 2rem;
    height: 2rem;
  }
  .coins .coins-table .coin-info .coin-name {
    font-size: 0.875rem;
  }
  .coins .coins-table .coin-info .coin-symbol {
    font-size: 0.75rem;
  }
  .coins .coins-table .trade-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  /* ============ 安全与优势区 ============ */
  .security {
    padding: 4rem 0;
  }
  .security .section-header {
    margin-bottom: 2.5rem;
    padding: 0 1.25rem;
    text-align: center;
  }
  .security .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .security .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .security .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .security .security-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2.5rem;
    padding: 0 1.25rem;
  }
  .security .security-grid .security-image {
    width: 100%;
    height: auto;
    order: 2;
  }
  .security .security-grid .security-list {
    order: 1;
    gap: 1.5rem;
  }
  .security .security-grid .security-list .security-item {
    gap: 1rem;
  }
  .security .security-grid .security-list .security-item .security-item-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
  .security .security-grid .security-list .security-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .security .security-grid .security-list .security-item p {
    font-size: 0.875rem;
  }
  /* ============ 交易数据展示 ============ */
  .data-showcase {
    padding: 4rem 0;
  }
  .data-showcase .section-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }
  .data-showcase .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .data-showcase .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .data-showcase .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .data-showcase .data-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0 1.25rem;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .data-showcase .data-grid .data-card {
    padding: 1.5rem 1rem;
  }
  .data-showcase .data-grid .data-card .data-value {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .data-showcase .data-grid .data-card .data-label {
    font-size: 0.875rem;
  }
  .data-showcase .data-chart {
    width: calc(100% - 2.5rem);
    height: 12.5rem;
    margin: 0 1.25rem;
  }
  /* ============ 用户评价 ============ */
  .testimonials {
    padding: 4rem 0;
  }
  .testimonials .section-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }
  .testimonials .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .testimonials .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .testimonials .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 1.25rem;
    gap: 1.25rem;
  }
  .testimonials .testimonials-grid .testimonial-card {
    padding: 1.75rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-stars {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-author {
    gap: 0.75rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-name {
    font-size: 0.875rem;
  }
  .testimonials .testimonials-grid .testimonial-card .testimonial-author .testimonial-role {
    font-size: 0.75rem;
  }
  /* ============ 下载CTA区 ============ */
  .download-cta {
    padding: 4rem 0;
  }
  .download-cta::before {
    width: 30rem;
    height: 30rem;
  }
  .download-cta .section-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }
  .download-cta .section-header .section-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
  }
  .download-cta .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .download-cta .section-header .section-desc {
    width: 100%;
    font-size: 1rem;
  }
  .download-cta .cta-content {
    width: 100%;
    padding: 0 1.25rem;
  }
  .download-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .download-cta .cta-content p {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .download-cta .cta-content .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .download-cta .cta-content .cta-buttons .download-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .download-cta .cta-content .cta-buttons .download-btn .download-btn-icon {
    font-size: 2rem;
  }
  .download-cta .cta-content .cta-buttons .download-btn .download-btn-text .download-btn-small {
    font-size: 0.75rem;
  }
  .download-cta .cta-content .cta-buttons .download-btn .download-btn-text .download-btn-large {
    font-size: 1.125rem;
  }
  .download-cta .cta-content .cta-platforms {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .download-cta .cta-content .cta-platforms .cta-platform {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .download-cta .cta-content .cta-platforms .cta-platform svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  /* ============ 页脚 ============ */
  .footer {
    padding: 3rem 0 1.5rem !important;
  }
  .footer .footer-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  .footer .footer-grid .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1/-1;
    margin-bottom: 0.5rem;
  }
  .footer .footer-grid .footer-brand h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  .footer .footer-grid .footer-brand p {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 80%;
  }
  .footer .footer-grid .footer-brand .footer-social {
    gap: 0.75rem;
  }
  .footer .footer-grid .footer-brand .footer-social .social-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
  .footer .footer-grid .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-grid .footer-col h4 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
  .footer .footer-grid .footer-col ul li {
    margin-bottom: 0.5rem;
  }
  .footer .footer-grid .footer-col ul li a {
    font-size: 0.8125rem;
  }
  .footer .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
  }
  .footer .footer-bottom p {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .float-cta {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .float-cta a {
    padding: 0.875rem 1.75rem;
    border-radius: 3.125rem;
    font-size: 0.9375rem;
    gap: 0.5rem;
  }
}/*# sourceMappingURL=styles.css.map */