        html, body {
            scrollbar-width: none;
            -webkit-tap-highlight-color: transparent;
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        }
        ::-webkit-scrollbar {
            display: none;
        }
        .container {
            max-width: 1280px;
            width: 100%;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            margin-left: auto;
            margin-right: auto;
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-back {
            font-size: 1.5rem;
            color: #2563eb;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .nav-back:hover {
            color: #1e40af;
            transform: scale(1.1);
        }
        .nav-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            text-align: center;
            flex-grow: 1;
        }
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 1rem 0;
        }
        .app-card {
            width: 140px;
            margin: 0 auto;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .app-card:hover {
            transform: translateY(-4px);
        }
        .app-card .game-image {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 0.5rem;
        }
        .app-card h3 {
            font-size: 0.9rem;
            font-weight: 500;
            color: #1f2937;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .error-message {
            color: #dc2626;
            text-align: center;
            font-weight: 500;
            font-size: 1rem;
        }
        .loading-spinner {
            display: none;
        }
        .loading-spinner.active {
            display: flex;
        }
        @media (max-width: 768px) {
            .nav-title {
                font-size: 1.25rem;
            }
            .nav-back {
                font-size: 1.25rem;
            }
            .apps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            .app-card {
                width: 120px;
            }
            .app-card .game-image {
                width: 120px;
                height: 120px;
            }
            .app-card h3 {
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .nav-title {
                font-size: 1.1rem;
            }
            .nav-back {
                font-size: 1.1rem;
            }
            .apps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
            }
            .app-card {
                width: 100px;
            }
            .app-card .game-image {
                width: 100px;
                height: 100px;
            }
            .app-card h3 {
                font-size: 0.8rem;
            }
        }
        @keyframes fadeIn {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }