:root {
            --bg: #030303;
            --blue: #0a84ff;
            --purple: #bf5af2;
            --cyan: #5ac8fa;
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        body { font-family: 'Inter', -apple-system, sans-serif; background-color: #000000; color: #ffffff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
        .aura { position: fixed; border-radius: 50%; filter: blur(140px); z-index: 0; pointer-events: none; opacity: 0.1; }
        .aura-1 { width: 600px; height: 600px; top: -200px; right: -200px; background: var(--blue); }
        .aura-2 { width: 700px; height: 700px; bottom: -200px; left: -200px; background: var(--purple); }
        
        .text-multi-gradient { 
            background: linear-gradient(to bottom, #ffffff 40%, rgba(255,255,255,0.7) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            padding: 0.2em 0.2em;
            margin: -0.2em -0.2em;
        }
        
        .glow-box { position: relative; }
        .glow-box::before {
            content: ''; position: absolute; inset: -1px; background: linear-gradient(90deg, var(--blue), var(--purple), var(--cyan), var(--blue));
            background-size: 400% 400%; z-index: -1; border-radius: inherit; opacity: 0; transition: opacity 0.5s; animation: border-glow 8s linear infinite;
        }
        .glow-box:hover::before { opacity: 0.3; }
        @keyframes border-glow { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

        .campaign-badge-vibrant {
            background: linear-gradient(90deg, #00f2fe, #4facfe);
            color: #000; padding: 12px 32px; border-radius: 100px; font-weight: 900; font-size: 13px;
            letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 12px;
            box-shadow: 0 0 40px rgba(0, 242, 254, 0.4); position: relative; overflow: hidden;
        }
        .campaign-badge-vibrant::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); animation: shimmer-fast 2.5s infinite; }
        @keyframes shimmer-fast { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

        .btn-action { background: #ffffff; color: #000000; padding: 22px 54px; border-radius: 100px; font-weight: 900; font-size: 19px; transition: 0.4s; cursor: pointer; border: none; }
        .btn-action:hover { transform: scale(1.05); background: var(--blue); color: #fff; box-shadow: 0 20px 60px -10px var(--blue); }

        .neon-blue { color: var(--blue); text-shadow: 0 0 15px rgba(10, 132, 255, 0.4); }
        .neon-purple { color: var(--purple); text-shadow: 0 0 15px rgba(191, 90, 242, 0.4); }
        .neon-cyan { color: var(--cyan); text-shadow: 0 0 15px rgba(90, 200, 250, 0.4); }

        .spotlight { position: fixed; width: 800px; height: 800px; background: radial-gradient(circle, rgba(10, 132, 255, 0.05) 0%, transparent 70%); pointer-events: none; z-index: 1; transform: translate(-50%, -50%); }

        .data-stream { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 0; opacity: 0.05; }
        .data-line { position: absolute; background: linear-gradient(90deg, transparent, var(--blue), transparent); height: 1px; width: 200px; animation: move-stream 10s linear infinite; }
        @keyframes move-stream { from { left: -200px; } to { left: 100%; } }

        @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

        .scanline {
            width: 100%; height: 100px; z-index: 10;
            background: linear-gradient(0deg, rgba(10, 132, 255, 0) 0%, rgba(10, 132, 255, 0.05) 50%, rgba(10, 132, 255, 0) 100%);
            position: absolute; top: 0; left: 0;
            animation: scan 4s linear infinite; pointer-events: none;
        }
        @keyframes scan { from { transform: translateY(-100%); } to { transform: translateY(100vh); } }