/* css代码 */
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Orbitron', sans-serif;
            background: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .scroll-container {
            min-height: 100vh;
            width: 100%;
            padding: 40px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            padding: 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            width: 90%;
            max-width: 1000px;
            margin-bottom: 30px;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
            z-index: -1;
            border-radius: 20px;
        }
        
        .profile-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }
        
        .nickname {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }
        
        .bio {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .works-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .works-section h2 {
            grid-column: 1 / -1;
            font-size: 24px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        .work-item {
            background: rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .work-item:hover {
            background: rgba(0, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .work-item h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .work-item p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .time-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .time-display {
            font-size: 18px;
            margin-bottom: 20px;
            color: rgba(0, 255, 255, 0.9);
            text-align: center;
            padding: 12px 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
        }
        
        .clock-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .clock {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(0, 255, 255, 0.5);
            position: relative;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            margin: 0 auto;
        }
        
        .clock-face {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .number {
            position: absolute;
            font-size: 18px;
            color: rgba(0, 255, 255, 0.9);
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
            transform-origin: center;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 20px;
        }
        
        /* 精确固定时钟数字位置 */
        .number-12 { top: 10px; left: 50%; transform: translateX(-50%); }
        .number-1 { top: 30px; right: 60px; }
        .number-2 { top: 70px; right: 30px; }
        .number-3 { top: 50%; right: 15px; transform: translateY(-50%); }
        .number-4 { bottom: 70px; right: 30px; }
        .number-5 { bottom: 30px; right: 60px; }
        .number-6 { bottom: 10px; left: 50%; transform: translateX(-50%); }
        .number-7 { bottom: 30px; left: 60px; }
        .number-8 { bottom: 70px; left: 30px; }
        .number-9 { top: 50%; left: 15px; transform: translateY(-50%); }
        .number-10 { top: 70px; left: 30px; }
        .number-11 { top: 30px; left: 60px; }
        
        .hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform-origin: bottom;
            border-radius: 10px;
            transform: translateX(-50%);
        }
        
        .hour-hand {
            width: 6px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .minute-hand {
            width: 4px;
            height: 90px;
            background: rgba(0, 255, 255, 0.9);
        }
        
        .second-hand {
            width: 2px;
            height: 100px;
            background: rgba(255, 0, 0, 0.9);
        }
        
        .center-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        .tech-dots {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }
        
        .tech-dots::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        
        @media (max-width: 768px) {
            .glass-card {
                width: 95%;
                padding: 20px;
            }
            
            .works-section {
                grid-template-columns: 1fr;
            }
            
            .time-display {
                font-size: 16px;
            }
        }