/* =========================================
           CORE TOKENS & RESET (Design System)
           ========================================= */
        :root {
            --bg-dark: #09090b;
            --text-white: #FFFFFF;
            --accent-secondary: #ccff00; /* Acid Green signature touch */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .font-mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* Ambient Noise Overlay for Premium Depth */
        .bg-noise {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 50;
            pointer-events: none;
            mix-blend-mode: overlay;
            opacity: 0.15;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Frosted Glass Card - Ultra Premium Light Theme */
        .frosted-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,1); /* Clean thick glass rim */
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.5); /* Ambient shadow */
            transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
        }
        .frosted-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.9);
            border-color: rgba(204,255,0,0.8); /* Signature Acid Green frame on hover */
        }
        /* Efeito reflexo do vidro no hover tracking mouse */
        .frosted-card::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 60%);
            top: var(--mouse-y, -350px);
            left: var(--mouse-x, -350px);
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }
        .frosted-card:hover::after {
            opacity: 1;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes blob {
            0% { transform: translate(0px, 0px) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        /* =========================================
           HERO ANIMATION CLASSES
           ========================================= */
        @keyframes slideUpFade {
            0% { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(15px); }
            100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
        }

        .motion-enter {
            opacity: 0;
            animation: slideUpFade 1.6s var(--ease-out-expo) forwards;
        }

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-500 { animation-delay: 0.5s; }

        @keyframes revealUp {
            0% { transform: translateY(110%) rotate(2deg); opacity: 0; }
            100% { transform: translateY(0) rotate(0deg); opacity: 1; }
        }

        .text-reveal-wrapper {
            overflow: hidden;
            display: inline-flex;
            line-height: 1.1;
            vertical-align: bottom;
            padding-bottom: 0.1em;
            margin-bottom: -0.1em;
        }

        .text-reveal-content {
            display: inline-block;
            transform-origin: top left;
            opacity: 0;
            animation: revealUp 1.4s var(--ease-out-expo) forwards;
        }

        /* Aura Transparent Stroke Effect */
        .text-transparent-stroke {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
            transition: all 0.6s ease;
            position: relative;
        }

        .text-transparent-stroke::before {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            color: #fff;
            overflow: hidden;
            -webkit-text-stroke: 0;
            white-space: nowrap;
            /* Auto-fill em load para o efeito inicial premium */
            animation: fillStroke 1.8s var(--ease-out-expo) forwards;
            animation-delay: 1s;
        }

        @keyframes fillStroke {
            0% { width: 0; }
            100% { width: 100%; }
        }

        /* =========================================
           UI COMPONENTS (Botões Premium)
           ========================================= */
        .beam-btn {
            position: relative;
            overflow: hidden;
            border-radius: 999px;
            padding: 2.5px; /* Define a grossura da linha (aumentada em 2.5x) */
            background: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            display: inline-flex;
            transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
            text-decoration: none;
            box-shadow: 0 0 15px -5px rgba(204, 255, 0, 0.15); /* Glow base super sutil em verde */
        }
        
        .beam-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 50px -5px rgba(204, 255, 0, 0.6), inset 0 0 20px rgba(204,255,0,0.2); /* Explosão de glow verde ao focar */
        }

        .beam-btn-content {
            background: #fff;
            color: #000;
            padding: 18px 46px;
            border-radius: 999px;
            position: relative;
            z-index: 2;
            transition: background 0.4s;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }

        .beam-btn:hover .beam-btn-content {
            background: #fafafa;
        }

        .beam-spinner {
            position: absolute;
            inset: -50%;
            width: 200%;
            height: 200%;
            /* Rastro do spinner agora é prolongado e tem uma ponta muito mais brilhante (efeito neon) */
            background: conic-gradient(from 0deg, transparent 0 220deg, rgba(204, 255, 0, 0.5) 320deg, var(--accent-secondary) 360deg);
            animation: spin 2.2s linear infinite; /* Spin estético um pouquinho mais rápido */
            filter: blur(1px); /* Espalha levemente as cores da borda criando aura neon */
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Custom Scrollbar minimalista */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #555; }

/* Extracted Styles */

video::-webkit-media-controls { display: none !important; }
        video::-webkit-media-controls-enclosure { display: none !important; }
        video::-webkit-media-controls-panel { display: none !important; }