        @import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
        
        :root {
            --neon-text-color: #f40;
            --neon-border-color: #08f;
        }
        
        body {
            font-family: 'Audiowide', cursive;
            background-color: #000;
            color: #fff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            padding-top: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 20px;
        }
        h1, h2 {
            text-align: center;
            text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
        }
        .hero {
            background: url('https://source.unsplash.com/random/1600x900?concert') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1;
        }
        .hero h1 {
            position: relative;
            z-index: 2;
            font-size: 3em;
            animation: gentleGlow 4s ease-in-out infinite alternate;
        }
        @keyframes gentleGlow {
            from {
                text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
            }
            to {
                text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color), 0 0 15px var(--neon-border-color);
            }
        }
        .game-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .game-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(10px);
            transform: scale(1.1);
            z-index: 1;
        }

        .game-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            transition: opacity 0.3s ease;
        }

        .game-logo {
            max-width: 200px;
            margin-bottom: 20px;
        }

        .game-iframe-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .game-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .game-container .play-button {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            padding: 15px 40px;
            color: #fff;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            background: linear-gradient(90deg, #ff0055, #ff00ff);
            box-shadow: 0 0 15px #ff0055,
                        0 0 25px rgba(255, 0, 85, 0.5),
                        0 0 35px rgba(255, 0, 85, 0.3);
            animation: neonPulse 2s ease-in-out infinite;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .game-container .play-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: 0.5s;
        }

        @keyframes neonPulse {
            0% {
                box-shadow: 0 0 15px #ff0055,
                            0 0 25px rgba(255, 0, 85, 0.5),
                            0 0 35px rgba(255, 0, 85, 0.3);
            }
            50% {
                box-shadow: 0 0 20px #ff0055,
                            0 0 35px rgba(255, 0, 85, 0.5),
                            0 0 45px rgba(255, 0, 85, 0.3);
            }
            100% {
                box-shadow: 0 0 15px #ff0055,
                            0 0 25px rgba(255, 0, 85, 0.5),
                            0 0 35px rgba(255, 0, 85, 0.3);
            }
        }

        .game-container .play-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px #ff0055,
                        0 0 35px rgba(255, 0, 85, 0.5),
                        0 0 45px rgba(255, 0, 85, 0.3);
            background: linear-gradient(90deg, #ff00ff, #ff0055);
        }

        .game-container .play-button:hover::before {
            left: 100%;
        }

        .game-container .play-button:active {
            transform: translateY(2px);
            box-shadow: 0 0 15px #ff0055,
                        0 0 25px rgba(255, 0, 85, 0.5);
        }

        .game-container.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw !important;
            height: 100vh !important;
            margin: 0;
            padding: 0;
            z-index: 9999;
            border: none;
            background: #000;
        }
        .game-container.fullscreen iframe {
            width: 100vw !important;
            height: 100vh !important;
            border: none;
            margin: 0;
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000;
        }
        .section {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            border: 2px solid var(--neon-border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 20px,
                rgba(255, 255, 255, 0.1) 20px,
                rgba(255, 255, 255, 0.1) 40px
            );
            animation: moveLines 10s linear infinite;
        }
        @keyframes moveLines {
            0% { transform: translateY(0); }
            100% { transform: translateY(40px); }
        }
        .section:hover {
            transform: scale(1.02);
            box-shadow: 0 0 15px var(--neon-border-color);
        }
        .review {
            background-color: rgba(40, 40, 40, 0.8);
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            border-left: 3px solid var(--neon-text-color);
        }
        .faq {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .faq h3 {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .faq h3:hover {
            color: var(--neon-text-color);
        }
        .faq p {
            display: none;
            padding-left: 20px;
            border-left: 2px solid var(--neon-text-color);
        }
        @media (max-width: 768px) {
            .game-container {
                height: 400px;
            }
            .hero h1 {
                font-size: 2em;
            }
        }
        
        /* 超级酷炫面包屑样式 */
        .breadcrumb-container {
            perspective: 1000px;
            margin-bottom: 40px;
        }
        .breadcrumb {
            background: linear-gradient(90deg, #00ff87, #60efff, #00ff87);
            background-size: 200% 200%;
            padding: 20px 30px;
            border-radius: 10px;
            font-size: 20px;
            box-shadow: 0 15px 25px rgba(0,0,0,0.2), 0 0 50px rgba(0,255,135,0.6);
            display: inline-block;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            animation: gradientShift 5s ease infinite, float 3s ease-in-out infinite;
        }
        .breadcrumb:hover {
            transform: rotateX(10deg) rotateY(-10deg) scale(1.05);
            box-shadow: 0 20px 30px rgba(0,0,0,0.3), 0 0 70px rgba(0,255,135,0.8);
        }
        .breadcrumb a {
            color: #001f3f;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            text-shadow: 0 0 10px rgba(255,255,255,0.7);
            display: inline-block;
        }
        .breadcrumb a:hover {
            color: #ff00ff;
            text-shadow: 0 0 15px rgba(255,0,255,0.8);
            transform: translateZ(20px);
        }
        .breadcrumb a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: #ff00ff;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .breadcrumb a:hover::before {
            transform: scaleX(1);
        }
        .breadcrumb .separator {
            margin: 0 15px;
            color: #001f3f;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .breadcrumb:hover .separator {
            transform: rotate(360deg) scale(1.2);
        }
        .breadcrumb .current {
            color: #ff00ff;
            font-weight: bold;
            text-shadow: 0 0 15px rgba(255,0,255,0.8);
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* 在 <style> 标签内添加以下 CSS */
        .neon-nav {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .neon-nav ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            width: 100%;
        }

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

        .neon-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .neon-nav a:hover {
            color: var(--neon-text-color);
            text-shadow: 0 0 5px var(--neon-text-color), 0 0 10px var(--neon-text-color);
        }

        /* 搜索框样式 */
        .search-box {
            display: none;
            position: relative;
        }

        .search-box input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 15px;
            color: white;
            font-size: 14px;
            width: 200px;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--neon-text-color);
            outline: none;
            width: 220px;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        /* 更新body的上边距以匹配新的导航栏高度 */
        body {
            padding-top: 50px;
        }

        /* 移动端样式更新 */
        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: fixed;
                left: 15px;
                top: 13px;
                z-index: 1001;
                padding: 0;
            }

            .menu-toggle span {
                display: block;
                width: 22px;
                height: 2px;
                background-color: var(--neon-text-color);
                margin: 4px 0;
                transition: all 0.3s ease;
            }

            .search-box {
                display: block;
                position: fixed;
                right: 15px;
                top: 13px;
                z-index: 1001;
            }

            .search-box input {
                width: 150px;
                padding: 4px 12px;
                font-size: 13px;
                height: 24px;
                line-height: 24px;
            }

            .search-box input:focus {
                width: 170px;
            }

            .neon-nav ul {
                display: none;
                position: fixed;
                top: 50px;
                left: 0;
                width: 100%;
                height: auto;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 15px 0;
                margin: 0;
                z-index: 999;
            }

            .neon-nav ul.active {
                display: flex;
            }

            .neon-nav li {
                margin: 8px 0;
                width: 100%;
                text-align: center;
            }

            .neon-nav a {
                display: block;
                padding: 8px 0;
                font-size: 15px;
            }
        }

        @media screen and (max-width: 480px) {
            .search-box input {
                width: 120px;
                padding: 4px 10px;
            }

            .search-box input:focus {
                width: 140px;
            }
        }

        .new-label {
            background-color: #f40;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            position: absolute;
            top: -10px;
            right: -20px;
            animation: pulse 2s infinite;
            z-index: 2;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .nav-item {
            position: relative;
            display: inline-block;
        }

        /* 添加响应式导航样式 */
        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 100;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--neon-text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: fixed;
                right: 20px;
                top: 15px;
                z-index: 1001;
            }

            .neon-nav ul {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                height: auto;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                margin: 0;
                z-index: 999;
                border-bottom: 1px solid var(--neon-border-color);
            }

            .neon-nav ul.active {
                display: flex;
            }

            .neon-nav li {
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }

            .neon-nav a {
                display: block;
                padding: 10px 0;
                font-size: 16px;
            }

            .new-label {
                position: static;
                display: inline-block;
                margin-left: 8px;
                vertical-align: middle;
            }
        }

        .browser-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 9999;
            flex-direction: column;
        }

        .browser-header {
            display: flex;
            align-items: center;
            padding: 10px;
            background: #f5f5f5;
            border-bottom: 1px solid #ddd;
        }

        .browser-header .close-btn {
            margin-right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .browser-header .url-bar {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #fff;
            font-size: 14px;
        }

        .browser-content {
            flex: 1;
            width: 100%;
            height: calc(100% - 50px);
            border: none;
        }

        .game-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff4444 0%, #ff0000 100%);
            padding: 20px;
        }

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

        .game-logo {
            width: 300px;
            height: auto;
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .game-content h1 {
            color: white;
            font-size: 36px;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .play-button {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            padding: 15px 30px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            animation: shakeButton 2s ease-in-out infinite;
            position: relative;
        }

        @keyframes shakeButton {
            0%, 100% {
                transform: translateX(0) scale(1);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px) scale(1.05);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px) scale(1.05);
            }
        }

        .play-button:hover {
            animation: none;
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background-color: #45a049;
        }

        .play-button:active {
            transform: translateY(0) scale(0.95);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* 分享对话框样式 */
        .share-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.95);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 68, 0, 0.3);
            z-index: 1000;
            width: 90%;
            max-width: 500px;
            border: 1px solid var(--neon-border-color);
        }

        .share-modal .neon-title {
            color: #fff;
            text-align: center;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 24px;
            text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
            font-family: 'Audiowide', cursive;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .share-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .share-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1DA1F2; }
        .share-reddit { background: #ff4500; }
        .share-pinterest { background: #e60023; }
        .share-whatsapp { background: #25d366; }
        .share-telegram { background: #0088cc; }

        .share-url {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .share-url input {
            flex: 1;
            padding: 10px;
            border: 1px solid var(--neon-border-color);
            border-radius: 5px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .copy-button {
            padding: 10px 20px;
            background: var(--neon-text-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .copy-button:hover {
            background: #ff5500;
            box-shadow: 0 0 10px rgba(255, 68, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: var(--neon-text-color);
            text-shadow: 0 0 5px var(--neon-text-color);
        }

        @media (max-width: 480px) {
            .share-modal {
                width: 95%;
                padding: 20px;
            }

            .share-modal .neon-title {
                font-size: 20px;
            }

            .share-buttons {
                gap: 10px;
                padding: 0 10px;
            }

            .share-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .share-url {
                flex-direction: column;
            }

            .share-url input {
                width: 100%;
                margin-bottom: 10px;
            }

            .copy-button {
                width: 100%;
            }
        }

        .similar-games {
            padding: 20px;
            margin: 20px 0;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }

        .similar-games h2 {
            text-align: center;
            color: #fff;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            justify-content: center;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            transform: translateY(-5px);
        }

        .game-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .game-card h3 {
            color: #fff;
            margin: 10px 0;
            font-size: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.4em;
        }

        .game-tags {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .game-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .play-btn {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: auto;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            margin-left: auto;
            margin-right: auto;
        }

        .play-btn:hover {
            background: #45a049;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .games-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .game-card {
                padding: 10px;
            }
            
            .game-card img {
                height: 120px;
            }
            
            .game-card h3 {
                font-size: 16px;
            }
            
            .game-tags {
                font-size: 12px;
            }
            
            .play-btn {
                padding: 6px 15px;
                font-size: 14px;
                width: 70px;
            }
        }

        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 回到游戏按钮样式 */
        .back-to-game {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ff4444;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 9999;
            border: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-game i {
            font-size: 20px;
        }

        .back-to-game:hover {
            background: #ff5555;
        }

        .back-to-game:active {
            background: #ff3333;
        }

        @media (max-width: 768px) {
            .back-to-game {
                width: 45px;
                height: 45px;
            }
            .back-to-game i {
                font-size: 18px;
            }
        }

        /* 分类导航样式 */
        .categories-section {
            padding: 40px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 40px 0;
        }

        .categories-section h2 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .categories-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 40px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 200px;
        }

        .category-card h3 {
            color: #fff;
            margin: 0;
            font-size: 18px;
            font-weight: normal;
        }

        .category-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .categories-section {
                padding: 20px 10px;
            }

            .categories-section h2 {
                font-size: 24px;
            }

            .category-card {
                padding: 15px 30px;
                min-width: 150px;
            }

            .category-card h3 {
                font-size: 16px;
            }
        }

        /* 面包屑导航样式 */
        .breadcrumb-nav {
            padding: 20px 0;
            font-size: 18px;
            margin: 20px 0;
        }

        .breadcrumb-nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--neon-text-color);
        }

        .breadcrumb-nav .separator {
            color: #666;
            margin: 0 10px;
        }

        .breadcrumb-nav .current {
            color: var(--neon-text-color);
        }

        /* About部分样式 */
        .about-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            margin: 20px 0;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .about-content {
            color: #fff;
            font-size: 18px;
            line-height: 1.6;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .breadcrumb-nav {
                font-size: 16px;
                padding: 15px 0;
            }

            .about-section h1 {
                font-size: 28px;
            }

            .about-content {
                font-size: 16px;
            }
        }

        /* Play New Games 样式 */
        .new-games-section {
            padding: 40px 0;
            margin: 40px 0;
        }

        .new-games-section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #fff;
            font-weight: bold;
            text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
        }

        .new-games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 0 20px;
        }

        .new-game-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .new-game-card:hover {
            transform: translateY(-5px);
        }

        .new-game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .new-game-content {
            padding: 15px;
        }

        .new-game-content h3 {
            color: #333;
            margin: 0 0 10px 0;
            font-size: 18px;
            font-weight: bold;
        }

        .new-game-content .game-tags {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        @media (max-width: 1200px) {
            .new-games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .new-games-section h2 {
                font-size: 24px;
            }

            .new-game-card img {
                height: 150px;
            }

            .new-game-content h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .new-games-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 评分模块样式 */
        .rating-section {
            background: linear-gradient(135deg, rgba(45, 45, 55, 0.8), rgba(55, 55, 65, 0.9));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            margin: 40px 0;
            width: 100%;
        }

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

        .rating-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .rating-label {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .stars {
            display: flex;
            gap: 5px;
        }

        .stars i {
            color: #ffd700;
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.2s ease;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .stars i:hover {
            transform: scale(1.2);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        }

        .rating-score {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .rating-votes {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 768px) {
            .rating-content {
                flex-wrap: wrap;
                gap: 10px;
            }

            .rating-label {
                font-size: 16px;
            }

            .stars i {
                font-size: 18px;
            }

            .rating-score {
                font-size: 16px;
            }

            .rating-votes {
                font-size: 14px;
            }
        }

        /* 游戏卡片响应式布局优化 */
        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: 1fr;
                padding: 0 10px;
            }
            
            .game-card {
                margin-bottom: 15px;
            }
            
            .game-card img {
                height: 180px;
            }
            
            .game-container {
                margin: 10px 0;
                height: 400px;
                padding-right: 0;
            }
            
            .game-content {
                padding: 10px;
            }
            
            .game-logo {
                width: 150px;
            }
            
            .game-content h1 {
                font-size: 24px;
            }
            
            .play-button {
                padding: 12px 30px;
                font-size: 16px;
            }
        }

        /* 返回顶部按钮优化 */
        @media (max-width: 768px) {
            .back-to-game {
                bottom: 70px;
                right: 10px;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                opacity: 0.8;
                z-index: 999;
            }

            .back-to-game i {
                font-size: 16px;
            }

            .game-toolbar {
                padding: 0 10px;
            }

            .toolbar-actions {
                gap: 8px;
            }

            .toolbar-button {
                padding: 6px;
            }
        }

        /* 新游戏模块响应式优化 */
        @media (max-width: 480px) {
            .new-games-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 10px;
            }

            .new-game-card {
                margin-bottom: 15px;
            }

            .new-games-section h2 {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }

        /* 分类导航响应式优化 */
        @media (max-width: 480px) {
            .categories-grid {
                gap: 10px;
            }

            .category-card {
                padding: 12px 20px;
                min-width: 100%;
            }

            .categories-section {
                padding: 20px 10px;
                margin: 20px 0;
            }
        }

        /* 评分模块响应式优化 */
        @media (max-width: 480px) {
            .rating-section {
                padding: 15px 0;
            }

            .rating-content {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }

            .stars {
                margin: 5px 0;
            }
        }

        /* 内容区域响应式优化 */
        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            .section {
                padding: 15px;
                margin: 15px 0;
            }

            .section h2 {
                font-size: 20px;
            }

            .breadcrumb-nav {
                font-size: 14px;
                padding: 10px 0;
            }
        }

        /* 分享模态框响应式优化 */
        @media (max-width: 480px) {
            .share-modal {
                width: 95%;
                padding: 20px;
            }

            .share-buttons {
                gap: 10px;
            }

            .share-button {
                width: 40px;
                height: 40px;
            }
        }

        .game-container {
            position: relative;
            width: 100%;
            height: 600px;
            margin: 20px 0;
            overflow: hidden;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .game-bg {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: blur(20px);
            z-index: -1;
            transform: scale(1.1);
            opacity: 0.8;
        }

        .game-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 20px;
        }

        .game-logo {
            width: 200px;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .game-content h1 {
            color: white;
            font-size: 32px;
            margin: 15px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .play-button {
            display: inline-block;
            text-decoration: none;
            text-align: center;
            padding: 15px 30px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            animation: shakeButton 2s ease-in-out infinite;
            position: relative;
        }

        @keyframes shakeButton {
            0%, 100% {
                transform: translateX(0) scale(1);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px) scale(1.05);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px) scale(1.05);
            }
        }

        .play-button:hover {
            animation: none;
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background-color: #45a049;
        }

        .play-button:active {
            transform: translateY(0) scale(0.95);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Play New Games 样式 */
        .new-games-section {
            padding: 40px 0;
            margin: 40px 0;
        }

        .new-games-section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #fff;
            font-weight: bold;
            text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
        }

        .new-games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 0 20px;
        }

        .new-game-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .new-game-card:hover {
            transform: translateY(-5px);
        }

        .new-game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .new-game-content {
            padding: 15px;
        }

        .new-game-content h3 {
            color: #333;
            margin: 0 0 10px 0;
            font-size: 18px;
            font-weight: bold;
        }

        .new-game-content .game-tags {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        @media (max-width: 1200px) {
            .new-games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .new-games-section h2 {
                font-size: 24px;
            }

            .new-game-card img {
                height: 150px;
            }

            .new-game-content h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .new-games-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 更新游戏工具栏样式 */
        .game-toolbar {
            position: relative;
            padding: 10px;
            z-index: 10;
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
        }

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

        .toolbar-button {
            background: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .toolbar-button:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        .toolbar-button i {
            font-size: 18px;
        }

        /* 移动端适配 */
        @media screen and (max-width: 768px) {
            .toolbar-button {
                width: 35px;
                height: 35px;
            }
            
            .toolbar-button i {
                font-size: 16px;
            }
            
            .toolbar-actions {
                gap: 10px;
            }
        }

        /* 分享模态框样式 */
        .share-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.95);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 68, 0, 0.3);
            z-index: 1000;
            width: 90%;
            max-width: 500px;
            border: 1px solid var(--neon-border-color);
        }

        .share-modal .neon-title {
            color: #fff;
            text-align: center;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 24px;
            text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-text-color);
            font-family: 'Audiowide', cursive;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .share-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .share-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1DA1F2; }
        .share-reddit { background: #ff4500; }
        .share-pinterest { background: #e60023; }
        .share-whatsapp { background: #25d366; }
        .share-telegram { background: #0088cc; }

        .share-url {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .share-url input {
            flex: 1;
            padding: 10px;
            border: 1px solid var(--neon-border-color);
            border-radius: 5px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .copy-button {
            padding: 10px 20px;
            background: var(--neon-text-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .copy-button:hover {
            background: #ff5500;
            box-shadow: 0 0 10px rgba(255, 68, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: var(--neon-text-color);
            text-shadow: 0 0 5px var(--neon-text-color);
        }

        @media (max-width: 480px) {
            .share-modal {
                width: 95%;
                padding: 20px;
            }

            .share-modal .neon-title {
                font-size: 20px;
            }

            .share-buttons {
                gap: 10px;
                padding: 0 10px;
            }

            .share-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .share-url {
                flex-direction: column;
            }

            .share-url input {
                width: 100%;
                margin-bottom: 10px;
            }

            .copy-button {
                width: 100%;
            }
        }

        /* 遮罩层样式 */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* 评论区样式 */
        .comments-section {
            margin-top: 40px;
        }

        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
        }

        .comment-form input[type="text"],
        .comment-form input[type="email"],
        .comment-form textarea {
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
            outline: none;
            transition: all 0.3s ease;
        }

        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .terms-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .terms-checkbox label {
            cursor: pointer;
            user-select: none;
        }

        .comment-submit {
            background: var(--neon-text-color);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .comment-submit:hover {
            background: #ff5500;
            box-shadow: 0 0 10px rgba(255, 68, 0, 0.5);
        }

        /* 评论列表样式 */
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .comment-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            position: relative;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comment-number {
            background: var(--neon-text-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .comment-author {
            color: #fff;
            font-weight: bold;
        }

        .comment-date {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .comment-content {
            color: #fff;
            margin: 10px 0;
            line-height: 1.5;
        }

        .comment-actions {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .comment-action {
            display: flex;
            align-items: center;
            gap: 5px;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .comment-action:hover {
            color: var(--neon-text-color);
        }

        .comment-action.active {
            color: var(--neon-text-color);
        }

        /* 回复表单样式 */
        .reply-form {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: none;
        }

        .reply-form.active {
            display: block;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .comment-form {
                padding: 15px;
            }

            .comment-submit {
                width: 100%;
                padding: 10px;
            }

            .comment-item {
                padding: 15px;
            }

            .comment-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .comment-actions {
                flex-wrap: wrap;
            }
        }

        /* 添加焦点状态样式 */
        .comment-form input[type="text"]:focus,
        .comment-form input[type="email"]:focus,
        .comment-form textarea:focus {
            border-color: var(--neon-text-color);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 5px rgba(255, 68, 0, 0.3);
        }

        /* 更新复选框样式 */
        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .terms-checkbox label {
            cursor: pointer;
            user-select: none;
        }

        /* 确保评论区域在最上层 */
        .comments-section {
            position: relative;
            z-index: 10;
        }

        /* 确保表单元素可以接收输入 */
        .comment-form {
            position: relative;
            z-index: 11;
        }

        /* 修复回复表单样式 */
        .reply-form .comment-form {
            margin-bottom: 0;
            padding: 15px;
        }

        /* 添加占位符文本颜色 */
        .comment-form input::placeholder,
        .comment-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* 禁用状态样式 */
        .comment-form input:disabled,
        .comment-form textarea:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* 添加页脚样式 */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 1px solid var(--neon-border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer a:hover {
            color: var(--neon-text-color);
            text-shadow: 0 0 5px var(--neon-text-color);
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }

        /* Auto Clicker 页面特定样式 */
        .auto-clicker-page .game-container {
            height: 400px;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(20,20,20,0.9));
        }

        .auto-clicker-page .game-container::before {
            background: url('../images/sc.jpg') no-repeat center center;
            opacity: 0.4;
        }

        .auto-clicker-page .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .auto-clicker-page .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .auto-clicker-page .feature-card:hover {
            transform: translateY(-5px);
        }

        .auto-clicker-page .feature-card i {
            font-size: 32px;
            color: var(--neon-text-color);
            margin-bottom: 15px;
        }

        .auto-clicker-page .screenshots-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(1, 1fr);
            margin: 20px 0;
        }

        @media (min-width: 576px) {
            .auto-clicker-page .screenshots-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .auto-clicker-page .screenshots-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .auto-clicker-page .screenshot-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }

        .auto-clicker-page .screenshot-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .auto-clicker-page .screenshot-card p {
            margin: 0;
            font-size: 0.9em;
            color: #fff;
        }

        .auto-clicker-page .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .auto-clicker-page .step {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .auto-clicker-page .benefits-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .auto-clicker-page .benefits-list li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

        .auto-clicker-page .benefits-list li::before {
            content: '✓';
            color: var(--neon-text-color);
            position: absolute;
            left: 0;
        }

        @media (max-width: 768px) {
            .auto-clicker-page .game-container {
                height: 300px;
            }
            
            .auto-clicker-page .features-grid,
            .auto-clicker-page .screenshots-grid,
            .auto-clicker-page .steps-container {
                grid-template-columns: 1fr;
            }
            
            .auto-clicker-page .screenshot-card img {
                height: 120px;
            }
        }
    