        /* Modern Reset & Base Styles */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif; 
            background-color: #0b0b0e; 
            color: #f5f5f7; 
            text-align: center; 
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 80px 20px 40px 20px;
            overflow-x: hidden;
        }

        /* Subtle Animated Cyber Background Glow */
        body::before {
            content: '';
            position: absolute;
            top: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        /* Main Container */
        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Badge Styling */
        .format-badge { 
            display: inline-flex; 
            align-items: center;
            background: rgba(0, 242, 254, 0.1); 
            border: 1px solid rgba(0, 242, 254, 0.3);
            padding: 6px 14px; 
            border-radius: 20px; 
            font-family: 'SF Mono', Menlo, monospace; 
            color: #00f2fe; 
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        /* Typography */
        h1 { 
            font-size: 4rem; 
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 16px; 
            background: linear-gradient(135deg, #ffffff 30%, #a1a1a6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .tagline { 
            font-size: 1.4rem; 
            color: #86868b; 
            max-width: 580px; 
            margin: 0 auto 40px auto; 
            line-height: 1.5;
            font-weight: 400;
        }

        /* High-Tech Glowing CTA Button */
        .btn-glow { 
            position: relative;
            display: inline-block; 
            background: linear-gradient(135deg, #0072ff 0%, #00f2fe 100%);
            color: #000; 
            padding: 18px 42px; 
            font-weight: 700; 
            border-radius: 12px; 
            text-decoration: none; 
            font-size: 1.2rem; 
            letter-spacing: -0.01em;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 0 rgba(0, 242, 254, 0);
        }
        
        .btn-glow:hover { 
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 242, 254, 0.3);
            color: #000;
        }

        .btn-glow:active {
            transform: translateY(1px);
        }

        /* Explicit Legal Disclaimer & Strict AI Boundary Context */
        footer {
            margin-top: 100px;
            border-top: 1px solid #222;
            padding-top: 30px;
        }

        .disclaimer-box {
            max-width: 650px;
            margin: 0 auto;
            background: #131316;
            border: 1px solid #222;
            border-radius: 8px;
            padding: 20px;
            text-align: left;
        }

        .disclaimer-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #e5c158;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .disclaimer-text {
            font-size: 0.85rem;
            color: #636366;
            line-height: 1.6;
        }

        /* Responsive scaling for mobile devices */
        @media (max-width: 600px) {
            h1 { font-size: 2.8rem; }
            .tagline { font-size: 1.1rem; }
            .btn-glow { width: 100%; padding: 16px 20px; }
        }
