/* 非关键CSS - 延迟加载 */
/* 打印样式 */
@media print {
  .header, .footer, .top-bar { display: none; }
  body { background: #fff; color: #000; }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
  :root {
    --primary: #ff8500;
    --text: #ffffff;
    --muted: #cccccc;
  }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* 深色滚动条 */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0d0015; }
::-webkit-scrollbar-thumb { background: #2a1a4e; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #ff6b00; }

/* 选中文本样式 */
::selection { background: rgba(255,107,0,.3); color: #fff; }
