@charset "utf-8";
/* CSS Document */
:root {
            --bg-deep: #0b0a0d;
            --accent-gold: #bf9b30;
        }
        
        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-deep);
            color: #cfc6b8;
            font-family: 'Noto Serif SC', serif; /* 使用思源宋体 */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }
        
        .loading-container {
            text-align: center;
            max-width: 500px;
            padding: 2rem;
        }
        
        .loading-logo {
            font-family: 'Space Mono', monospace; /* 徽标保持原有字体 */
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 2rem;
            letter-spacing: 0.2em;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(191, 155, 48, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent-gold);
            animation: spin 1s ease-in-out infinite;
            margin: 0 auto 2rem;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .loading-text {
            font-family: 'Noto Serif SC', serif; /* 使用思源宋体 */
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.8;
            font-weight: 400;
        }
        
        .loading-progress {
            width: 100%;
            height: 2px;
            background: rgba(191, 155, 48, 0.2);
            margin: 1rem 0;
            overflow: hidden;
        }
        
        .loading-progress-bar {
            height: 100%;
            background: var(--accent-gold);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .archive-quote {
            font-family: 'Noto Serif SC', serif; /* 使用思源宋体 */
            font-style: italic;
            margin-top: 2rem;
            opacity: 0.6;
            font-size: 0.9rem;
            border-left: 1px solid var(--accent-gold);
            padding-left: 1rem;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .system-status {
            font-family: 'Space Mono', monospace; /* 系统状态保持等宽字体 */
            font-size: 0.7rem;
            color: rgba(207, 198, 184, 0.4);
            margin-top: 1.5rem;
            letter-spacing: 0.1em;
        }
