body {
            background-color: #f0f2f5;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            color: #1a202c;
        }

        .container {
            width: 100%;
            max-width: 400px;
            text-align: center;
        }
		
        h2 {
            color: #2d3748;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 30px 0;
        }
	

        .app-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-card {
            background: #2d3748;
            color: white !important;
            padding: 20px;
            border-radius: 18px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.2s, background-color 0.2s;
            border: none;
        }

        .app-card:hover {
            background-color: #1a202c;
            transform: translateY(-2px);
        }

        .app-card:active {
            transform: translateY(0);
        }

        /* Egy kis ikon-szerűség a szöveg elé (opcionális) */
        .app-card::before {
            content: '🚀';
            margin-right: 12px;
            font-size: 18px;
        }
        
        /* Egyedi ikonok az elnevezés alapján (példa) */
        a[href*="car"]::before { content: '🚗'; }
        a[href*="clock"]::before { content: '⌚'; }
        a[href*="js"]::before { content: '📜'; }
        a[href*="docs"]::before { content: '📂'; }
        a[href*="streaming"]::before { content: '📺'; }
        a[href*="strack"]::before { content: '📈'; }
