        .games-container {
            padding: 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(--secondary-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(280px, 1fr));
            gap: 25px;
        }

        .game-card {
            background: rgba(31, 41, 55, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            position: relative;
            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(99, 102, 241, 0.2), rgba(236, 72, 153, 0.15));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .game-card:hover {
            transform: translateY(-8px);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
        }

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

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

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

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

        .game-info {
            padding: 20px;
            position: relative;
            z-index: 1;
        }

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

        .game-size {
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 15px;
        }

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

        .download-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }

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

        @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;
            }
            .game-thumbnail {
                height: 150px;
                font-size: 50px;
            }
            .game-info {
                padding: 15px;
            }
            .game-title {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .games-container { padding: 30px 15px; }
            .games-header h1 { font-size: 26px; }
            .games-header p { font-size: 14px; }
            .game-thumbnail {
                height: 130px;
                font-size: 40px;
            }
            .download-btn {
                padding: 8px;
                font-size: 12px;
            }
        }
