        /* Casino 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;
            }
        }
        
        .casino-hero {
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(240, 193, 89, 0.1));
            border: 2px solid #dc143c;
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .casino-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.1), transparent);
            animation: shine 4s infinite;
        }
        
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 0, 0, 0.2);
            border: 2px solid #ff0000;
            border-radius: 25px;
            padding: 10px 20px;
            margin: 20px 0;
            animation: pulse 2s infinite;
        }
        
        .live-dot {
            width: 12px;
            height: 12px;
            background: #ff0000;
            border-radius: 50%;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }
        
        .casino-games {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .casino-game-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(240, 193, 89, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .casino-game-card:hover {
            transform: translateY(-10px);
            border-color: #f0c159;
            box-shadow: 0 15px 35px rgba(240, 193, 89, 0.3);
        }
        
        .casino-game-card.featured {
            border-color: #dc143c;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(220, 20, 60, 0.05));
        }
        
        .casino-game-card.featured::after {
            content: 'MAIS POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: #dc143c;
            color: white;
            padding: 5px 40px;
            font-size: 0.8em;
            font-weight: bold;
            transform: rotate(45deg);
        }
        
        .game-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
        }
        
        .game-title {
            color: #f0c159;
            font-size: 1.8em;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .game-description {
            color: #abb8c3;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .game-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }
        
        .game-features li {
            color: #abb8c3;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .game-features li::before {
            content: '🎯';
            font-size: 1.2em;
        }
        
        .live-tables {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
        }
        
        .table-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .table-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(240, 193, 89, 0.3);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .table-card:hover {
            transform: translateY(-5px);
            border-color: #f0c159;
        }
        
        .table-card.vip {
            border-color: #ffd700;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
        }
        
        .table-card.vip::before {
            content: 'VIP';
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffd700;
            color: #000;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: bold;
        }
        
        .table-preview {
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            margin-bottom: 15px;
            position: relative;
        }
        
        .table-info {
            margin-bottom: 15px;
        }
        
        .table-name {
            color: #f0c159;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .table-limits {
            color: #abb8c3;
            font-size: 0.9em;
            margin-bottom: 5px;
        }
        
        .table-players {
            color: #00d084;
            font-size: 0.9em;
            font-weight: bold;
        }
        
        .dealers-section {
            background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.05));
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
        }
        
        .dealers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .dealer-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .dealer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .dealer-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f0c159, #ff6900);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2em;
        }
        
        .dealer-name {
            color: #f0c159;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .dealer-specialty {
            color: #abb8c3;
            font-size: 0.9em;
            margin-bottom: 10px;
        }
        
        .dealer-rating {
            color: #ffd700;
        }
        
        .vip-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
            border: 2px solid #ffd700;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
        }
        
        .vip-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .vip-benefit {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
        }
        
        .vip-benefit .icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: #ffd700;
        }
        
        .vip-benefit h4 {
            color: #ffd700;
            margin-bottom: 10px;
        }
        
        .vip-benefit p {
            color: #abb8c3;
            font-size: 0.9em;
        }
        
        .promotions-banner {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 105, 0, 0.1));
            border: 2px solid #ff4444;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin: 40px 0;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 20px rgba(255, 68, 68, 0.3); }
            to { box-shadow: 0 0 30px rgba(255, 68, 68, 0.6); }
        }
        
        @media (max-width: 768px) {
            .nav-links-extended {
                display: none;
            }
            
            .casino-games {
                grid-template-columns: 1fr;
            }
            
            .table-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }