.page-news {
  --primary: #4a4efa;
  --primary-dark: #3a3ce0;
  --bg: #f8faff;
  --text: #1a1a1a;
  --text-gray: #666;
  --radius-lg: 32px;
  --radius-md: 16px;
}
.page-news * {
  box-sizing: border-box;
}
.page-news {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #edf0ff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.page-news a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 16px;
  color: var(--text-gray);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.3s;
}
.nav-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Hero - 3 Column Layout */
.hero {
  margin: 100px 40px 0;
  padding: 60px 60px 0;
  position: relative;
  z-index: 10;
  overflow: visible;
  min-height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  color: var(--text);
  text-align: left;
}
.hero::after {
  display: none;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Hero Left */
.hero-left {
  flex: 1;
  padding-top: 60px;
}
.hero-title-text {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}
.hero-title-cn {
  font-size: 52px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 65px;
}
.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  background: #eef2ff;
  color: var(--primary);
  padding: 8px 8px 8px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hero-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(74, 78, 250, 0.15);
}
.hero-arrow {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s;
}
.hero-download-btn:hover .hero-arrow {
  transform: translateX(4px) rotate(-45deg);
}

.product-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.product-qr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 56, 0.48);
  backdrop-filter: blur(8px);
}

.product-qr-modal__dialog {
  position: relative;
  width: min(380px, calc(100vw - 32px));
  padding: 28px 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 78, 246, 0.12), transparent 32%),
    #ffffff;
  box-shadow: 0 28px 80px rgba(18, 31, 67, 0.24);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.28s ease;
}

.product-qr-modal.is-open .product-qr-modal__dialog {
  transform: translateY(0) scale(1);
}

.product-qr-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f3f6fb;
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-qr-modal__close:hover {
  background: #e7eefb;
  transform: rotate(90deg);
}

.product-qr-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 78, 246, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.product-qr-modal__title {
  margin: 16px 0 10px;
  color: #222;
  font-size: 30px;
  line-height: 1.2;
}

.product-qr-modal__desc {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}

.product-qr-modal__qr-box {
  width: min(240px, 100%);
  margin: 24px auto 0;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 78, 246, 0.08);
}

.product-qr-modal__qr-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Hero Center - Phone */
.hero-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
  margin-bottom: -450px;
}
.hero-phone-img {
  width: 440px;
  height: auto;
  max-width: 100%;
  border-radius: 40px;
  animation: hero-phone-float 6s ease-in-out infinite;
}

@keyframes hero-phone-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hero Right */
.hero-right {
  flex: 1;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 280px;
}
.hero-right-desc {
  font-size: 16px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.8;
}
.hero-right-stats {
  position: relative;
  height: 90px;
  overflow: hidden;
}
.hero-stats-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-stats-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: statsCarousel 6s ease-in-out infinite;
}
.hero-stats-item:nth-child(2) {
  animation-delay: 3s;
}

@keyframes statsCarousel {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #fff;
}

