
        body {
            font-family: 'Urbanist', sans-serif;
            background-color: #0f0f10;
        }
        .bg-mesh-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .bg-blob {
            position: absolute;
            width: 70vw;
            height: 70vw;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.15;
            mix-blend-mode: screen;
        }
        .blob-1 { background: #bf2b38; top: -20%; right: -10%; animation: blob 25s infinite alternate; }
        .blob-2 { background: #bf2b38; bottom: -20%; left: -10%; animation: blob 30s infinite alternate-reverse; opacity: 0.1; }
        @keyframes blob {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 50px) scale(1.1); }
            100% { transform: translate(-50px, 100px) scale(0.9); }
        }
        .btn-premium {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn-premium:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(191, 43, 56, 0.5);
        }
        .btn-premium:active { transform: scale(0.98); }
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-card:hover {
            background: rgba(191, 43, 56, 0.05);
            border-color: rgba(191, 43, 56, 0.3);
            transform: translateY(-4px);
        }
        .glow-button {
            transition: all 0.3s ease;
        }
        .glow-button:hover {
            box-shadow: 0 0 20px rgba(191, 43, 56, 0.4);
            transform: scale(1.02);
        }
        .mesh-gradient {
            background-image: 
                radial-gradient(at 0% 0%, hsla(355, 63%, 46%, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, hsla(355, 63%, 46%, 0.1) 0px, transparent 50%);
        }
    
