
        .games-container {
            padding: 80px 80px 60px 80px;
        }

        .games-header {
            margin-bottom: 60px;
            animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .games-header h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .games-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
        }

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

        .game-card {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .game-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-thumbnail {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #ec4899, #a78bfa);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }

        .game-thumbnail::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .game-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .game-title {
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .game-description {
            color: var(--text-secondary);
            font-size: 13px;
            margin-bottom: 15px;
            flex: 1;
            line-height: 1.5;
        }

        .game-stats {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 12px;
        }

        .stat {
            color: rgba(209, 213, 219, 0.8);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .play-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .play-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
        }

        .play-btn:active {
            transform: scale(0.98);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .filter-section {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.1);
            color: var(--text-secondary);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 8px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s ease;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .filter-btn:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: var(--secondary-color);
            color: var(--text-primary);
        }

        @media (max-width: 1024px) {
            .games-container { padding: 50px 40px; }
            .games-header h1 { font-size: 44px; }
        }

        @media (max-width: 768px) {
            .games-container { padding: 40px 20px; }
            .games-header { margin-bottom: 40px; }
            .games-header h1 { font-size: 32px; }
            .games-header p { font-size: 15px; }
            .games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .filter-section {
                gap: 8px;
                flex-wrap: wrap;
            }
            .filter-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            .game-thumbnail {
                height: 180px;
                font-size: 60px;
            }
            .game-info {
                padding: 20px;
            }
            .game-title {
                font-size: 18px;
            }
            .game-description {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .games-container { padding: 30px 15px; }
            .games-header h1 { font-size: 26px; }
            .games-header p { font-size: 14px; }
            .game-thumbnail {
                height: 150px;
                font-size: 50px;
            }
            .game-info {
                padding: 15px;
            }
            .play-btn {
                padding: 10px;
                font-size: 13px;
            }
        }
