
        :root {
            --circus-red: #E31E24;
            --circus-gold: #FFD700;
            --circus-dark: #1A1A2E;
            --circus-blue: #16213E;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
            color: #E8E8E8;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--circus-red) 0%, var(--circus-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-pattern {
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        }
        
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(227, 30, 36, 0.2);
        }
        
        .mobile-cta-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            z-index: 50;
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
        }
        
        .mobile-cta-button.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        
        .burger-menu {
            display: none;
        }
        
        @media (max-width: 768px) {
            .burger-menu {
                display: block;
            }
            
            .desktop-nav {
                display: none;
            }
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
            transition: right 0.3s ease;
            z-index: 100;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .toc-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .toc-content.expanded {
            max-height: 800px;
        }
        
        .badge-license {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #1A1A2E;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        th {
            background: rgba(227, 30, 36, 0.2);
            font-weight: 600;
            color: var(--circus-gold);
        }
        
        tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 90;
        }
        
        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }
