:root {
            --bg-color: #06080c;
            --panel-bg: #0b0e17;
            --panel-border: #161b26;
            --text-main: #ffffff;
            --text-muted: #949eb3;
            --safe-blue: #0066ff;
            --safe-blue-glow: rgba(0, 102, 255, 0.4);
            --neon-cyan: #00f1fe;
            --premium-gradient: linear-gradient(135deg, #030a1e 0%, #002d99 50%, #0055ff 100%);
        }

         html {
            scroll-behavior: smooth;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

       

        /* Branding Header CSS - Edge to Edge with Rounded Logo */
        .studio-header {
            width: 100%;
            padding: 0; /* Pura chipkane ke liye padding zero kiya */
            background: transparent;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 100;
        }
        
        .header-container {
            width: 100%;
            max-width: 100%; /* Kahi bhi extra space na chhute */
            margin: 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
        
        .brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding: 10px 15px; /* Sirf logo aur text ke aaspas safe spacing */
            background: rgba(0, 0, 0, 0.2); /* Halka background taaki text har banner par visible rahe */
            border-bottom-right-radius: 12px; /* Bottom corner ko smooth round look dene ke liye */
            transition: transform 0.2s ease, background-color 0.2s ease;
        }
        
        .brand-link:hover {
            transform: scale(1.02);
            background: rgba(0, 0, 0, 0.4);
        }
        
        .brand-logo-wrapper {
            width: 42px; /* Outline ke sath balance karne ke liye halka sa size badhaya */
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%; /* Logo container ko perfect round karne ke liye */
            border: 2px solid #ffffff; /* Premium white outline */
            overflow: hidden; /* Image corners ko andar round rakhne ke liye */
            background: #000000; /* Agar background transparent ho toh fallback fill */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Premium soft shadow */
        }
        
        .brand-logo {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Round space ko perfectly fill karne ke liye contain se cover kiya */
            border-radius: 50%;
        }
        
        /* Fallback Icon adjustment */
        .brand-fallback-icon {
            font-size: 22px;
            color: var(--neon-cyan);
        }
        
        .brand-name {
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Mobile Screen Compatibility */
        @media (max-width: 480px) {
            .brand-link {
                padding: 8px 12px;
            }
            .brand-name {
                font-size: 1.15rem;
            }
            .brand-logo-wrapper {
                width: 34px;
                height: 34px;
                border-width: 1.5px; /* Mobile par thoda patla border aur clean lagega */
            }
        }



        /* --- ADVANCED HERO BANNER (HIGH-TECH SAFE SHIELD) --- */
        .hero-banner {
            width: 100%;
            background-color: lab(26.8% 66.85 -90.76);
            padding: 70px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner i.main-shield {
            font-size: 4.2rem;
            color: var(--neon-cyan);
            margin-bottom: 10px;
        }

        .hero-banner h1 {
            font-size: 2rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .hero-banner p {
            color: hsla(221, 61%, 93%, 0.873);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 35px auto;
            line-height: 1.6;
            font-weight: 350;
        }



        /* --- NAVIGATION TABS --- */
        .legal-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .legal-nav a {
            background-color: rgba(6, 8, 12, 0.85);
            color: #fff;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            border: 1px solid rgba(0, 241, 254, 0.4);
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .legal-nav a:hover {
            background-color: var(--neon-cyan);
            color: #06080c;
            box-shadow: 0 0 25px rgba(0, 241, 254, 0.6);
            transform: translateY(-3px);
            border-color: #fff;
        }



        /* --- CONTAINER WRAPPER --- */
        .container {
            width: 100%;
            max-width: 1000px;
            padding: 40px 20px;
            flex: 1;
        }

        /* --- ACCORDION-FREE EXTENDED CARDS --- */
        .legal-card {
            background-color: var(--panel-bg);
            border: 1px solid var(--panel-border);
            border-radius: 16px;
            padding: 45px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            scroll-margin-top: 40px;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 18px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 20px;
            margin-bottom: 25px;
        }

        .card-header i {
            font-size: 2.2rem;
            color: var(--safe-blue);
            filter: drop-shadow(0 0 8px var(--safe-blue-glow));
        }

        .card-header h2 {
            font-size: 1.8rem;
            letter-spacing: 1.5px;
            color: #fff;
        }

        /* --- TYPOGRAPHY (EASY TO READ & DETAILED) --- */
        .legal-body {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .legal-body h3 {
            color: #fff;
            margin: 35px 0 15px 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
        }

        .legal-body h3 i {
            color: var(--neon-cyan);
            font-size: 1.1rem;
        }

        .legal-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .legal-body ul {
            list-style: none;
            margin: 20px 0;
            padding-left: 5px;
        }

        .legal-body ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: rgba(255, 255, 255, 0.01);
            padding: 12px 16px;
            border-radius: 8px;
            border-left: 3px solid var(--neon-cyan);
        }

        .legal-body ul li i {
            color: var(--neon-cyan);
            margin-top: 5px;
            font-size: 1rem;
        }

        .legal-body a {
            color: var(--neon-cyan);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .legal-body a:hover {
            color: #fff;
            text-decoration: underline;
        }

    

        /* --- PREMIUM FOOTER STYLE --- */
        footer {
            width: 100%;
            background-color: #030508;
            border-top: 1px solid var(--panel-border);
            padding: 50px 20px;
            margin-top: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-brand {
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-brand span {
            color: var(--neon-cyan);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 500px;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--panel-bg);
            border: 1px solid var(--panel-border);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: #06080c;
            background-color: var(--neon-cyan);
            border-color: #fff;
            box-shadow: 0 0 15px var(--neon-cyan);
            transform: translateY(-3px);
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: #535c6e;
            letter-spacing: 0.5px;
        }

        /* --- ANIMATIONS --- */
        @keyframes shieldPulse {
            0% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.04); opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 241, 254, 0.9)); }
            100% { transform: scale(1); opacity: 0.9; }
        }