        /* Game detail page specific styles */
        @media (min-width: 769px) {
            .nav-links-extended {
                display: flex;
                gap: 12px;
                align-items: center;
                flex-wrap: wrap;
            }
            
            .nav-links-extended a {
                color: white;
                text-decoration: none;
                padding: 6px 10px;
                border-radius: 6px;
                transition: all 0.3s;
                font-size: 0.85em;
                white-space: nowrap;
            }
            
            .nav-links-extended a:hover {
                color: #f0c159;
                background: rgba(240, 193, 89, 0.1);
            }
            
            .nav-links-extended a.current {
                color: #f0c159;
                background: rgba(240, 193, 89, 0.2);
            }
        }
        
        /* 强制移动端样式 */
        @media (max-width: 768px) {
            .nav-links-extended {
                display: flex !important;
                flex-direction: column !important;
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                right: 0 !important;
                background: rgba(20, 20, 22, 0.95) !important;
                padding: 20px !important;
                border-radius: 0 0 12px 12px !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
                transform: translateY(-100%) !important;
                opacity: 0 !important;
                visibility: hidden !important;
                transition: all 0.3s ease !important;
                z-index: 1000 !important;
            }
            
            .nav-links-extended.active {
                transform: translateY(0) !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
            
            .nav-links-extended a {
                padding: 12px 16px !important;
                font-size: 0.9em !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
                text-align: center !important;
                color: white !important;
                text-decoration: none !important;
                border-radius: 0 !important;
            }
            
            .nav-links-extended a:last-child {
                border-bottom: none !important;
            }
            
            .nav {
                position: relative !important;
            }
            
            .mobile-menu-toggle {
                display: block !important;
                background: none !important;
                border: none !important;
                color: white !important;
                font-size: 1.5em !important;
                cursor: pointer !important;
                padding: 8px !important;
                border-radius: 6px !important;
            }
        }
        
        .game-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin: 40px 0;
            align-items: start;
        }
        
        .game-preview {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(240, 193, 89, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }
        
        .game-screen {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .game-screen::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(240, 193, 89, 0.1), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
        }
        
        .play-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .play-btn {
            background: linear-gradient(135deg, #f0c159, #ff6900);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 15px;
            font-weight: bold;
            text-decoration: none;
            font-size: 1.1em;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 193, 89, 0.4);
        }
        
        .play-btn.demo {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #f0c159;
        }
        
        .game-info {
            background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.05));
            border-radius: 20px;
            padding: 40px;
        }
        
        .game-title {
            color: #f0c159;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .game-subtitle {
            color: #abb8c3;
            font-size: 1.2em;
            margin-bottom: 30px;
        }
        
        .game-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .stat-value {
            color: #f0c159;
            font-size: 1.8em;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #abb8c3;
            font-size: 0.9em;
            text-transform: uppercase;
        }
        
        .jackpot-display {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
            border: 2px solid #ffd700;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            margin: 30px 0;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
            to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
        }
        
        .jackpot-amount {
            color: #ffd700;
            font-size: 2.5em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        
        .game-features {
            margin: 40px 0;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            color: #abb8c3;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1em;
        }
        
        .feature-list li::before {
            content: '⚡';
            font-size: 1.5em;
            color: #f0c159;
        }
        
        .game-description {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .game-description h3 {
            color: #f0c159;
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        
        .game-description p {
            color: #abb8c3;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .paytable {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .paytable h3 {
            color: #f0c159;
            font-size: 1.5em;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .symbol-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .symbol-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        
        .symbol-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
            display: block;
        }
        
        .symbol-name {
            color: #f0c159;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .symbol-payout {
            color: #abb8c3;
            font-size: 0.9em;
        }
        
        .similar-games {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .similar-game-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(240, 193, 89, 0.3);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .similar-game-card:hover {
            transform: translateY(-5px);
            border-color: #f0c159;
        }
        
        .similar-game-thumb {
            width: 100%;
            height: 120px;
            background: linear-gradient(135deg, #f0c159, #ff6900);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .reviews-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .review-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-author {
            color: #f0c159;
            font-weight: bold;
        }
        
        .review-rating {
            color: #ffd700;
        }
        
        .review-text {
            color: #abb8c3;
            line-height: 1.6;
        }
        
        .breadcrumb {
            color: #abb8c3;
            margin-bottom: 20px;
        }
        
        .breadcrumb a {
            color: #f0c159;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .nav-links-extended {
                display: none;
            }
            
            .game-hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .game-stats {
                grid-template-columns: 1fr;
            }
            
            .play-buttons {
                flex-direction: column;
                align-items: center;
            }
        }