        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 屏幕阅读器专用 */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        html {
            overflow-x: hidden !important;
            overflow-y: hidden !important;
            max-width: 100vw !important;
            width: 100% !important;
            position: fixed !important;
            left: 0 !important;
            right: 0 !important;
            touch-action: pan-y pinch-zoom;
        }

        body {
            font-family: 'SF Pro Display', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            overflow: hidden !important;
            overflow-x: hidden !important;
            overflow-y: hidden !important;
            background: #8b0000;
            color: #fff;
            min-height: 100vh;
            max-width: 100vw !important;
            width: 100% !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            touch-action: pan-y pinch-zoom;
        }

        /* 动态渐变背景 - 爱国主义红色主题 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            background: 
                radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
                linear-gradient(
                    135deg,
                    #8b0000 0%,
                    #c8102e 25%,
                    #dc143c 50%,
                    #c8102e 75%,
                    #8b0000 100%
                );
            background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
            animation: gradientShift 20s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%, 0% 0%, 0% 0%, 0% 50%; }
            50% { background-position: 0% 50%, 0% 0%, 0% 0%, 100% 50%; }
            100% { background-position: 0% 50%, 0% 0%, 0% 0%, 0% 50%; }
        }

        /* 五星图案背景 - 爱国主义主题 */
        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                /* 大五星 */
                radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 8%),
                radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 12%),
                /* 小五星群 */
                radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 5%),
                radial-gradient(circle at 25% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 6%),
                radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.06) 0%, transparent 5%),
                /* 金色网格线 */
                linear-gradient(rgba(255, 215, 0, 0.12) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.12) 1px, transparent 1px),
                linear-gradient(rgba(255, 223, 0, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 223, 0, 0.08) 1px, transparent 1px);
            background-size: 
                200px 200px, 300px 300px,
                100px 100px, 120px 120px, 110px 110px,
                60px 60px, 60px 60px, 120px 120px, 120px 120px;
            animation: gridMove 30s linear infinite;
            opacity: 0.5;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
            50% { opacity: 0.6; }
            100% { transform: translate(60px, 60px) rotate(360deg); opacity: 0.5; }
        }

        /* 动态波浪效果 - 红色和金色光晕 */
        .bg-animation::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: 
                /* 红色光晕 */
                radial-gradient(circle at 30% 30%, rgba(200, 16, 46, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(178, 34, 34, 0.15) 0%, transparent 50%),
                /* 金色光晕 */
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 223, 0, 0.12) 0%, transparent 40%);
            animation: waveMove 25s ease-in-out infinite;
            opacity: 0.7;
        }

        @keyframes waveMove {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }
            33% {
                transform: translate(-15%, -15%) scale(1.05);
                opacity: 0.8;
            }
            66% {
                transform: translate(15%, 15%) scale(0.95);
                opacity: 0.6;
            }
        }

        /* 动态光晕球体 - 庄重的红色和金色 */
        .glow-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.4;
            animation: floatOrb 40s infinite ease-in-out;
            z-index: -2;
            mix-blend-mode: screen;
        }

        .glow-orb-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, 
                rgba(200, 16, 46, 0.7) 0%,
                rgba(200, 16, 46, 0.35) 25%,
                transparent 60%);
            top: -10%;
            left: -10%;
            animation-duration: 35s;
        }

        .glow-orb-2 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, 
                rgba(220, 20, 60, 0.65) 0%,
                rgba(220, 20, 60, 0.3) 25%,
                transparent 60%);
            bottom: -10%;
            right: -10%;
            animation-duration: 40s;
            animation-delay: -8s;
        }

        .glow-orb-3 {
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, 
                rgba(255, 215, 0, 0.5) 0%,
                rgba(255, 215, 0, 0.25) 25%,
                transparent 60%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 45s;
            animation-delay: -15s;
        }

        .glow-orb-4 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, 
                rgba(178, 34, 34, 0.6) 0%,
                rgba(178, 34, 34, 0.3) 25%,
                transparent 60%);
            top: 15%;
            right: 15%;
            animation-duration: 38s;
            animation-delay: -12s;
        }

        .glow-orb-5 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, 
                rgba(255, 223, 0, 0.45) 0%,
                rgba(255, 223, 0, 0.22) 25%,
                transparent 60%);
            bottom: 25%;
            left: 25%;
            animation-duration: 42s;
            animation-delay: -20s;
        }

        @keyframes floatOrb {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            25% {
                transform: translate(80px, -80px) scale(1.15);
                opacity: 0.5;
            }
            50% {
                transform: translate(-60px, 60px) scale(0.9);
                opacity: 0.35;
            }
            75% {
                transform: translate(60px, 80px) scale(1.05);
                opacity: 0.45;
            }
        }

        /* 增强粒子效果 */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: float 30s infinite;
            opacity: 0.7;
            will-change: transform, opacity;
        }

        .particle-small {
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, 
                rgba(200, 16, 46, 1) 0%,
                rgba(200, 16, 46, 0.5) 50%,
                transparent 100%);
            box-shadow: 
                0 0 10px rgba(200, 16, 46, 1),
                0 0 20px rgba(200, 16, 46, 0.5);
        }

        .particle-medium {
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, 
                rgba(255, 215, 0, 1) 0%,
                rgba(255, 215, 0, 0.5) 50%,
                transparent 100%);
            box-shadow: 
                0 0 15px rgba(255, 215, 0, 1),
                0 0 30px rgba(255, 215, 0, 0.5);
        }

        .particle-large {
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, 
                rgba(220, 20, 60, 1) 0%,
                rgba(220, 20, 60, 0.5) 50%,
                transparent 100%);
            box-shadow: 
                0 0 20px rgba(220, 20, 60, 1),
                0 0 40px rgba(220, 20, 60, 0.5);
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
                transform: translateY(90vh) translateX(20px) rotate(36deg) scale(0.8);
            }
            50% {
                transform: translateY(50vh) translateX(150px) rotate(180deg) scale(1.2);
                opacity: 1;
            }
            90% {
                opacity: 0.8;
                transform: translateY(10vh) translateX(280px) rotate(324deg) scale(0.8);
            }
            100% {
                transform: translateY(-10vh) translateX(400px) rotate(360deg) scale(0.5);
                opacity: 0;
            }
        }

        /* 动态几何图形 */
        .geometric-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: shapeFloat 20s infinite ease-in-out;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-bottom: 50px solid rgba(200, 16, 46, 0.25);
            animation: shapeFloat 30s infinite ease-in-out;
        }

        .shape-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid rgba(255, 215, 0, 0.25);
            animation: shapeFloat 35s infinite ease-in-out;
        }

        .shape-square {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(220, 20, 60, 0.2);
            transform: rotate(45deg);
            animation: shapeFloat 28s infinite ease-in-out;
        }

        @keyframes shapeFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.15;
            }
            25% {
                transform: translate(60px, -60px) rotate(90deg) scale(1.1);
                opacity: 0.22;
            }
            50% {
                transform: translate(-50px, 50px) rotate(180deg) scale(0.85);
                opacity: 0.12;
            }
            75% {
                transform: translate(70px, 60px) rotate(270deg) scale(1.05);
                opacity: 0.2;
            }
        }


        /* 自定义光标 - 红色和金色 */
        .custom-cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255, 215, 0, 0.8);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
            backdrop-filter: blur(10px);
        }

        .cursor-dot {
            position: fixed;
            width: 6px;
            height: 6px;
            background: rgba(200, 16, 46, 1);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            box-shadow: 0 0 15px rgba(200, 16, 46, 1);
        }

        /* 主容器 */
        .clock-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 50px;
            padding: 40px;
            position: relative;
            z-index: 10;
        }

        /* 数字时钟 - 玻璃态卡片 */
        .digital-clock {
            text-align: center;
            position: relative;
            padding: 50px 80px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px) saturate(180%);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(120, 119, 198, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: cardFloat 6s ease-in-out infinite;
        }

        @keyframes cardFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.01);
            }
        }

        .digital-clock:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(120, 119, 198, 0.4),
                0 0 40px rgba(120, 119, 198, 0.3);
            border-color: rgba(120, 119, 198, 0.3);
        }

        /* 瀑布流时钟容器 */
        .waterfall-clock {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            perspective: 1000px;
        }

        /* 数字列 */
        .digit-column {
            position: relative;
            width: 120px;
            height: 180px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(120, 119, 198, 0.2);
            box-shadow: 
                inset 0 0 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(120, 119, 198, 0.2);
            display: flex;
            flex-direction: column;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .digit-column:hover {
            box-shadow: 
                inset 0 0 30px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(120, 119, 198, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(120, 119, 198, 0.4);
        }

        /* 数字项 */
        .digit-item {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7rem;
            font-weight: 700;
            font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
            background: linear-gradient(135deg, 
                #7877c6 0%, 
                #ff77c6 50%, 
                #77c6ff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(120, 119, 198, 0.5);
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
            opacity: 0.6;
        }

        .digit-item.active {
            opacity: 1;
            background: linear-gradient(135deg, 
                #7877c6 0%, 
                #ff77c6 25%, 
                #77c6ff 50%, 
                #ff77c6 75%, 
                #7877c6 100%);
            background-size: 300% 300%;
            animation: gradientText 3s ease infinite;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(120, 119, 198, 0.8));
            transform: scale(1.1);
            z-index: 10;
        }

        @keyframes gradientText {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* 分隔符 */
        .separator {
            font-size: 6rem;
            font-weight: 700;
            font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
            color: rgba(120, 119, 198, 0.8);
            text-shadow: 
                0 0 20px rgba(120, 119, 198, 0.6),
                0 0 40px rgba(120, 119, 198, 0.3);
            animation: separatorPulse 1s ease-in-out infinite;
            padding: 0 10px;
        }

        @keyframes separatorPulse {
            0%, 100% {
                opacity: 0.8;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .date-display {
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 20px;
            letter-spacing: 8px;
            font-weight: 300;
            text-shadow: 0 0 20px rgba(120, 119, 198, 0.4);
            animation: fadeInOut 4s ease-in-out infinite;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* 模拟时钟 - 玻璃态设计 */
        .analog-clock {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(30px) saturate(180%);
            border: 2px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(120, 119, 198, 0.2),
                inset 0 0 60px rgba(120, 119, 198, 0.1);
            position: relative;
            margin: 0 auto;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: clockFloat 8s ease-in-out infinite;
        }

        @keyframes clockFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-8px) rotate(2deg);
            }
        }

        .analog-clock:hover {
            transform: translateY(-12px) rotate(0deg) scale(1.03);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(120, 119, 198, 0.4),
                inset 0 0 80px rgba(120, 119, 198, 0.2),
                0 0 50px rgba(120, 119, 198, 0.3);
            border-color: rgba(120, 119, 198, 0.3);
        }

        /* 时钟刻度 */
        .clock-mark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: bottom center;
        }

        .mark-hour {
            width: 3px;
            height: 30px;
            background: linear-gradient(to top, 
                rgba(120, 119, 198, 0.9), 
                rgba(120, 119, 198, 0.3));
            box-shadow: 0 0 15px rgba(120, 119, 198, 0.6);
            border-radius: 2px;
            transform: translate(-50%, -175px) rotate(0deg);
        }

        .mark-minute {
            width: 1.5px;
            height: 15px;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
            border-radius: 1px;
            transform: translate(-50%, -175px) rotate(0deg);
        }

        /* 数字标签 */
        .clock-number {
            position: absolute;
            font-size: 1.5rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 
                0 0 15px rgba(120, 119, 198, 0.6),
                0 0 30px rgba(120, 119, 198, 0.3);
            transition: all 0.3s ease;
            font-family: 'SF Pro Display', sans-serif;
        }

        .clock-number:hover {
            transform: translate(-50%, -50%) scale(1.4);
            color: #7877c6;
            text-shadow: 
                0 0 25px rgba(120, 119, 198, 1),
                0 0 50px rgba(120, 119, 198, 0.6);
        }

        /* 时钟中心 */
        .clock-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            background: radial-gradient(circle, 
                rgba(120, 119, 198, 1), 
                rgba(120, 119, 198, 0.6));
            border-radius: 50%;
            box-shadow: 
                0 0 25px rgba(120, 119, 198, 0.8),
                0 0 50px rgba(120, 119, 198, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
            z-index: 10;
            animation: centerPulse 2s ease-in-out infinite;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        @keyframes centerPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 
                    0 0 25px rgba(120, 119, 198, 0.8),
                    0 0 50px rgba(120, 119, 198, 0.4);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.15);
                box-shadow: 
                    0 0 35px rgba(120, 119, 198, 1),
                    0 0 70px rgba(120, 119, 198, 0.6);
            }
        }

        /* 指针 */
        .hour-hand,
        .minute-hand,
        .second-hand {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: bottom center;
            border-radius: 4px;
            transition: transform 0.05s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .hour-hand {
            width: 8px;
            height: 100px;
            background: linear-gradient(to top, 
                rgba(120, 119, 198, 1), 
                rgba(120, 119, 198, 0.6), 
                transparent);
            box-shadow: 
                0 0 20px rgba(120, 119, 198, 0.8),
                0 0 40px rgba(120, 119, 198, 0.4);
            transform: translate(-50%, -100%) rotate(0deg);
            z-index: 3;
            border-radius: 4px 4px 0 0;
        }

        .minute-hand {
            width: 5px;
            height: 140px;
            background: linear-gradient(to top, 
                rgba(119, 198, 255, 1), 
                rgba(119, 198, 255, 0.6), 
                transparent);
            box-shadow: 
                0 0 20px rgba(119, 198, 255, 0.8),
                0 0 40px rgba(119, 198, 255, 0.4);
            transform: translate(-50%, -100%) rotate(0deg);
            z-index: 2;
            border-radius: 3px 3px 0 0;
        }

        .second-hand {
            width: 2px;
            height: 160px;
            background: linear-gradient(to top, 
                rgba(255, 119, 198, 1), 
                rgba(255, 119, 198, 0.6), 
                transparent);
            box-shadow: 
                0 0 25px rgba(255, 119, 198, 1),
                0 0 50px rgba(255, 119, 198, 0.6);
            transform: translate(-50%, -100%) rotate(0deg);
            z-index: 1;
            border-radius: 1px 1px 0 0;
        }

        .second-hand::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, 
                rgba(255, 119, 198, 1), 
                rgba(255, 119, 198, 0.6));
            border-radius: 50%;
            box-shadow: 
                0 0 20px rgba(255, 119, 198, 1),
                0 0 40px rgba(255, 119, 198, 0.6);
            animation: secondDotPulse 1s ease-in-out infinite;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes secondDotPulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.4);
            }
        }

        /* 页脚 */
        footer {
            position: fixed !important;
            bottom: 0 !important;
            left: 0;
            width: 100%;
            padding: 20px 0;
            text-align: center;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border-top: 1px solid rgba(120, 119, 198, 0.2);
            z-index: 9999;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
            display: block !important;
            visibility: visible !important;
        }

        .text-color {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-shadow: 0 0 10px rgba(120, 119, 198, 0.4);
            font-weight: 300;
        }

        .text-color:hover {
            color: #7877c6;
            text-shadow: 0 0 20px rgba(120, 119, 198, 0.8);
            transform: translateY(-2px);
        }

        /* 响应式设计 - 平板 */
        @media (max-width: 1024px) {
            .time-display {
                font-size: 6rem;
                letter-spacing: 15px;
            }

            .digital-clock {
                padding: 40px 60px;
            }

            .analog-clock {
                width: 340px;
                height: 340px;
            }

            .glow-orb {
                filter: blur(80px);
            }
        }

        /* 响应式设计 - 手机横屏 */
        @media (max-width: 768px) {
            .waterfall-clock {
                gap: 10px;
            }

            .digit-column {
                width: 80px;
                height: 120px;
            }

            .digit-item {
                height: 120px;
                font-size: 4.5rem;
            }

            .separator {
                font-size: 4rem;
                padding: 0 5px;
            }

            .date-display {
                font-size: 1.2rem;
                letter-spacing: 5px;
            }

            .clock-container {
                gap: 35px;
                padding: 30px 20px;
            }

            .digital-clock {
                padding: 35px 30px;
                border-radius: 25px;
            }

            .analog-clock {
                width: 300px;
                height: 300px;
            }

            .hour-hand {
                height: 80px;
                width: 6px;
            }

            .minute-hand {
                height: 110px;
                width: 4px;
            }

            .second-hand {
                height: 125px;
            }

            .mark-hour {
                transform: translate(-50%, -150px) rotate(0deg);
                height: 25px;
            }

            .mark-minute {
                transform: translate(-50%, -150px) rotate(0deg);
                height: 12px;
            }

            .clock-number {
                font-size: 1.2rem;
            }

            .glow-orb {
                filter: blur(60px);
                opacity: 0.3;
            }

            .glow-orb-1,
            .glow-orb-2,
            .glow-orb-3 {
                width: 250px;
                height: 250px;
            }

            footer {
                padding: 15px 0;
            }
        }

        /* 响应式设计 - 手机竖屏 */
        @media (max-width: 480px) {
            body {
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .custom-cursor,
            .cursor-dot {
                display: none;
            }

            .geometric-shapes {
                display: none;
            }

            .glow-orb {
                filter: blur(80px);
                opacity: 0.2;
            }

            .waterfall-clock {
                gap: 8px;
            }

            .digit-column {
                width: 60px;
                height: 100px;
            }

            .digit-item {
                height: 100px;
                font-size: 3rem;
            }

            .separator {
                font-size: 3rem;
                padding: 0 3px;
            }

            .date-display {
                font-size: 1rem;
                letter-spacing: 3px;
                margin-top: 15px;
            }

            .clock-container {
                gap: 30px;
                padding: 20px 15px;
                min-height: 100vh;
                justify-content: flex-start;
                padding-top: 50px;
                padding-bottom: 100px;
            }

            .digital-clock {
                padding: 25px 20px;
                border-radius: 20px;
            }

            .analog-clock {
                width: 260px;
                height: 260px;
                border-width: 1.5px;
            }

            .hour-hand {
                height: 65px;
                width: 5px;
            }

            .minute-hand {
                height: 90px;
                width: 3px;
            }

            .second-hand {
                height: 100px;
                width: 2px;
            }

            .clock-center {
                width: 18px;
                height: 18px;
            }

            .mark-hour {
                transform: translate(-50%, -130px) rotate(0deg);
                height: 20px;
                width: 2.5px;
            }

            .mark-minute {
                transform: translate(-50%, -130px) rotate(0deg);
                height: 10px;
                width: 1px;
            }

            .clock-number {
                font-size: 1rem;
            }

            .glow-orb {
                display: none;
            }

            .particle {
                display: none;
            }

            footer {
                padding: 12px 0;
            }

            .text-color {
                font-size: 0.8rem;
            }
        }

        /* 横屏适配 */
        @media (max-width: 768px) and (orientation: landscape) {
            .clock-container {
                flex-direction: row;
                gap: 25px;
                padding: 20px;
            }

            .waterfall-clock {
                gap: 8px;
            }

            .digit-column {
                width: 70px;
                height: 100px;
            }

            .digit-item {
                height: 100px;
                font-size: 3.5rem;
            }

            .separator {
                font-size: 3rem;
                padding: 0 3px;
            }

            .date-display {
                font-size: 1rem;
            }

            .analog-clock {
                width: 240px;
                height: 240px;
            }

            .hour-hand {
                height: 60px;
            }

            .minute-hand {
                height: 85px;
            }

            .second-hand {
                height: 95px;
            }
        }

        /* 小屏手机 */
        @media (max-width: 360px) {
            .waterfall-clock {
                gap: 6px;
            }

            .digit-column {
                width: 50px;
                height: 80px;
            }

            .digit-item {
                height: 80px;
                font-size: 2.5rem;
            }

            .separator {
                font-size: 2.5rem;
                padding: 0 2px;
            }

            .date-display {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }

            .digital-clock {
                padding: 20px 15px;
            }

            .analog-clock {
                width: 220px;
                height: 220px;
            }

            .hour-hand {
                height: 55px;
            }

            .minute-hand {
                height: 75px;
            }

            .second-hand {
                height: 85px;
            }

            .mark-hour {
                transform: translate(-50%, -110px) rotate(0deg);
            }

            .mark-minute {
                transform: translate(-50%, -110px) rotate(0deg);
            }

            .clock-number {
                font-size: 0.9rem;
            }
        }

        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(10, 10, 15, 0.5);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, 
                rgba(120, 119, 198, 0.8), 
                rgba(255, 119, 198, 0.8));
            border-radius: 4px;
            box-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, 
                rgba(120, 119, 198, 1), 
                rgba(255, 119, 198, 1));
        }
