* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-color: #0a0a0f;
  background-image: radial-gradient(ellipse at 10% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 40%), radial-gradient(ellipse at 90% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, rgba(185, 103, 255, 0.1) 0%, transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(5, 255, 161, 0.08) 0%, transparent 35%), radial-gradient(ellipse at 70% 30%, rgba(255, 113, 206, 0.08) 0%, transparent 35%), /* 深邃背景渐变 */ linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 50%, #0a0a0f 100%);
  background-attachment: fixed;
  color: #e2e8f0;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #12121a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
a {
  color: #80ffff;
  text-decoration: none;
  transition: all 0.15s ease;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}
::selection {
  background-color: rgba(0, 255, 255, 0.3);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}
:global .ant-message-notice-content {
  background: rgba(20, 20, 35, 0.6) !important;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}
:global .ant-message-success {
  color: #10b981 !important;
  font-weight: 600;
}
:global .ant-message-error {
  color: #ef4444 !important;
  font-weight: 600;
}
:global .ant-message-warning {
  color: #f59e0b !important;
  font-weight: 600;
}
:global .ant-message-info {
  color: #00ffff !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
:global .ant-alert {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
}
:global .ant-alert-success {
  background: rgba(5, 255, 161, 0.1);
  border-color: #05ffa1;
  box-shadow: 0 0 20px rgba(5, 255, 161, 0.2);
}
:global .ant-alert-success .ant-alert-message {
  color: #05ffa1 !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(5, 255, 161, 0.5);
}
:global .ant-alert-error {
  background: rgba(244, 63, 94, 0.1);
  border-color: #f43f5e;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.2);
}
:global .ant-alert-error .ant-alert-message {
  color: #f43f5e !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.5);
}
:global .ant-alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
:global .ant-alert-warning .ant-alert-message {
  color: #f59e0b !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
:global .ant-alert-info {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
:global .ant-alert-info .ant-alert-message {
  color: #00ffff !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 8px;
  }
}
.gradient-text {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #b967ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}
.glow-effect {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.glow-effect-magenta {
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.glow-effect-purple {
  box-shadow: 0 0 20px rgba(185, 103, 255, 0.5);
}
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}
.glass-effect {
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.neon-border {
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.2), inset 0 0 5px rgba(0, 255, 255, 0.1);
}
.neon-border:hover {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
}
.scanlines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.03) 2px, rgba(0, 255, 255, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5);
  }
}
@keyframes textFlicker {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  50% {
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.5);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
}
@keyframes borderGradient {
  0% {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  33% {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
  }
  66% {
    border-color: rgba(185, 103, 255, 0.5);
    box-shadow: 0 0 10px rgba(185, 103, 255, 0.3);
  }
  100% {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
.animate-neon-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}
.animate-text-flicker {
  animation: textFlicker 3s ease-in-out infinite;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-rotate-glow {
  animation: rotateGlow 4s linear infinite;
}
.animate-border-gradient {
  animation: borderGradient 4s linear infinite;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.content-layer {
  position: relative;
  z-index: 1;
}
.deep-space-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 10% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 90% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, rgba(185, 103, 255, 0.08) 0%, transparent 60%), linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 50%, #0a0a0f 100%);
  z-index: -1;
}

