 /* Custom styles that can't be done with Tailwind */
        .game-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: none;
            justify-content: center;
            align-items: center;
        }
        
        .game-popup iframe {
            width: 90%;
            height: 90%;
            border: none;
            border-radius: 10px;
        }
        
        .close-game-popup {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        .age-verification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            display: none;
        }
        
        .cookie-consent-overlay {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 9998;
            display: none;
        }
        
        .game-card {
            transition: transform 0.3s ease;
        }
        
        .game-card:hover {
            transform: scale(1.05);
        }
        
        .blur-effect {
            filter: blur(5px);
            pointer-events: none;
        }