/* Hero Bottom Bar */
.hero-bar {
  background: var(--primary);
  color: #fff;
  padding: 400px 0 60px; /* Big height to account for phone */
  margin: 0 auto;
  max-width: 1240px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.hero-bar-bg {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  font-size: 140px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
  user-select: none;
  line-height: 1;
  text-align: center;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}
.hero-bar-text {
  font-size: 26px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.hero-bar-logo {
  display: none; /* No logo visible in new screenshot */
}
.hero-download {
  display: none;
}

/* Partners Marquee */
.partners-marquee {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.partners-track {
  display: flex;
  flex-shrink: 0;
  animation: scroll-left 30s linear infinite;
}
.partner-logo {
  flex: 0 0 auto;
  width: 200px; /* Fixed width for grid effect */
  padding: 24px 0;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s;
}
.partner-logo:hover {
  color: #fff;
}
@keyframes scroll-left {
  100% {
    transform: translateX(-50%);
  }
}

/* Hero subtitle bar */
.hero-subtitle-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 28px 40px;
  margin: 0 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

/* Intro Section */
.intro-sec {
  text-align: center;
  padding: 160px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  background: transparent;
}
.intro-sec h2 {
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 50px;
  font-weight: 600;
}

/* 搴曢儴涓婃粦鍗＄墖 */
.intro-bottom-card {
  margin-top: 220px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.intro-sec.active .intro-bottom-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.market-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  width: 486px;
  height: 361px;
  max-width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.market-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #f3f4f6;
}
.market-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.market-coin-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.market-row-chart {
  width: 80px;
  height: 30px;
}
.market-row-right {
  text-align: right;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: var(--weave-color-primary, rgba(76, 61, 255, 1));
  color: #fff;
  padding: 4px 4px 4px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #eee;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.download-btn .arrow-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--weave-color-primary, rgba(76, 61, 255, 1));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.3s;
}
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(74, 78, 250, 0.15);
}
.download-btn:hover .arrow-icon {
  transform: translateX(4px) rotate(-45deg);
}

/* Floating cards */
.float-card {
  position: absolute;
  width: 312px;
  height: 312px;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  z-index: 3;
  animation: float-left 4s ease-in-out infinite;
}
.float-card.left {
  left: 0;
  top: 20%;
}
.float-card.right {
  right: 0;
  top: 20%;
  animation: float-right 4s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-20px) rotate(-15deg);
  }
}
@keyframes float-right {
  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

/* 鏈嶅姟鍗＄墖妯″潡锛堜笌棣栭〉涓€鑷达級 */
.trio-cards-sec {
  padding: 80px 40px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(270deg, #eaf3ff 0%, #ffffff 100%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  border: 1px solid #ffffff;
  padding: 24px;
  display: flex;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 50, 150, 0.08);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}
.service-card p {
  margin: 0 0 40px;
  color: #212121;
  font-size: 13px;
  line-height: 1.7;
  flex: 1;
}
.service-card-left {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.service-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.service-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--primary, #0b63ff);
  border-radius: 4px;
  color: var(--primary, #0b63ff);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-card-view:hover {
  background: var(--primary, #0b63ff);
  color: #fff;
}
.service-card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Features */
.features-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  padding-top: 100px;
}
.features-head h2 {
  font-size: 46px;
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 0px 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 10, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-card.feature-card-bg {
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* 鏂囧瓧鍖哄煙 */
.fc-text {
  padding: 36px 32px 0;
  position: relative;
  z-index: 2;
}
.fc-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
  line-height: 1.3;
}
.fc-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}
.fc-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(74, 78, 250, 0.08);
  color: var(--primary);
}
.fc-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fc-desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Web3 Showcase: Phone + Token Cloud */
.web3-sec {
  text-align: center;
  padding: 100px calc((100% - 1200px) / 2 + 40px) 80px;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}
.web3-sec h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
}
.web3-sec p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.web3-showcase {
  position: relative;
  margin-top: 60px;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Token Cloud - Horizontal Scrolling Rows */
.token-cloud {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}
.token-row {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.token-row-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.token-row-left .token-row-track {
  animation: token-scroll-left 25s linear infinite;
}
.token-row-right .token-row-track {
  animation: token-scroll-right 25s linear infinite;
}
.token-cloud .token-pill {
  flex-shrink: 0;
  background: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}
.token-cloud .token-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.tp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes token-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes token-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Phone Mockup */
.phone-mockup {
  width: 300px;
  background: #fff;
  border-radius: 40px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.phone-mockup img {
  width: 100%;
  height: auto;
}
.phone-notch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 10px;
}
.phone-notch-bar {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 20px;
}

/* Wallet UI inside phone */
.wallet-header {
  padding: 4px 16px 8px;
}
.wallet-balance {
  text-align: center;
  padding: 8px 16px 16px;
}
.wallet-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 16px 16px;
}
.wa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.wa-icon {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #333;
}
.wa-active .wa-icon {
  background: var(--primary);
  color: #fff;
}
.wallet-section {
  padding: 8px 16px 12px;
}
.fav-card {
  flex: 1;
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  min-width: 0;
}
.wallet-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 16px;
  border-top: 1px solid #f1f1f1;
  margin-top: 8px;
}
.wn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #999;
}
.wn-item.wn-active {
  color: var(--primary);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  flex-direction: row;
  gap: 6px;
  font-size: 11px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.security-sec {
  padding: 120px 40px 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.security-sec .sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.security-sec .sec-head h2 {
  font-size: 46px;
  font-weight: 800;
}
.security-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}
.sec-card:hover {
  transform: translateY(-4px);
}
.sec-card.sec-card-main {
  background: linear-gradient(145deg, #e0dcff, #dbd6ff, #e8e4ff);
  padding: 60px;
  align-items: center;
  gap: 40px;
}
.sec-main-btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.sec-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(74, 78, 250, 0.25);
}
.sec-swap-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.sec-swap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.sec-swap-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 8px 0;
}
.sec-swap-btn {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.sec-swap-btn:hover {
  background: var(--primary-dark);
}
.sec-card .sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
}
.sec-card-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Testimonials */
.testimonials-sec {
  padding: 100px 24px 100px calc((100% - 1240px) / 2 + 40px);
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
}
.testimonials-sec h2 {
  font-size: 46px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 16px;
}
.testimonials-sec .sub {
  text-align: left;
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* Carousel Container */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-carousel:hover .carousel-arrow {
  opacity: 1;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc((100% - 80px) / 5);
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
  min-width: 0;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.testimonial-card .quote {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-card .text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card .name {
  font-weight: 700;
  font-size: 16px;
}
.testimonial-card .stars {
  color: #fbbf24;
  font-size: 14px;
}

/* Slide-up animation for newly appearing card */
@keyframes card-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-card.slide-up {
  animation: card-slide-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Carousel Arrow Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #333;
  z-index: 10;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.2s,
    transform 0.2s;
}
.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.carousel-arrow-left {
  left: 8px;
}
.carousel-arrow-right {
  right: 8px;
}

/* FAQ */
.faq-sec {
  background: transparent;
}

/* Stats */
.stats-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
}
.stat-item .label {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 8px;
}

/* FAQ Detail */
.faq-sec {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-sec h2 {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
  cursor: pointer;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.faq-item.open {
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
}
.faq-item.open .faq-q {
  color: var(--primary);
}
.faq-q .icon {
  font-size: 24px;
  color: var(--text-gray);
  transition: transform 0.3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 16px;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

/* CTA */
.cta-sec {
  margin: 120px 40px 80px;
  padding: 100px 40px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-sec h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-sec p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: transparent;
  padding: 80px 40px 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}

/* Mock Swap UI */
.mock-swap {
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin: 50px auto 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.mock-row {
  background: #f4f6f9;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-coin {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-coin-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-coin-name {
  font-size: 14px;
  font-weight: 700;
}
.mock-coin-sub {
  font-size: 11px;
  color: #999;
}
.mock-amt-val {
  font-size: 18px;
  font-weight: 800;
  text-align: right;
}
.mock-amt-fiat {
  font-size: 11px;
  color: #999;
  text-align: right;
}
.mock-btn {
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.mock-btn:hover {
  background: var(--primary-dark);
}

/* Mock tokens grid */
.mock-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  max-width: 400px;
}
.mock-icon-wrap {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.mock-icon-wrap:hover {
  transform: scale(1.1);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 骞虫澘绔?鈮?024px ===== */
@media (max-width: 1024px) {
  .hero {
    margin: 80px 20px 0;
    padding: 40px 30px 0;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-left,
  .hero-right {
    padding-top: 20px;
    align-items: center;
    max-width: 100%;
  }
  .hero-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 0;
  }
  .hero-phone-img {
    width: 300px;
  }
  .float-card {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 80px;
  }
  .service-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .trio-cards-sec {
    padding: 60px 20px 40px;
  }
  .service-card-left {
    width: 100%;
  }
  .service-card-img {
    width: 120px;
    height: 120px;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .token-cloud .token-pill {
    display: none;
  }
  .sec-card {
    flex-direction: column;
    padding: 36px;
  }
  .sec-card.sec-card-main {
    padding: 40px;
  }
  .sec-swap-card {
    min-width: 100%;
  }
  .stats-sec {
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 20px;
  }
  .web3-sec {
    padding: 80px 20px 60px;
  }
  .web3-sec h2 {
    font-size: 36px;
  }
  .hero-bar {
    padding: 300px 0 40px;
    margin: 20px auto 0;
  }
  .hero-bar-bg {
    font-size: 100px;
  }
  .hero-subtitle-bar {
    margin: 0 20px;
    font-size: 16px;
    padding: 20px;
  }
}

/* ===== 骞虫澘绔栧睆 鈮?68px ===== */
@media (max-width: 768px) {
  .nav-links,
  .nav-btn {
    display: none;
  }
  .navbar {
    padding: 0 20px;
    height: 60px;
  }
  .hero {
    margin: 68px 16px 0;
    padding: 30px 20px 0;
  }
  .hero-title-text {
    font-size: 32px;
  }
  .hero-title-cn {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .hero-phone-img {
    width: 260px;
  }
  .hero-bar {
    margin: 10px 16px 0;
    padding: 200px 20px 30px;
    border-radius: 24px;
  }
  .hero-bar-bg {
    font-size: 60px;
  }
  .hero-bar-text {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .hero-subtitle-bar {
    margin: 0 16px;
    font-size: 14px;
    padding: 16px 20px;
  }
  .hero-download-btn {
    font-size: 16px;
    padding: 6px 6px 6px 24px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .product-qr-modal {
    padding: 20px;
  }
  .product-qr-modal__dialog {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }
  .product-qr-modal__title {
    font-size: 26px;
  }
  .product-qr-modal__desc {
    font-size: 16px;
  }
  .intro-sec {
    padding: 80px 20px;
  }
  .intro-sec h2 {
    font-size: 28px;
  }
  .intro-bottom-card {
    margin-top: 120px;
  }
  .market-card {
    width: 100%;
    height: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .features-head {
    padding-top: 60px;
    margin-bottom: 36px;
  }
  .features-head h2,
  .web3-sec h2,
  .security-sec .sec-head h2,
  .testimonials-sec h2,
  .faq-sec h2,
  .cta-sec h2 {
    font-size: 28px;
  }
  .feature-card {
    padding: 30px;
    min-height: 360px;
  }
  .service-bottom-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-left {
    width: 100%;
  }
  .service-card-img {
    width: 100px;
    height: 100px;
  }
  .web3-showcase {
    min-height: 400px;
  }
  .phone-mockup {
    width: 240px;
  }
  .security-sec {
    padding: 60px 20px;
  }
  .testimonials-sec {
    padding: 60px 20px;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
    padding: 24px;
  }
  .stats-sec {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }
  .stat-item .num {
    font-size: 42px;
  }
  .faq-sec {
    padding: 60px 20px;
  }
  .cta-sec {
    margin: 40px 16px 40px;
    padding: 60px 20px;
  }
  .footer {
    padding: 40px 20px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== 鎵嬫満绔?鈮?80px ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 0 12px;
    height: 54px;
  }
  .logo {
    font-size: 18px;
  }
  .hero {
    margin: 60px 12px 0;
    padding: 20px 16px 0;
  }
  .hero-title-text {
    font-size: 26px;
  }
  .hero-title-cn {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero-phone-img {
    width: 220px;
  }
  .hero-bar {
    margin: 10px 12px 0;
    padding: 160px 16px 24px;
    border-radius: 20px;
  }
  .hero-bar-bg {
    font-size: 40px;
  }
  .hero-bar-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .hero-subtitle-bar {
    margin: 0 12px;
    font-size: 13px;
    padding: 14px 16px;
  }
  .hero-right-desc {
    font-size: 13px;
  }
  .hero-download-btn {
    font-size: 14px;
    padding: 4px 4px 4px 20px;
    gap: 16px;
  }
  .product-qr-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .product-qr-modal__title {
    font-size: 22px;
  }
  .product-qr-modal__qr-box {
    width: min(220px, 100%);
    padding: 12px;
  }
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .download-btn {
    font-size: 16px;
    padding: 3px 3px 3px 24px;
  }
  .download-btn .arrow-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .intro-sec {
    padding: 60px 16px;
  }
  .intro-sec h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .intro-bottom-card {
    margin-top: 80px;
  }
  .trio-cards-sec {
    padding: 40px 12px 30px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .service-card-img {
    width: 80px;
    height: 80px;
  }
  .features-head {
    padding-top: 40px;
    margin-bottom: 24px;
  }
  .features-head h2,
  .web3-sec h2,
  .security-sec .sec-head h2,
  .testimonials-sec h2,
  .faq-sec h2,
  .cta-sec h2 {
    font-size: 24px;
  }
  .features-grid {
    padding: 0 16px 40px;
    gap: 16px;
  }
  .feature-card {
    min-height: 630px;
    padding: 24px;
  }
  .fc-tag {
    font-size: 11px;
    padding: 4px 12px;
  }
  .fc-title {
    font-size: 22px;
  }
  .fc-desc {
    font-size: 13px;
  }
  .web3-sec {
    padding: 48px 16px 40px;
  }
  .web3-sec p {
    font-size: 14px;
  }
  .web3-showcase {
    min-height: 300px;
    margin-top: 30px;
  }
  .phone-mockup {
    width: 200px;
    border-radius: 30px;
    padding: 8px;
  }
  .security-sec {
    padding: 48px 16px;
  }
  .sec-card {
    padding: 24px;
  }
  .sec-card.sec-card-main {
    padding: 28px;
    gap: 24px;
  }
  .sec-main-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .testimonials-sec {
    padding: 48px 16px;
  }
  .testimonials-sec .sub {
    font-size: 14px;
  }
  .testimonial-card {
    flex: 0 0 85%;
    padding: 24px;
  }
  .faq-sec {
    padding: 48px 16px;
  }
  .faq-item {
    padding: 18px 20px;
  }
  .faq-q {
    font-size: 16px;
  }
  .faq-a {
    font-size: 13px;
  }
  .cta-sec {
    margin: 24px 12px 24px;
    padding: 48px 16px;
    border-radius: 20px;
  }
  .cta-sec p {
    font-size: 14px;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .footer {
    padding: 32px 16px 16px;
  }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .footer-col a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}


/* ========== 鏂伴椈璇︽儏椤垫牱寮?========== */

/* 闈㈠寘灞?*/
.detail-breadcrumb {
  margin-top: 72px;
  padding: 16px 40px;
  background: #f5f6fa;
  font-size: 14px;
  color: #999;
}
.detail-breadcrumb a {
  color: #999;
  transition: color 0.3s;
}
.detail-breadcrumb a:hover {
  color: var(--primary);
}
.detail-breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}
.detail-breadcrumb .current {
  color: var(--primary);
}

/* 涓讳綋甯冨眬 */
.detail-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 鏂囩珷鍖?*/
.detail-article {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.detail-title {
  text-align: center;
  margin-bottom: 20px;
}
.detail-meta {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-top: 16px;
}
.detail-meta .source {
  color: var(--primary);
  font-weight: 600;
}
.detail-body {
  font-size: 16px;
  color: #444;
  line-height: 2;
}
.detail-body p {
  margin-bottom: 20px;
  text-indent: 2em;
}
.detail-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px auto;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.detail-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 16px;
  text-indent: 0;
}
.detail-body strong {
  color: var(--primary);
}

/* 鏍囩 */
.detail-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.detail-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #eef2ff;
  color: var(--primary);
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
}

/* 涓婁笅绡?*/
.detail-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 14px;
}
.detail-nav a {
  color: #666;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.detail-nav a:hover {
  color: var(--primary);
}
.detail-nav .label {
  color: #999;
  margin-right: 8px;
}

/* 渚ц竟鏍?*/
.detail-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.sidebar-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.sidebar-item:last-child {
  border-bottom: none;
}
.sidebar-item:hover {
  background: rgba(74, 78, 250, 0.02);
}
.sidebar-item-img {
  width: 100px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f0f2f5;
}
.sidebar-item-info {
  flex: 1;
  min-width: 0;
}
.sidebar-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.sidebar-item:hover .sidebar-item-title {
  color: var(--primary);
}
.sidebar-item-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-text-list {
  margin-top: 8px;
}
.sidebar-text-item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.sidebar-text-item:last-child {
  border-bottom: none;
}
.sidebar-text-item:hover {
  color: var(--primary);
}
.sidebar-text-item::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
  font-size: 10px;
}

/* ===== 骞虫澘绔栧睆 鈮?68px ===== */
@media (max-width: 768px) {
  .detail-breadcrumb {
    margin-top: 60px;
    padding: 12px 20px;
    font-size: 13px;
  }
  .detail-main {
    flex-direction: column;
    padding: 24px 16px 60px;
    gap: 24px;
  }
  .detail-sidebar {
    width: 100%;
    position: static;
  }
  .detail-article {
    padding: 32px 24px;
  }
  /* detail-title 响应式字号由公共类控制 */
  .detail-body {
    font-size: 16px;
  }
  .detail-nav {
    flex-direction: column;
    gap: 12px;
  }
  .detail-nav a {
    max-width: 100%;
  }
}

/* ===== 鎵嬫満绔?鈮?80px ===== */
@media (max-width: 480px) {
  .detail-breadcrumb {
    margin-top: 54px;
    padding: 10px 16px;
    font-size: 12px;
  }
  .detail-main {
    padding: 16px 12px 48px;
    gap: 20px;
  }
  .detail-article {
    padding: 24px 16px;
    border-radius: 8px;
  }
  .detail-title {
    margin-bottom: 14px;
  }
  .detail-meta {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  .detail-body {
    font-size: 14px;
    line-height: 1.8;
  }
  .detail-body h3 {
    font-size: 17px;
    margin: 24px 0 12px;
  }
  .detail-body p {
    margin-bottom: 14px;
  }
  .detail-tags {
    margin-top: 24px;
    padding-top: 16px;
    gap: 8px;
  }
  .detail-tag {
    font-size: 12px;
    padding: 4px 12px;
  }
  .detail-nav {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 13px;
  }
  .sidebar-card {
    padding: 20px 16px;
  }
  .sidebar-title {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .sidebar-item {
    gap: 10px;
    padding: 10px 0;
  }
  .sidebar-item-img {
    width: 80px;
    height: 56px;
  }
  .sidebar-item-title {
    font-size: 13px;
  }
  .sidebar-item-desc {
    font-size: 11px;
  }
  .sidebar-text-item {
    font-size: 13px;
    padding: 8px 0;
  }
}

