/* ===================帝王云 ==================== */
/* ============= www.diwangyun.com ================ */
/* ============= www.diwangyun.cn ================= */
/* ============== 代码有价，版权无价 ================= */
/* =======帝王云模板为帝王云自行开发，已办理源码著作权 ========== */
/* =======未经允许 仿站或扒站 发现必究，请尊重开发者心血 ========== */
/* ==========="愿你走完山水万城 仍与理想重逢" ============ */
/* ============模板作者：江遇:QQ 1481234828=========== */


/* 首页样式 - 帝王尊贵版 */

/* ==================== 3D地球全息投影地图模块 ==================== */

.global-data {
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0d0d1a 50%, #000 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* 六边形网格背景 */
.global-data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(120deg, rgba(201, 162, 39, 0.08) 0px, transparent 1px),
    linear-gradient(240deg, rgba(201, 162, 39, 0.08) 0px, transparent 1px);
  background-size: 40px 70px;
  animation: hexGridFloat 30s linear infinite;
  pointer-events: none;
}

@keyframes hexGridFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, -70px);
  }
}

.global-data::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* 全息容器 */
.hologram-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 80px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D地球核心 */
.hologram-globe {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  animation: globeRotate 60s linear infinite;
}

@keyframes globeRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 地球网格 */
.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.3);
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0px,
      transparent 20px,
      rgba(201, 162, 39, 0.05) 20px,
      rgba(201, 162, 39, 0.05) 21px
    ),
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 18deg,
      rgba(201, 162, 39, 0.08) 18deg,
      rgba(201, 162, 39, 0.08) 19deg
    );
  box-shadow:
    0 0 60px rgba(201, 162, 39, 0.3),
    0 0 100px rgba(124, 58, 237, 0.2),
    inset 0 0 60px rgba(124, 58, 237, 0.15);
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 1;
    box-shadow:
      0 0 60px rgba(201, 162, 39, 0.3),
      0 0 100px rgba(124, 58, 237, 0.2),
      inset 0 0 60px rgba(124, 58, 237, 0.15);
  }
  50% {
    opacity: 0.8;
    box-shadow:
      0 0 80px rgba(201, 162, 39, 0.5),
      0 0 120px rgba(124, 58, 237, 0.3),
      inset 0 0 80px rgba(124, 58, 237, 0.2);
  }
}

/* 地球表面 */
.globe-surface {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

/* 地球光晕 */
.globe-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* 中心核心节点 */
.center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  cursor: pointer;
  transition: all 0.4s ease;
}

.center-core:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.core-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
  border: 4px solid var(--gold);
  box-shadow:
    0 0 60px rgba(201, 162, 39, 0.8),
    0 0 120px rgba(201, 162, 39, 0.5),
    inset 0 0 40px rgba(201, 162, 39, 0.3);
  animation: coreOuterGlow 2s ease-in-out infinite;
}

@keyframes coreOuterGlow {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(201, 162, 39, 0.8),
      0 0 120px rgba(201, 162, 39, 0.5),
      inset 0 0 40px rgba(201, 162, 39, 0.3);
  }
  50% {
    box-shadow:
      0 0 80px rgba(201, 162, 39, 1),
      0 0 160px rgba(201, 162, 39, 0.6),
      inset 0 0 60px rgba(201, 162, 39, 0.4);
  }
}

.core-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(201, 162, 39, 0.4) 100%);
  border: 3px solid #ffd700;
  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.8),
    0 0 80px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.6);
  animation: coreInnerPulse 1.5s ease-in-out infinite;
}

@keyframes coreInnerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.core-crown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  z-index: 22;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.core-label {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 800;
  color: #ffd700;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(201, 162, 39, 0.8);
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(25, 25, 45, 0.98) 100%);
  border-radius: 8px;
  border: 3px solid var(--gold);
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
}

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, transparent 70%);
  animation: corePulseWave 2s ease-out infinite;
}

@keyframes corePulseWave {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* 粒子节点系统 */
.particle-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.node-particle {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 15;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.node-particle:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.particle-core {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 162, 39, 0.9) 0%, rgba(124, 58, 237, 0.6) 100%);
  border: 2px solid #ffd700;
  box-shadow:
    0 0 20px rgba(201, 162, 39, 0.8),
    0 0 40px rgba(201, 162, 39, 0.4);
  animation: particleGlow 2s ease-in-out infinite;
}

@keyframes particleGlow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(201, 162, 39, 0.8),
      0 0 40px rgba(201, 162, 39, 0.4);
  }
  50% {
    box-shadow:
      0 0 30px rgba(201, 162, 39, 1),
      0 0 60px rgba(201, 162, 39, 0.5);
  }
}

.particle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  animation: particleRingRotate 3s linear infinite;
}

@keyframes particleRingRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.6;
  }
}

.particle-label {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(201, 162, 39, 0.6);
  padding: 6px 14px;
  background: rgba(15, 15, 25, 0.95);
  border-radius: 6px;
  border: 2px solid rgba(201, 162, 39, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.node-particle:hover .particle-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* 不同区域的粒子颜色 */
.asia-node .particle-core {
  background:
    radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, rgba(201, 162, 39, 0.6) 100%);
}

.europe-node .particle-core {
  background:
    radial-gradient(circle, rgba(255, 105, 180, 0.9) 0%, rgba(199, 21, 133, 0.6) 100%);
}

.america-node .particle-core {
  background:
    radial-gradient(circle, rgba(0, 206, 209, 0.9) 0%, rgba(0, 128, 128, 0.6) 100%);
}

.africa-node .particle-core {
  background:
    radial-gradient(circle, rgba(255, 165, 0, 0.9) 0%, rgba(255, 140, 0, 0.6) 100%);
}

.oceania-node .particle-core {
  background:
    radial-gradient(circle, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.6) 100%);
}

/* 数据流光束 */
.data-streams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stream-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 162, 39, 0.3) 20%,
    var(--gold) 50%,
    rgba(201, 162, 39, 0.3) 80%,
    transparent 100%);
  opacity: 0;
  animation: streamFlow 3s ease-out infinite;
  filter: blur(1px);
}

.stream-line.line-asia-1 {
  width: 350px;
  transform: rotate(-30deg);
  animation-delay: 0s;
}

.stream-line.line-asia-2 {
  width: 400px;
  transform: rotate(25deg);
  animation-delay: 0.6s;
}

.stream-line.line-europe-1 {
  width: 450px;
  transform: rotate(-75deg);
  animation-delay: 0.3s;
}

.stream-line.line-europe-2 {
  width: 480px;
  transform: rotate(-60deg);
  animation-delay: 0.9s;
}

.stream-line.line-america-1 {
  width: 420px;
  transform: rotate(120deg);
  animation-delay: 0.15s;
}

.stream-line.line-america-2 {
  width: 380px;
  transform: rotate(140deg);
  animation-delay: 0.75s;
}

.stream-line.line-america-3 {
  width: 400px;
  transform: rotate(130deg);
  animation-delay: 1.2s;
}

.stream-line.line-africa-1 {
  width: 350px;
  transform: rotate(20deg);
  animation-delay: 0.45s;
}

.stream-line.line-africa-2 {
  width: 380px;
  transform: rotate(35deg);
  animation-delay: 1.05s;
}

.stream-line.line-oceania-1 {
  width: 320px;
  transform: rotate(50deg);
  animation-delay: 0.6s;
}

.stream-line.line-oceania-2 {
  width: 360px;
  transform: rotate(40deg);
  animation-delay: 1.35s;
}

.stream-line.line-asia-3 {
  width: 380px;
  transform: rotate(-10deg);
  animation-delay: 0.9s;
}

.stream-line.line-asia-4 {
  width: 420px;
  transform: rotate(-45deg);
  animation-delay: 1.5s;
}

.stream-line.line-europe-3 {
  width: 460px;
  transform: rotate(-50deg);
  animation-delay: 1.2s;
}

@keyframes streamFlow {
  0% {
    opacity: 0;
    transform: rotate(var(--rotation, 0deg)) scaleX(0);
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--rotation, 0deg)) scaleX(1);
  }
}

/* 浮动数据包 */
.data-packets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-packet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 20px var(--gold),
    0 0 40px var(--gold);
  opacity: 0;
  animation: packetMove 3s ease-out infinite;
  animation-delay: var(--delay);
}

.data-packet.packet-asia {
  background: #ffd700;
  box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
  animation-name: packetAsia;
}

.data-packet.packet-europe {
  background: #ff69b4;
  box-shadow: 0 0 20px #ff69b4, 0 0 40px #ff69b4;
  animation-name: packetEurope;
}

.data-packet.packet-america {
  background: #00ced1;
  box-shadow: 0 0 20px #00ced1, 0 0 40px #00ced1;
  animation-name: packetAmerica;
}

.data-packet.packet-africa {
  background: #ffa500;
  box-shadow: 0 0 20px #ffa500, 0 0 40px #ffa500;
  animation-name: packetAfrica;
}

.data-packet.packet-oceania {
  background: #8a2be2;
  box-shadow: 0 0 20px #8a2be2, 0 0 40px #8a2be2;
  animation-name: packetOceania;
}

@keyframes packetAsia {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(250px, -150px);
  }
}

@keyframes packetEurope {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(-300px, -100px);
  }
}

@keyframes packetAmerica {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(-350px, 120px);
  }
}

@keyframes packetAfrica {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(-50px, 180px);
  }
}

@keyframes packetOceania {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(280px, 220px);
  }
}

/* 全息数据统计卡片 */
.hologram-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.h-stat-card {
  position: relative;
  padding: 30px 25px;
  background:
    linear-gradient(135deg, rgba(20, 20, 35, 0.9) 0%, rgba(30, 30, 50, 0.9) 100%);
  border-radius: 16px;
  border: 2px solid rgba(201, 162, 39, 0.3);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.h-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.h-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow:
    0 10px 40px rgba(201, 162, 39, 0.2),
    0 0 60px rgba(124, 58, 237, 0.1);
}

.h-stat-card:hover::before {
  opacity: 1;
}

.h-stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.h-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
  letter-spacing: -1px;
}

.h-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-weight: 600;
}

.h-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--purple) 100%);
  transform-origin: left;
  animation: statBarGrow 2s ease-out infinite;
}

@keyframes statBarGrow {
  0%, 100% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
}

/* ==================== 移动端地图样式 ==================== */

/* SVG世界地图 */
.world-map-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.3));
}

.world-map-svg .continent {
  transition: all 0.4s ease;
  fill: rgba(124, 58, 237, 0.15);
  stroke: rgba(201, 162, 39, 0.4);
  stroke-width: 1.5;
}

.world-map-svg .continent:hover {
  fill: rgba(201, 162, 39, 0.25) !important;
  stroke: rgba(201, 162, 39, 0.8) !important;
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.5));
}

.world-map-svg .grid-lines {
  opacity: 0.2;
  stroke: rgba(201, 162, 39, 0.3);
}

/* 地图点 - 全息科技风格 */
.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.4s ease;
  cursor: pointer;
}

.map-point:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.point-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
  border: 3px solid var(--gold);
  box-shadow:
    0 0 30px rgba(201, 162, 39, 0.5),
    0 0 60px rgba(201, 162, 39, 0.3),
    inset 0 0 20px rgba(201, 162, 39, 0.2);
  position: relative;
  z-index: 2;
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(201, 162, 39, 0.5),
      0 0 60px rgba(201, 162, 39, 0.3),
      inset 0 0 20px rgba(201, 162, 39, 0.2);
  }
  50% {
    box-shadow:
      0 0 40px rgba(201, 162, 39, 0.7),
      0 0 80px rgba(201, 162, 39, 0.4),
      inset 0 0 30px rgba(201, 162, 39, 0.3);
  }
}

/* 节点外环 */
.point-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.6;
  }
}

/* 节点波纹 */
.point-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.6);
  animation: ripple 2s ease-out infinite;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.point-label {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  color: #ffd700;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(201, 162, 39, 0.8);
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(25, 25, 45, 0.95) 100%);
  border-radius: 8px;
  border: 2px solid rgba(201, 162, 39, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.map-point:hover .point-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* 江西起点 - 全息核心 */
.origin-point {
  top: 42%;
  left: 72%;
  z-index: 15;
}

.crown-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, rgba(124, 58, 237, 0.3) 100%);
  border: 4px solid var(--gold);
  animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(201, 162, 39, 0.8),
      0 0 80px rgba(201, 162, 39, 0.4),
      0 0 120px rgba(124, 58, 237, 0.2),
      inset 0 0 30px rgba(201, 162, 39, 0.3);
  }
  50% {
    box-shadow:
      0 0 60px rgba(201, 162, 39, 1),
      0 0 120px rgba(201, 162, 39, 0.6),
      0 0 180px rgba(124, 58, 237, 0.3),
      inset 0 0 50px rgba(201, 162, 39, 0.4);
  }
}

/* 核心多层光环 */
.crown-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 3px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
  animation: coreRing1 4s linear infinite;
}

@keyframes coreRing1 {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.8;
  }
}

.crown-icon::after {
  content: '';
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(124, 58, 237, 0.5);
  border-radius: 50%;
  animation: coreRing2 3s linear infinite reverse;
}

@keyframes coreRing2 {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotate(-360deg) scale(1);
    opacity: 0.6;
  }
}

.point-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, transparent 70%);
  animation: pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* 双重波纹 */
.point-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(124, 58, 237, 0.6);
  animation: pulse 2s ease-out infinite;
  animation-delay: 0.5s;
}

.origin-point .point-label {
  opacity: 1;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(25, 25, 45, 0.98) 100%);
  border: 3px solid var(--gold);
  padding: 10px 20px;
  text-shadow: 0 2px 15px rgba(201, 162, 39, 0.8);
  backdrop-filter: blur(10px);
  transform: translateX(-50%) translateY(0);
}

/* 光束动画 - 数据流效果 */
.beam {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 162, 39, 0.2) 30%,
    var(--gold) 50%,
    rgba(201, 162, 39, 0.2) 70%,
    transparent 100%);
  pointer-events: none;
  opacity: 0;
  animation: beamShoot 3s ease-out infinite;
  filter: blur(1px);
}

.beam-1 {
  top: 42%;
  left: 72%;
  width: 220px;
  transform: rotate(-25deg);
  animation-delay: 0s;
}

.beam-2 {
  top: 42%;
  left: 72%;
  width: 280px;
  transform: rotate(-15deg);
  animation-delay: 0.6s;
}

.beam-3 {
  top: 42%;
  left: 72%;
  width: 200px;
  transform: rotate(15deg);
  animation-delay: 1.2s;
}

.beam-4 {
  top: 42%;
  left: 72%;
  width: 240px;
  transform: rotate(30deg);
  animation-delay: 1.8s;
}

@keyframes beamShoot {
  0% {
    opacity: 0;
    transform: rotate(var(--rotation, 0deg)) scaleX(0.2);
    filter: blur(2px);
  }
  20% {
    opacity: 0.9;
    filter: blur(0.5px);
  }
  80% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--rotation, 0deg)) scaleX(1);
    filter: blur(3px);
  }
}

/* 数据粒子 */
.data-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particleMove 4s linear infinite;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.8), 0 0 20px rgba(201, 162, 39, 0.4);
}

@keyframes particleMove {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(var(--dest-x, 200px), var(--dest-y, -100px)) scale(0);
  }
}

/* 数据包传输 - 全息数据流 */
.arrow-projectile {
  position: absolute;
  top: 40%;
  left: 77%;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 15;
  transform: translate(-50%, -50%);
  animation: dataTransmit 3s ease-out infinite;
  animation-delay: var(--delay);
}

/* 数据包主体 */
.arrow-projectile::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, currentColor 0%, transparent 50%);
  border-radius: 4px;
  box-shadow:
    0 0 40px currentColor,
    0 0 80px currentColor;
  animation: dataPulse 0.5s ease-in-out infinite;
}

@keyframes dataPulse {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
}

/* 数据流拖尾 */
.arrow-projectile::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: linear-gradient(-45deg, currentColor 0%, transparent 100%);
  animation: dataTrail 3s ease-out infinite;
  animation-delay: var(--delay);
  filter: blur(3px);
}

@keyframes dataTransmit {
  0% {
    opacity: 0;
    top: 40%;
    left: 77%;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: var(--target-y);
    left: var(--target-x);
  }
}

@keyframes dataTrail {
  0% {
    width: 180px;
    height: 180px;
    opacity: 0.7;
  }
  70% {
    width: 100px;
    height: 100px;
    opacity: 0.4;
  }
  100% {
    width: 36px;
    height: 36px;
    opacity: 0;
  }
}

/* 不同区域的数据包颜色 */
.arrow-projectile.arrow-asia {
  color: #ffd700;
  box-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 80px rgba(255, 215, 0, 0.6);
}

.arrow-projectile.arrow-europe {
  color: #ff69b4;
  box-shadow: 0 0 40px rgba(255, 105, 180, 1), 0 0 80px rgba(255, 105, 180, 0.6);
}

.arrow-projectile.arrow-america {
  color: #00ced1;
  box-shadow: 0 0 40px rgba(0, 206, 209, 1), 0 0 80px rgba(0, 206, 209, 0.6);
}

.arrow-projectile.arrow-africa {
  color: #ff6347;
  box-shadow: 0 0 40px rgba(255, 99, 71, 1), 0 0 80px rgba(255, 99, 71, 0.6);
}

.arrow-projectile.arrow-oceania {
  color: #9370db;
  box-shadow: 0 0 40px rgba(147, 112, 219, 1), 0 0 80px rgba(147, 112, 219, 0.6);
}

/* 数据统计卡片 - 全息科技风格 */
.imperial-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 35, 0.95) 100%);
  padding: 55px 70px;
  border-radius: 20px;
  border: 3px solid rgba(201, 162, 39, 0.5);
  box-shadow:
    0 0 80px rgba(201, 162, 39, 0.3),
    0 0 120px rgba(124, 58, 237, 0.2),
    inset 0 0 60px rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(20px);
  animation: quoteFloat 6s ease-in-out infinite;
}

@keyframes quoteFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.quote-mark {
  font-size: 90px;
  line-height: 0;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  animation: quoteMarkPulse 3s ease-in-out infinite;
}

@keyframes quoteMarkPulse {
  0%, 100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.4;
  }
}

.quote-mark:first-child {
  margin-bottom: 20px;
}

.quote-mark:last-child {
  margin-top: 20px;
  position: relative;
  top: 35px;
}

.quote-text {
  font-size: 28px;
  font-weight: 700;
  color: #e5e5e5;
  margin: 18px 0;
  letter-spacing: 2px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(201, 162, 39, 0.3);
  line-height: 1.4;
}

.quote-author {
  font-size: 17px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

/* 全球数据统计 - 全息数据卡片 */
.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 50px;
}

.global-stats .stat-item {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 2px solid rgba(201, 162, 39, 0.25);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.global-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.global-stats .stat-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.global-stats .stat-item:hover {
  transform: translateY(-12px);
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow:
    0 20px 50px rgba(201, 162, 39, 0.3),
    0 0 80px rgba(201, 162, 39, 0.15);
}

.global-stats .stat-item:hover::after {
  opacity: 1;
}

.global-stats .stat-number {
  font-size: 52px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
  position: relative;
  z-index: 1;
}

.global-stats .stat-label {
  font-size: 18px;
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.global-stats .stat-desc {
  font-size: 14px;
  color: #9ca3af;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-text {
    font-size: 20px;
  }

  .world-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .global-stats {
    grid-template-columns: 1fr;
  }

  .imperial-quote {
    padding: 30px;
  }

  .quote-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .world-map {
    height: 350px;
  }

  .map-point {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .point-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* FAQ模块 - 帝王尊贵版 */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.1);
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
}

.faq-item.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  color: #e5e5e5;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b4e 70%, #0a0a0a 100%);
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M48 40v-6h-2v6h-6v2h6v6h2v-6h6v-2h-6zm0-40V0h-2v6h-6v2h6v6h2V6h6V4h-6zM8 40v-6H6v6H0v2h6v6h2v-6h6v-2H8zM8 6V0H6v6H0v2h6v6h2V6h6V4H8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: 68px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(201, 162, 39, 0.3));
}

.hero-text p {
  font-size: 24px;
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 400;
  color: #e5e5e5;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 90px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

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

.stat-value {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* 关于我们 - 帝王尊贵版 */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-title-left h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 30px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-desc {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
  color: var(--text-gray);
}

.feature-list {
  list-style: none;
  margin-top: 35px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.check-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  border: 2px solid rgba(201, 162, 39, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 产品卡片 - 帝王尊贵版 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-icon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(201, 162, 39, 0.3));
}

.product-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card > p {
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.8;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 14px;
}

.product-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

/* 解决方案卡片 */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 解决方案板块背景 - 帝王尊贵版 */
.solution-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b4e 100%);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.solution-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow:
    0 20px 40px rgba(201, 162, 39, 0.15),
    0 0 40px rgba(201, 162, 39, 0.1);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-icon {
  font-size: 56px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(201, 162, 39, 0.2));
}

.solution-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.solution-card:hover h3 {
  color: var(--gold);
}

.solution-card p {
  color: var(--text-gray);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* 解决方案标题样式 */
.solution-section .section-title h2 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-section .section-title p {
  color: #9ca3af;
}

/* 技术实力 - 帝王尊贵版 */
.tech-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b4e 70%, #0a0a0a 100%);
  color: #e5e5e5;
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.tech-section .section-title h2 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-section .section-title p {
  color: #9ca3af;
}

.tech-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tech-card {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(201, 162, 39, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tech-card:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(201, 162, 39, 0.2),
    0 0 40px rgba(201, 162, 39, 0.1);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-icon {
  font-size: 64px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(201, 162, 39, 0.3));
}

.tech-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.tech-card p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* 全球节点 */
.nodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.node-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.node-card ul {
  list-style: none;
}

.node-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-gray);
}

.node-status {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 安全合规 */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.security-card {
  text-align: center;
  padding: 40px 32px;
}

.security-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.security-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.security-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* 合作伙伴 */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.partner-card {
/* 技术优势 */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tech-item {
  text-align: center;
  padding: 40px 24px;
}

.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

.tech-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.tech-item > p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 14px;
}

/* 客户评价 */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.testimonial-info > p {
  font-size: 14px;
  color: var(--text-light);
}

/* 数据中心节点 */
.nodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.node-item {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.node-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.node-flag {
  font-size: 32px;
  margin-bottom: 16px;
}

.node-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.node-status {
  font-size: 14px;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.node-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* 合作伙伴 */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}

.partner-card {
  background: white;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--primary-color);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section - 帝王尊贵版 */
.cta-section {
  background:
    linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 30%, #7c3aed 60%, #1a0a2e 100%);
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 金色粒子背景 */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* 金色光效 */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 25%, #b8860b 50%, #d4af37 75%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.5));
  animation: ctaTitleShine 3s ease-in-out infinite;
}

@keyframes ctaTitleShine {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.8));
  }
}

