.elementor-527 .elementor-element.elementor-element-29b2ef9{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4a6b233 */:root {
            --accent: #38BDF8;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.18);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --bg-color: #020617;
            --glass-surface: rgba(255, 255, 255, 0.03);
            --accent-cyan: #22d3ee;
            --accent-blue: #3b82f6;
            --navy: #163253;
            --text-secondary: #94a3b8;
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Outfit', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.8;
            scroll-behavior: smooth;
        }

        h1, h2, h3 { font-family: 'Orbitron', sans-serif; }

        /* ===== STARRY BACKGROUND ===== */
        .bg-stars {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: 0; pointer-events: none; overflow: hidden;
        }
        .star-layer { position: absolute; top: 0; left: 0; width: 2px; height: 2px; background: transparent; }
        .star-layer-1 {
            box-shadow: 10vw 20vh #fff, 40vw 10vh #fff, 60vw 50vh #fff, 80vw 30vh #fff, 
                        20vw 80vh #fff, 90vw 70vh #fff, 50vw 90vh #fff, 30vw 40vh #fff, 
                        70vw 80vh #fff, 15vw 50vh #fff, 85vw 15vh #fff, 55vw 20vh #fff,
                        35vw 70vh #fff, 75vw 60vh #fff, 5vw 95vh #fff, 95vw 45vh #fff;
            animation: twinkle 4s infinite alternate;
        }
        .star-layer-2 {
            width: 3px; height: 3px;
            box-shadow: 15vw 15vh var(--accent-cyan), 45vw 60vh var(--accent-cyan), 
                        75vw 25vh var(--accent-cyan), 85vw 85vh var(--accent-cyan), 
                        25vw 75vh var(--accent-cyan), 5vw 35vh var(--accent-cyan),
                        65vw 10vh var(--accent-cyan), 95vw 90vh var(--accent-cyan);
            animation: twinkle 3s infinite alternate-reverse;
        }
        .shooting-star {
            position: absolute; top: 10vh; right: 10vw; width: 150px; height: 2px;
            background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 1));
            transform: rotate(-45deg); animation: shooting 6s linear infinite; opacity: 0;
        }
        .shooting-star::after {
            content: ''; position: absolute; right: 0; top: -4px; width: 10px; height: 10px;
            background: #fff; border-radius: 50%; box-shadow: 0 0 15px 5px rgba(56, 189, 248, 0.8);
        }
        .shooting-star-2 { top: 30vh; right: -10vw; animation-delay: 3s; animation-duration: 8s; }
        .shooting-star-3 { top: -10vh; right: 40vw; animation-delay: 5s; animation-duration: 7s; }
        @keyframes twinkle { 0% { opacity: 0.2; transform: scale(0.8); } 100% { opacity: 0.8; transform: scale(1.2); } }
        @keyframes shooting { 0% { transform: translate(0, 0) rotate(-45deg); opacity: 0; } 10% { opacity: 1; } 20% { transform: translate(-100vw, 100vw) rotate(-45deg); opacity: 0; } 100% { opacity: 0; } }

        /* ===== NAVIGATION ===== */
        .ht-nav {
            position: absolute; top: 0; left: 0; right: 0; padding: 20px 40px;
            display: flex; justify-content: space-between; align-items: center; z-index: 100;
        }
        .ht-logo { font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-main); text-decoration: none; }
        .ht-logo span { color: var(--accent); }
        .ht-btn {
            background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); padding: 10px 24px;
            color: var(--text-main); border-radius: 8px; text-decoration: none; backdrop-filter: blur(10px);
            transition: all 0.3s ease; font-size: 14px; font-weight: 500;
        }
        .ht-btn:hover { background: rgba(255, 255, 255, 0.15); }

        /* ===== LEGAL DOC CSS ===== */
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 140px 20px 80px;
            position: relative;
            z-index: 2;
        }

        .legal-card {
            background: var(--glass-surface);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 50px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .legal-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .legal-header h1 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            background: linear-gradient(135deg, var(--accent-cyan), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .legal-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            color: #fff;
            margin: 40px 0 20px;
        }

        .legal-content h2:first-child {
            margin-top: 0;
        }

        .legal-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .legal-content ul {
            color: var(--text-secondary);
            margin-bottom: 20px;
            padding-left: 20px;
            font-size: 1.05rem;
        }

        .legal-content li {
            margin-bottom: 10px;
        }
        
        .legal-content a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .legal-content a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .legal-card { padding: 30px; }
            .ht-nav { padding: 15px 20px; }
        }/* End custom CSS */