
        /* 原有CSS样式保持不变 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
        }

        :root {
            --primary: #6c5ce7;
            --primary-dark: #5649c0;
            --secondary: #a29bfe;
            --accent: #00b894;
            --accent-dark: #00a085;
            --danger: #e17055;
            --warning: #fdcb6e;
            --dark: #1e1e2e;
            --dark-light: #2d3047;
            --light: #f7f7f7;
            --gray: #a5b1c2;
            --text: #2d3436;
            --text-light: #636e72;
            --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            --gradient-dark: linear-gradient(135deg, #5649c0 0%, #8177e0 100%);
            --gradient-accent: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏样式 */
        header {
            background-color: rgba(30, 30, 46, 0.95);
            backdrop-filter: blur(15px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .logo i {
            color: var(--primary);
            font-size: 28px;
        }

        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--gradient);
            border-radius: 3px;
        }

        .nav-actions {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }

        .btn-primary:hover {
            background: var(--gradient-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 92, 231, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--light);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            font-size: 14px;
            color: var(--gray);
        }

        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb span {
            margin: 0 8px;
        }

        /* 内容区域样式 */
        .content-section {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            padding: 20px 0 50px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title i {
            color: var(--primary);
        }

        /* 游戏标题区域 */
        .game-header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            background: rgba(45, 48, 71, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .game-cover {
            flex-shrink: 0;
            width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
        }

        .game-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-info {
            flex: 1;
        }

        .game-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .game-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--gray);
        }

        .game-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .game-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .rating-stars {
            color: var(--warning);
        }

        .rating-value {
            font-size: 18px;
            font-weight: 600;
        }

        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .game-tag {
            background: rgba(108, 92, 231, 0.2);
            color: var(--secondary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .game-tag:hover {
            background: var(--gradient);
            color: white;
        }

        /* 游戏介绍区域 */
        .game-description {
            background: rgba(45, 48, 71, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .game-description h3,h4,h5 {
            font-size: 20px;
            margin: 25px 0 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .game-description h3:first-child {
            margin-top: 0;
        }

        .game-description p {
            margin-bottom: 15px;
            color: var(--gray);
            line-height: 1.8;
        }

        .game-media {
        
            gap: 20px;
            margin: 25px 0;
        }

        .game-media img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .game-video {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
            grid-column: 1 / -1;
        }

        .game-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 下载区域 */
        .download-section {
            background: rgba(45, 48, 71, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .download-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .download-option {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
        }

        .download-option:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .download-icon {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .download-name {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .download-desc {
            font-size: 12px;
            color: var(--gray);
        }

        /* 免责声明 */
        .disclaimer {
            background: rgba(45, 48, 71, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .disclaimer h3 {
            color: var(--danger);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .disclaimer p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 14px;
        }

        /* 排行榜样式 */
        .ranking-list {
            list-style: none;
        }
		.right-content a {
		    color: white;
		    text-decoration: none;
		}

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(45, 48, 71, 0.7);
            margin-bottom: 15px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ranking-item:hover {
            transform: translateX(5px);
            background: rgba(45, 48, 71, 0.9);
            border-color: rgba(108, 92, 231, 0.3);
        }

        .ranking-number {
            width: 30px;
            height: 30px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
        }

        .ranking-number.top3 {
            background: var(--gradient-accent);
        }

        .ranking-game-logo {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            overflow: hidden;
        }

        .ranking-game-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ranking-game-info {
            flex: 1;
        }

        .ranking-game-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .ranking-game-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--gray);
        }

        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--dark-light);
            border-radius: 15px;
            padding: 30px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            box-shadow: var(--shadow-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .qrcode-container {
            margin: 20px auto;
            width: 200px;
            height: 200px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-text {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: center;
        }

        .modal-close {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--gradient-dark);
        }

        /* 页脚样式 */
        footer {
            background: rgba(26, 26, 46, 0.9);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo .logo {
            font-size: 28px;
        }

        .footer-desc {
            color: var(--gray);
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(45, 48, 71, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .content-section {
                grid-template-columns: 2fr 1fr;
            }

            .game-header {
                flex-direction: column;
            }

            .game-cover {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .content-section {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .game-media {
                grid-template-columns: 1fr;
            }

            .download-options {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* 隐藏空链接的样式 */
        .download-option.empty {
            display: none;
        }