/* 科技风 + 鼠标跟随 */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;500;700&display=swap');

/* 全局字体 */
body {
  font-family: 'Rajdhani', -apple-system, "PingFang SC", "Noto Sans SC", sans-serif !important;
}

/* 鼠标跟随光标光晕 */
#cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.08) 0%, rgba(100, 180, 255, 0.02) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* 标题科技字体 */
.greeting-text, h1, h2 {
  font-family: 'Orbitron', monospace !important;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(100, 180, 255, 0.3);
}

/* 分组标题 */
.text-theme-800 {
  font-family: 'Orbitron', monospace !important;
  letter-spacing: 0.08em;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  opacity: 0.7;
}

/* 卡片居中布局 */
#page_container {
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* 欢迎区域间距 */
#information-widgets {
  margin-bottom: 2rem !important;
  padding-top: 3rem !important;
}

/* 卡片样式 */
div[class*="service"] {
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

div[class*="service"]:hover {
  border-color: rgba(100, 180, 255, 0.25) !important;
  box-shadow: 0 0 25px rgba(100, 180, 255, 0.08), 0 12px 40px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-4px) !important;
}

/* 卡片顶部光线 */
div[class*="service"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 180, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

div[class*="service"]:hover::after {
  opacity: 1;
}

/* 日期时间 */
.datetime {
  font-family: 'Rajdhani', monospace !important;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* 链接 hover */
a:hover {
  text-shadow: 0 0 6px rgba(100, 180, 255, 0.3) !important;
}

/* CRT 扫描线（极淡） */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(100, 180, 255, 0.006) 3px,
    rgba(100, 180, 255, 0.006) 6px
  );
}