.cta-content p {
  font-size: 22px;
  margin-bottom: 50px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* 响应式 */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 19px;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
  }

  .stat-value {
    font-size: 40px;
  }

  .global-data {
    padding: 80px 0;
  }

  .world-map {
    height: 380px;
  }

  .map-container {
    margin-bottom: 50px;
  }

  .map-point {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .point-icon {
    font-size: 24px;
    width: 42px;
    height: 42px;
  }

  .point-label {
    font-size: 13px;
    top: 48px;
  }

  .products-grid,
  .solutions-grid,
  .tech-grid,
  .nodes-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 30px;
  }

  .stat-number {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section {
    padding: 80px 0;
  }

  .product-icon,
  .solution-icon {
    font-size: 50px;
  }

  .product-card h3,
  .solution-card h3 {
    font-size: 22px;
  }

  .tech-icon {
    font-size: 44px;
  }

  .faq-list {
    max-width: 900px;
  }

  .faq-question {
    padding: 22px 24px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 24px 22px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .hero-text p {
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 60px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
  }

  .stat-value {
    font-size: 44px;
  }

  .stat-label {
    font-size: 14px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 28px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-text {
    font-size: 14px;
  }

  .global-data {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-title h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-title p {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.6;
  }

  .world-map {
    height: 380px;
  }

  .map-container {
    margin-bottom: 40px;
  }

  .map-point {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .point-icon {
    font-size: 24px;
    width: 42px;
    height: 42px;
  }

  .point-label {
    font-size: 13px;
    top: 46px;
    padding: 4px 10px;
  }

  .origin-point .point-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
  }

  /* 隐藏一些地图点，避免过于拥挤 */
  .arrow-projectile:nth-child(n+8) {
    display: none;
  }

  .products-grid,
  .solutions-grid,
  .tech-grid,
  .nodes-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .solution-card,
  .tech-card,
  .node-card,
  .security-card {
    padding: 36px 28px;
  }

  .product-icon,
  .solution-icon,
  .tech-icon {
    font-size: 52px;
    margin-bottom: 20px;
  }

  .product-card h3,
  .solution-card h3,
  .tech-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .product-card > p,
  .solution-card > p,
  .tech-card > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .product-price {
    font-size: 24px;
  }

  .imperial-quote {
    padding: 32px 24px;
  }

  .quote-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 16px 28px;
    font-size: 16px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 50px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-text {
    font-size: 14px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .section-title h2::after {
    width: 50px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .global-data {
    padding: 60px 0;
  }

  .world-map {
    height: 320px;
    border-radius: 12px;
  }

  .map-container {
    margin-bottom: 32px;
  }

  .map-point {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .point-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
  }

  .point-label {
    font-size: 12px;
    top: 42px;
    padding: 4px 8px;
  }

  .origin-point .point-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
  }

  /* 在小屏幕上只显示主要节点 */
  .map-point:nth-child(n+9) {
    display: none;
  }

  .arrow-projectile {
    display: none;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .solution-card {
    padding: 32px 24px;
  }

  .product-icon,
  .solution-icon {
    font-size: 48px;
    margin-bottom: 18px;
  }

  .product-card h3,
  .solution-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .product-card > p,
  .solution-card > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .imperial-quote {
    padding: 28px 20px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 17px;
    margin-bottom: 35px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 70px 0 45px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 35px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding-top: 26px;
  }

  .stat-value {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-title h2::after {
    width: 45px;
  }

  .section-title p {
    font-size: 14px;
  }

  .product-card,
  .solution-card {
    padding: 28px 20px;
  }

  .product-icon,
  .solution-icon {
    font-size: 44px;
    margin-bottom: 16px;
  }

  .product-card h3,
  .solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .product-card > p,
  .solution-card > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-text {
    font-size: 13px;
  }
}
  }

  .stat-label {
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .world-map {
    height: 250px;
  }

  .point-icon {
    font-size: 16px;
    width: 28px;
    height: 28px;
  }

  .origin-point .point-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }
}

/* SLA页面样式 */
.sla-page {
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #0d0d0d 100%);
}

.sla-overview {
  padding: 80px 0;
}

.sla-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.sla-stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sla-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.sla-stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.sla-stat-value {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.sla-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 12px;
}

.sla-stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* SLA表格样式 */
.sla-levels-table,
.compensation-table {
  margin-top: 40px;
  overflow-x: auto;
}

.sla-levels-table table,
.compensation-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(212, 175, 55, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.sla-levels-table th,
.compensation-table th {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  color: #d4af37;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.sla-levels-table td,
.compensation-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.sla-levels-table tr:hover,
.compensation-table tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* 赔偿说明 */
.compensation-notice {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 30px;
}

.compensation-notice h3 {
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 20px;
}

.compensation-notice ul {
  list-style: none;
  padding: 0;
}

.compensation-notice li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.compensation-notice li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  top: 0;
}

/* 服务保障条款 */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.term-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.term-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.term-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.term-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 12px;
}

.term-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* 不可抗力说明 */
.force-majeure-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.force-majeure-item {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fm-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.force-majeure-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 8px;
}

.force-majeure-item p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 14px;
}

/* 服务等级变更 */
.changes-content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

.changes-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* SLA联系方式 */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-item {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.contact-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 18px;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 更新时间 */
.sla-update-time {
  background: rgba(212, 175, 55, 0.05);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px 0;
  margin-top: 80px;
  text-align: center;
}

.sla-update-time p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .sla-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sla-stat-value {
    font-size: 36px;
  }

  .terms-grid,
  .force-majeure-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sla-levels-table table,
  .compensation-table table {
    font-size: 14px;
  }

  .sla-levels-table th,
  .compensation-table th,
  .sla-levels-table td,
  .compensation-table td {
    padding: 12px 16px;
  }
}

/* 数据中心页面样式 */
.datacenter-page {
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #0d0d0d 100%);
}

/* 全球地图区域 */
.datacenter-map {
  padding: 80px 0;
}

.map-container {
  margin-top: 50px;
}

.world-map {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.world-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

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

.map-globe {
  font-size: 120px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.map-placeholder h3 {
  font-size: 28px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.map-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

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

.map-stat-value {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.map-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* 区域选择器 */
.region-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.region-btn {
  padding: 14px 32px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.region-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.region-btn.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #0a0a0a;
  font-weight: 600;
}

/* 数据中心统计 */
.datacenter-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
}

/* 数据中心卡片网格 */
.dc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.dc-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.dc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.dc-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.dc-flag {
  font-size: 48px;
}

.dc-title {
  flex: 1;
}

.dc-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 6px;
}

.dc-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.dc-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dc-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.info-value {
  font-size: 15px;
  font-weight: 600;
  color: #e5e5e5;
}

.status-online {
  color: #10b981;
}

.dc-btn {
  width: 100%;
  padding: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dc-btn:hover {
  background: var(--gradient-gold);
  color: #0a0a0a;
  border-color: transparent;
}

/* 机房特性 */
.dc-features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 14px;
}

/* CTA区域 */
.dc-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .map-stats {
    flex-direction: column;
    gap: 30px;
  }

  .dc-grid {
    grid-template-columns: 1fr;
  }

  .region-selector {
    gap: 12px;
  }

  .region-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ==================== 数据中心详情模态框 ==================== */
.dc-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.dc-modal.active {
  display: block;
}

.modal-content {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #d4af37;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background: var(--gradient-gold);
  color: #0a0a0a;
}

.modal-header {
  padding: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-flag {
  font-size: 48px;
}

.modal-title-row h2 {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  flex: 1;
}

.modal-tag {
  display: inline-block;
  background: var(--gradient-gold);
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.modal-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

.modal-body {
  padding: 40px;
}

.modal-section {
  margin-bottom: 40px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item .info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.info-item .info-value {
  font-size: 14px;
  font-weight: 600;
  color: #e5e5e5;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: 700;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.network-tag,
.product-tag,
.cert-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.network-tag {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.product-tag {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #c084fc;
}

.cert-tag {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.network-tag:hover,
.product-tag:hover,
.cert-tag:hover {
  transform: translateY(-2px);
}

.modal-footer {
  padding: 30px 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .dc-modal {
    padding: 20px 10px;
  }

  .modal-content {
    border-radius: 16px;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 24px;
  }

  .modal-title-row h2 {
    font-size: 20px;
  }

  .modal-flag {
    font-size: 32px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}
