        /* --- 全局样式重置 --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* --- 主体背景设置 --- */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #050505;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- 粒子画布样式 --- */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* --- 导航栏样式 --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(5px);
            z-index: 10;
            border-bottom: 1px solid #333;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            color: #d8b4fe;
        }
        /* 搜索框容器 */
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            border-radius: 20px;
            padding: 8px 20px;
            width: 400px;
        }

        /* 搜索输入框 */
        .search-input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            flex: 1;
            margin-left: 10px;
            font-size: 14px;
        }

        /* 搜索按钮 */
        .search-btn {
            background: transparent;
            border: none;
            color: #a78bfa;
            cursor: pointer;
            font-size: 14px;
            transition: color 0.3s;
        }

        /* 搜索按钮悬停效果 */
        .search-btn:hover {
            color: #c084fc;
        }
        .nav-links a {
            color: #e5e5e5;
            text-decoration: none;
            margin-left: 30px;
            font-size: 16px;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #c084fc;
        }

        /* --- 主内容区域 --- */
        .main-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            position: relative;
        }

        .download-card {
            background: rgba(20, 20, 20, 0.6);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            width: 400px;
            border: 1px solid #333;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
            text-align: center;
        }

        .download-card h2 {
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* --- 按钮样式 --- */
        .btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-download {
            background: #2563eb;
            color: white;
        }

        .btn-download:hover {
            background: #3b82f6;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }

        /* --- 底部信息 --- */
        .footer-info {
            position: absolute;
            bottom: 20px;
            font-size: 12px;
            color: #555;
            z-index: 1;
            text-align: center;
            width: 100%;
        }
