  html, body {
            background-color: #050505;
            /* 移除了CSS实现的星空背景，因为已有Canvas实现的星空效果 */
            color: #ffffff;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Background Canvas */
        #starfield {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }

        ::-webkit-scrollbar-thumb {
            background: #4c1d95;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #6d28d9;
        }


        /* Footer Stars Effect */
        #footer-stars {
            background-image: radial-gradient(#a855f7 1px, transparent 1px), radial-gradient(#38bdf8 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px;
            animation: float 15s ease-in-out infinite;
        }

        /* Glass Effect Class */
        .glass-card {
            background: var(--tw-colors-mc-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--tw-colors-mc-glassBorder);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        .text-glow {
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .mc-btn {
            background: linear-gradient(45deg, #4f46e5, #9333ea);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(147, 51, 234, 0.6);
        }

        /* Reveal on Scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Responsive Layout Adjustments for Team Section */
        @media (max-width: 1024px) {
            .glass-card {
                padding: 1.5rem !important;
            }

            .glass-card h3 {
                font-size: 1.2rem;
            }

            .glass-card p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            #staff {
                padding: 4rem 0;
            }

            .glass-card {
                padding: 1.25rem !important;
            }

            /* 修复移动设备头像显示问题 */
            .glass-card .relative.w-32.h-32 {
                width: 80px !important;
                height: 80px !important;
            }

            .glass-card .relative.w-32.h-32 img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                border-radius: 50% !important;
                display: block !important;
            }

            .glass-card .absolute.bottom-3 {
                font-size: 0.7rem !important;
                padding: 0.2rem 0.8rem !important;
            }
        }

        @media (max-width: 640px) {
            #staff .container {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            #staff h2 {
                font-size: 2rem !important;
            }

            #staff p {
                font-size: 1rem !important;
            }

            /* Enhanced Mobile Touch Optimization */
            .toggle-info,
            .mc-btn,
            a,
            button {
                min-height: 48px;
                min-width: 48px;
                padding: 0.75rem;
                font-size: 0.875rem;
            }

            /* Better spacing on mobile */
            .grid {
                gap: 1rem !important;
            }

            /* Optimize team cards for mobile */
            .glass-card {
                padding: 1rem !important;
                margin: 0.5rem 0;
            }

            /* Prevent text selection during touch */
            .toggle-info,
            .mc-btn {
                user-select: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
            }
        }

        /* Video Container */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 0 30px rgba(109, 40, 217, 0.3);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            /* 移除iframe默认边框 */
            max-height: 100%;
            /* 确保不超出容器 */
        }

        /* 移动设备响应式优化 */
        @media (max-width: 640px) {
            .video-container {
                padding-bottom: 75%;
                /* 增大高度比例到4:3 */
                min-height: 280px;
                /* 调整为更合理的最小高度 */
                border-radius: 0.75rem;
                /* 调整圆角 */
                width: 100%;
                margin: 0 auto;
                /* 居中显示 */
                overflow: hidden;
            }

            .video-container iframe {
                position: absolute;
                top: 50%;
                /* 垂直居中 */
                left: 50%;
                /* 水平居中 */
                width: 100% !important;
                /* 强制宽度 */
                height: 100% !important;
                /* 强制高度 */
                transform: translate(-50%, -50%);
                /* 使用translate实现完全居中 */
                transform-origin: center;
                border: none;
            }

            /* 确保Bilibili播放器在移动设备上正常工作 */
            #video-section .max-w-5xl {
                max-width: 100vw !important;
                /* 使用视口宽度 */
                padding-left: 0;
                /* 移除内边距 */
                padding-right: 0;
                /* 移除内边距 */
                margin-left: 0;
                margin-right: 0;
                width: 100%;
            }

            /* 优化视频区域在移动设备上的整体布局 */
            #video-section .container {
                padding-left: 0;
                padding-right: 0;
                width: 100%;
                max-width: 100%;
            }

            /* 移除右侧边距 */
            #video-section .max-w-5xl {
                padding-right: 0;
                /* 移除内边距 */
            }

            /* 团队成员在移动设备上恢复为垂直布局 */
            #staff .flex.flex-row {
                flex-direction: column;
                align-items: center;
            }
        }

        /* 团队成员水平布局样式 */
        #staff .group .glass-card {
            transition: all 0.3s ease;
        }

        /* 调整团队成员头像容器大小以适应水平布局 */
        #staff .relative.w-32.h-32 {
            width: 64px;
            height: 64px;
            margin-bottom: 6px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 调整团队成员信息显示 */
        #staff .glass-card h3 {
            font-size: 0.85rem;
            margin-bottom: 2px;
        }

        #staff .glass-card p {
            font-size: 0.75rem;
        }

        /* 调整按钮大小 */
        #staff .toggle-info {
            font-size: 0.7rem;
            padding: 0.25rem;
        }

        /* Modern Text Effects */
        .text-shadow {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .text-shadow-sm {
            text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
        }

        /* 发光文本效果 */
        .glow-text-green {
            text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
        }

        /* 缓慢脉冲动画 */
        .animate-pulse-slow {
            animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        /* 渐变滑动动画 */
        .animate-gradient-slide {
            animation: gradientSlide 3s linear infinite;
        }

        @keyframes gradientSlide {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        /* 闪光动画 */
        .animate-shimmer {
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }
