        body {
            font-family: 'Inter', sans-serif;
            background: radial-gradient(circle at top, #1e3a8a 0%, #0B1C2C 100%);
            min-height: 100vh;
        }
        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .glass:hover {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(63, 169, 245, 0.5);
            box-shadow: 0 0 20px rgba(63, 169, 245, 0.2);
            transform: translateY(-2px);
        }
        /* Destaque para Hostinger */
        .hostinger-featured {
            border: 1px solid rgba(103, 61, 230, 0.6);
            background: rgba(103, 61, 230, 0.1);
            animation: pulse-hostinger 2s infinite;
        }
        @keyframes pulse-hostinger {
            0% { box-shadow: 0 0 5px rgba(103, 61, 230, 0.2); }
            50% { box-shadow: 0 0 20px rgba(103, 61, 230, 0.4); }
            100% { box-shadow: 0 0 5px rgba(103, 61, 230, 0.2); }
        }
        .logo-glow {
            box-shadow: 0 0 30px rgba(63, 169, 245, 0.3);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }