        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #f5f5f5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(110, 142, 251, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(110, 142, 251, 0.5);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            color: #fff;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
            border-radius: 2px;
        }

        /* 导航栏 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
            transition: all 0.3s;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .login-btn {
            margin-left: 20px;
            padding: 10px 25px;
            background: transparent;
            border: 2px solid #6e8efb;
            color: #6e8efb;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .login-btn:hover {
            background: #6e8efb;
            color: #fff;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        /* 英雄区 */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420') center/cover no-repeat;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, #0a0a0a 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #c9c9c9;
            line-height: 1.5;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #0a0a0a;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* 游戏列表 */
        .games {
            padding: 120px 0;
            background: #0f0f0f;
        }

        .games-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .game-card {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(110, 142, 251, 0.2);
        }

        .game-image {
            height: 200px;
            overflow: hidden;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .game-card:hover .game-image img {
            transform: scale(1.1);
        }

        .game-content {
            padding: 25px;
        }

        .game-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .game-desc {
            color: #b3b3b3;
            margin-bottom: 20px;
            line-height: 1.6;
        }

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

        .game-tag {
            padding: 5px 12px;
            background: rgba(110, 142, 251, 0.2);
            color: #6e8efb;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .game-link {
            display: inline-block;
            color: #6e8efb;
            font-weight: 600;
            position: relative;
        }

        .game-link:after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s;
            display: inline-block;
        }

        .game-link:hover:after {
            transform: translateX(5px);
        }

        /* 公司动态 */
        .news {
            padding: 120px 0;
            background: #0a0a0a;
        }

        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            color: #6e8efb;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .news-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-excerpt {
            color: #b3b3b3;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            color: #6e8efb;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .read-more span {
            margin-left: 5px;
            transition: transform 0.3s;
            display: inline-block;
        }

        .read-more:hover span {
            transform: translateX(5px);
        }

        /* 关于我们 */
        .about {
            padding: 120px 0;
            background: #0f0f0f;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #fff;
        }

        .about-content p {
            color: #b3b3b3;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-text {
            color: #b3b3b3;
            font-size: 1rem;
        }

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

        .modal-content {
            background: #1a1a1a;
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            padding: 40px;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #b3b3b3;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #fff;
        }

        .modal-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            color: #fff;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #b3b3b3;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            background: #2a2a2a;
            border: 1px solid #3a3a3a;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            border-color: #6e8efb;
            outline: none;
            box-shadow: 0 0 0 2px rgba(110, 142, 251, 0.2);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
        }

        .checkbox-group input {
            margin-right: 8px;
        }

        .forgot-password {
            color: #6e8efb;
            transition: color 0.3s;
        }

        .forgot-password:hover {
            color: #a777e3;
        }

        .form-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
        }

        .form-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 0.9rem;
            color: #b3b3b3;
        }

        .form-footer a {
            color: #6e8efb;
            transition: color 0.3s;
        }

        .form-footer a:hover {
            color: #a777e3;
        }

        /* 页脚 */
        footer {
            background: #0a0a0a;
            padding: 80px 0 30px;
            border-top: 1px solid #1a1a1a;
        }

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

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .footer-about {
            color: #b3b3b3;
            margin-bottom: 25px;
            line-height: 1.8;
        }

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

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 50%;
            color: #b3b3b3;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: #6e8efb;
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
        }

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

        .footer-links a {
            color: #b3b3b3;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #6e8efb;
        }

        .footer-links a:before {
            content: '→';
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .footer-contact li {
            display: flex;
            margin-bottom: 15px;
            color: #b3b3b3;
        }

        .footer-contact i {
            margin-right: 15px;
            color: #6e8efb;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #1a1a1a;
            color: #b3b3b3;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #1a1a1a;
                flex-direction: column;
                justify-content: center;
                transition: right 0.3s;
                z-index: 1001;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
                z-index: 1002;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .section-title {
                font-size: 2rem;
            }

            .games-container,
            .news-container {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-btns {
                align-items: center;
            }

            .modal-content {
                padding: 30px 20px;
            }
        }