@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* 基础rem基准：1rem = 16px */
}

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

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

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

ul,
ol {
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 185, 11, 0.1);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(11, 14, 17, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav-links a {
  color: rgb(132, 142, 156);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.header .nav-links a:hover {
  color: rgb(240, 185, 11);
}
.header .nav-links a:hover::after {
  width: 100%;
}
.header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(240, 185, 11);
  transition: width 0.3s;
}
.header .nav-btn {
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.header .nav-btn.btn-reg {
  background: rgb(240, 185, 11);
  color: rgb(11, 14, 17);
}
.header .nav-btn.btn-reg:hover {
  color: rgb(11, 14, 17);
  background: rgb(212, 163, 10);
  transform: translateY(-1px);
}
.header .nav-btn.btn-reg:hover::after {
  display: none;
}
.header .nav-btn.btn-down {
  background: transparent;
  color: rgb(240, 185, 11);
  border: 1px solid rgb(240, 185, 11);
  margin-left: 12px;
}
.header .nav-btn.btn-down:hover {
  background: rgba(240, 185, 11, 0.1);
}
.header .nav-btn.btn-down:hover::after {
  display: none;
}
.header .mobile-menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.header .mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgb(240, 185, 11);
  margin: 6px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header .mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  line-height: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5%, 5%);
  }
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 50px;
  font-size: 14px;
  color: rgb(240, 185, 11);
  margin-bottom: 24px;
}
.hero .hero-content .hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(14, 203, 129);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero .hero-content .highlight {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgb(240, 185, 11) 0%, rgb(247, 213, 110) 50%, rgb(240, 185, 11) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-content .subtitle {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(234, 236, 239) 40%, rgb(240, 185, 11) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-content .hero-desc {
  font-size: 18px;
  color: rgb(132, 142, 156);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero .hero-content .hero-image {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgb(43, 49, 57);
}
.hero .hero-content .hero-image .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-buttons .hero-btn {
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
}
.hero-buttons .hero-btn.hero-btn-primary {
  background: rgb(240, 185, 11);
  color: rgb(11, 14, 17);
  box-shadow: 0 4px 24px rgba(240, 185, 11, 0.3);
}
.hero-buttons .hero-btn.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 185, 11, 0.4);
}
.hero-buttons .hero-btn.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(234, 236, 239);
  border: 1px solid rgb(43, 49, 57);
}
.hero-buttons .hero-btn.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(94, 102, 115);
}
.hero-buttons .hero-btn.hero-btn-computer {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(234, 236, 239);
  border: 1px solid rgb(43, 49, 57);
}
.hero-buttons .hero-btn.hero-btn-computer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(94, 102, 115);
}

.ticker-bar {
  background: rgb(30, 35, 41);
  border-top: 1px solid rgb(43, 49, 57);
  border-bottom: 1px solid rgb(43, 49, 57);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-bar .ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-bar .ticker-track .ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ticker-bar .ticker-track .ticker-item .ticker-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
}
.ticker-bar .ticker-track .ticker-item .ticker-name {
  font-weight: 600;
  font-size: 14px;
}
.ticker-bar .ticker-track .ticker-item .ticker-price {
  font-weight: 700;
  font-size: 15px;
}
.ticker-bar .ticker-track .ticker-item .ticker-change {
  font-size: 14px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.ticker-bar .ticker-track .ticker-item .ticker-change.up {
  color: rgb(14, 203, 129);
  background: rgba(14, 203, 129, 0.1);
}
.ticker-bar .ticker-track .ticker-item .ticker-change.down {
  color: rgb(246, 70, 93);
  background: rgba(246, 70, 93, 0.1);
}

.stats {
  padding: 60px 20px;
  background: rgb(11, 14, 17);
}
.stats .stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats .stats-grid .stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgb(30, 35, 41);
  border-radius: 16px;
  border: 1px solid rgb(43, 49, 57);
  transition: all 0.3s;
}
.stats .stats-grid .stat-item:hover {
  border-color: rgba(240, 185, 11, 0.3);
  transform: translateY(-4px);
}
.stats .stats-grid .stat-item .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: rgb(240, 185, 11);
  margin-bottom: 5px;
}
.stats .stats-grid .stat-item .stat-label {
  font-size: 14px;
  color: rgb(132, 142, 156);
}

.section {
  padding: 80px 20px;
}
.section .section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section .section-header .section-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(240, 185, 11, 0.1);
  border-radius: 50px;
  font-size: 14px;
  color: rgb(240, 185, 11);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section .section-header .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section .section-header .section-subtitle {
  font-size: 16px;
  color: rgb(132, 142, 156);
  max-width: 600px;
  margin: 0 auto;
}
.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.coins-section {
  background: rgb(11, 14, 17);
}
.coins-section .coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(33.333% - 20px), 1fr));
  gap: 20px;
}
.coins-section .coins-grid .coin-card {
  background: rgb(30, 35, 41);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgb(43, 49, 57);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
}
.coins-section .coins-grid .coin-card:hover {
  border-color: rgba(240, 185, 11, 0.3);
  background: rgb(43, 49, 57);
  transform: translateY(-2px);
}
.coins-section .coins-grid .coin-card .coin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.coins-section .coins-grid .coin-card .coin-info {
  flex: 1;
}
.coins-section .coins-grid .coin-card .coin-info .coin-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.coins-section .coins-grid .coin-card .coin-info .coin-symbol {
  font-size: 13px;
  color: rgb(94, 102, 115);
}
.coins-section .coins-grid .coin-card .coin-price-info {
  text-align: right;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-price {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change {
  font-size: 14px;
  font-weight: 600;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change.up {
  color: rgb(14, 203, 129);
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change.down {
  color: rgb(246, 70, 93);
}

.features-section {
  background: linear-gradient(180deg, rgb(11, 14, 17) 0%, rgb(15, 19, 24) 100%);
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.features-section .features-grid .feature-card {
  background: rgb(30, 35, 41);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgb(43, 49, 57);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.features-section .features-grid .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, rgb(240, 185, 11) 0%, rgb(247, 213, 110) 50%, rgb(240, 185, 11) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.features-section .features-grid .feature-card:hover {
  border-color: rgba(240, 185, 11, 0.2);
  transform: translateY(-4px);
}
.features-section .features-grid .feature-card:hover::before {
  opacity: 1;
}
.features-section .features-grid .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(240, 185, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.features-section .features-grid .feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.features-section .features-grid .feature-card p {
  color: rgb(132, 142, 156);
  font-size: 14px;
  line-height: 1.7;
}

.gallery-section {
  background: rgb(11, 14, 17);
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-section .gallery-grid .gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(43, 49, 57);
  transition: all 0.3s;
  position: relative;
}
.gallery-section .gallery-grid .gallery-item:hover {
  border-color: rgba(240, 185, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.gallery-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.gallery-section .gallery-grid .gallery-item .gallery-caption {
  padding: 16px;
  background: rgb(30, 35, 41);
}
.gallery-section .gallery-grid .gallery-item .gallery-caption h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.gallery-section .gallery-grid .gallery-item .gallery-caption p {
  font-size: 13px;
  color: rgb(132, 142, 156);
}

.steps-section {
  background: linear-gradient(180deg, rgb(15, 19, 24) 0%, rgb(11, 14, 17) 100%);
}
.steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.steps-section .steps-grid .step-card {
  text-align: center;
  position: relative;
}
.steps-section .steps-grid .step-card .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(240, 185, 11) 0%, rgb(247, 213, 110) 50%, rgb(240, 185, 11) 100%);
  color: rgb(11, 14, 17);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}
.steps-section .steps-grid .step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.steps-section .steps-grid .step-card p {
  color: rgb(132, 142, 156);
  font-size: 14px;
  line-height: 1.6;
}
.steps-section .steps-grid .step-card .step-image {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgb(43, 49, 57);
}
.steps-section .steps-grid .step-card .step-image img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.security-section {
  background: rgb(11, 14, 17);
}
.security-section .security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.security-section .security-content .security-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgb(43, 49, 57);
}
.security-section .security-content .security-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.security-section .security-content .security-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.security-section .security-content .security-list .security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.security-section .security-content .security-list .security-item .security-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 203, 129, 0.1);
  color: rgb(14, 203, 129);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.security-section .security-content .security-list .security-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.security-section .security-content .security-list .security-item p {
  font-size: 14px;
  color: rgb(132, 142, 156);
  line-height: 1.6;
}

.cta-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, transparent 50%);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.08) 0%, transparent 70%);
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content .cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-section .cta-content .cta-desc {
  font-size: 18px;
  color: rgb(132, 142, 156);
  margin: 0 auto 36px;
}

.footer {
  background: rgb(8, 10, 13);
  border-top: 1px solid rgb(43, 49, 57);
  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;
  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.3s;
  font-size: 14px;
}
.footer .footer-grid .footer-brand .footer-social .social-link:hover {
  border-color: rgb(240, 185, 11);
  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(132, 142, 156);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer .footer-grid .footer-col a:hover {
  color: rgb(240, 185, 11);
}
.footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgb(43, 49, 57);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer-bottom p {
  color: rgb(94, 102, 115);
  font-size: 13px;
}
.footer .footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}
.footer .footer-bottom .footer-links a {
  color: rgb(94, 102, 115);
  font-size: 13px;
}
.footer .footer-bottom .footer-links a:hover {
  color: rgb(240, 185, 11);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(132, 142, 156);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

/* ==================== 移动端自适应样式 ==================== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .header .nav-container {
    height: 3.571rem;
    padding: 0 1.143rem;
  }
  .header .logo .item-image {
    width: 80%;
    height: 80%;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(11, 14, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.143rem;
    transition: right 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(1.429rem);
    -webkit-backdrop-filter: blur(1.429rem);
  }
  .header .nav-links.active {
    right: 0;
  }
  .header .nav-links a {
    font-size: 1.143rem;
  }
  .header .nav-buttons {
    display: flex;
    flex-direction: column;
  }
  .header .nav-buttons .btn-down {
    margin: 1.625rem 0 0;
  }
  .header .mobile-menu-btn {
    display: block;
  }
  .hero {
    padding: 6.225rem 1.145rem 3.285rem;
    min-height: auto;
  }
  .hero .hero-content .hero-badge {
    padding: 0.635rem 1.425rem;
    font-size: 0.925rem;
    gap: 0.625rem;
    margin-bottom: 1.965rem;
  }
  .hero .hero-content .hero-badge::before {
    width: 0.525rem;
    height: 0.525rem;
  }
  .hero .hero-content .highlight,
  .hero .hero-content .subtitle {
    font-size: 2.245rem;
    margin-bottom: 0.725rem;
  }
  .hero .hero-content .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.625rem;
    margin-bottom: 2.245rem;
  }
  .hero .hero-content .hero-image {
    margin-top: 2.825rem;
    border-radius: 0.825rem;
  }
  .hero-buttons {
    gap: 1.625rem;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .hero-btn {
    width: 80%;
    max-width: 80%;
    padding: 1.265rem 0;
    font-size: 1.215rem;
    justify-content: center;
  }
  .hero-buttons .hero-btn.hero-btn-computer {
    display: none;
  }
  .ticker-bar {
    padding: 0.857rem 0;
  }
  .ticker-bar .ticker-track {
    gap: 2.857rem;
    animation-duration: 25s;
  }
  .ticker-bar .ticker-item {
    gap: 0.571rem;
  }
  .ticker-bar .ticker-item .ticker-icon {
    width: 1.714rem;
    height: 1.714rem;
    font-size: 0.643rem;
  }
  .ticker-bar .ticker-item .ticker-name {
    font-size: 0.857rem;
  }
  .ticker-bar .ticker-item .ticker-price {
    font-size: 0.929rem;
  }
  .ticker-bar .ticker-item .ticker-change {
    font-size: 0.857rem;
    padding: 0.143rem 0.571rem;
  }
  .stats {
    padding: 2.625rem 1.145rem;
  }
  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stats .stats-grid .stat-item {
    padding: 1.429rem 0.857rem;
    border-radius: 0.857rem;
  }
  .stats .stats-grid .stat-item .stat-number {
    font-size: 1.714rem;
    margin-bottom: 0.286rem;
  }
  .stats .stats-grid .stat-item .stat-label {
    font-size: 0.786rem;
  }
  .section {
    padding: 3.285rem 1.145rem;
  }
  .section .section-header {
    margin-bottom: 2.857rem;
  }
  .section .section-header .section-tag {
    padding: 0.25rem 1.265rem;
    font-size: 1.025rem;
    margin-bottom: 0.725rem;
  }
  .section .section-header .section-title {
    font-size: 1.875rem;
    margin-bottom: 0.857rem;
  }
  .section .section-header .section-subtitle {
    font-size: 1rem;
  }
  .coins-section .coins-grid {
    grid-template-columns: 1fr;
    gap: 0.965rem;
  }
  .coins-section .coins-grid .coin-card {
    padding: 1.143rem;
    border-radius: 0.857rem;
    gap: 1rem;
  }
  .coins-section .coins-grid .coin-card .coin-icon {
    width: 2.857rem;
    height: 2.857rem;
    font-size: 0.857rem;
  }
  .coins-section .coins-grid .coin-card .coin-info .coin-name {
    font-size: 0.929rem;
    margin-bottom: 0.214rem;
  }
  .coins-section .coins-grid .coin-card .coin-info .coin-symbol {
    font-size: 0.714rem;
  }
  .coins-section .coins-grid .coin-card .coin-price-info .coin-price {
    font-size: 0.929rem;
    margin-bottom: 0.214rem;
  }
  .coins-section .coins-grid .coin-card .coin-price-info .coin-change {
    font-size: 0.786rem;
  }
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.143rem;
  }
  .features-section .features-grid .feature-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1.714rem;
    border-radius: 1.143rem;
  }
  .features-section .features-grid .feature-card .feature-icon {
    width: 3.571rem;
    height: 3.571rem;
    border-radius: 0.857rem;
    font-size: 1.429rem;
    margin-bottom: 1.143rem;
  }
  .features-section .features-grid .feature-card h3 {
    font-size: 1.143rem;
    margin-bottom: 0.714rem;
  }
  .features-section .features-grid .feature-card p {
    font-size: 0.857rem;
    line-height: 1.6;
    text-align: center;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.143rem;
  }
  .gallery-section .gallery-grid .gallery-item {
    border-radius: 0.857rem;
  }
  .gallery-section .gallery-grid .gallery-item img {
    height: 12.857rem;
  }
  .gallery-section .gallery-grid .gallery-item .gallery-caption {
    padding: 1rem;
  }
  .gallery-section .gallery-grid .gallery-item .gallery-caption h4 {
    font-size: 0.857rem;
    margin-bottom: 0.357rem;
  }
  .gallery-section .gallery-grid .gallery-item .gallery-caption p {
    font-size: 0.714rem;
  }
  .steps-section .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.143rem;
  }
  .steps-section .steps-grid .step-card .step-number {
    width: 3.571rem;
    height: 3.571rem;
    font-size: 1.429rem;
    margin-bottom: 0.625rem;
  }
  .steps-section .steps-grid .step-card h3 {
    font-size: 1.071rem;
    margin-bottom: 0.571rem;
  }
  .steps-section .steps-grid .step-card p {
    font-size: 0.857rem;
  }
  .steps-section .steps-grid .step-card .step-image {
    margin-top: 1.143rem;
    border-radius: 0.714rem;
  }
  .steps-section .steps-grid .step-card .step-image img {
    height: 10rem;
  }
  .security-section .security-content {
    grid-template-columns: 1fr;
    gap: 2.143rem;
  }
  .security-section .security-content .security-image {
    border-radius: 1.143rem;
    order: 2;
  }
  .security-section .security-content .security-image img {
    height: 17.857rem;
  }
  .security-section .security-content .security-list {
    gap: 1.429rem;
    order: 1;
  }
  .security-section .security-content .security-list .security-item {
    gap: 0.857rem;
  }
  .security-section .security-content .security-list .security-item .security-check {
    width: 1.714rem;
    height: 1.714rem;
    margin-top: 0.143rem;
    font-size: 0.714rem;
  }
  .security-section .security-content .security-list .security-item h4 {
    font-size: 0.929rem;
    margin-bottom: 0.357rem;
  }
  .security-section .security-content .security-list .security-item p {
    font-size: 0.857rem;
  }
  .cta-section {
    padding: 5.714rem 1.143rem;
  }
  .cta-section .cta-content .cta-title {
    font-size: 2rem;
    margin-bottom: 1.143rem;
  }
  .cta-section .cta-content .cta-desc {
    font-size: 1rem;
    margin-bottom: 2.143rem;
  }
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .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;
  }
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}/*# sourceMappingURL=styles.css.map */