        :root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --danger: #dc2626;
            --warning: #fbbf24;
            --bg-black: #000000;
            --bg-dark: #0a0a0a;
            --surface: #1a1a1a;
            --surface-light: #252525;
            --border: #2a2a2a;
            --border-light: #3a3a3a;
            --text: #ffffff;
            --text-muted: #a0a0a0;
            --text-dim: #707070;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-black);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.7;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
         /* Navbar */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
            padding-top: 20px;
            padding-bottom: 20px;
        }
        
        .navbar-custom.scrolled {
            box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
            border-bottom-color: var(--primary);
        }
        
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--text);
            text-decoration: none;
        }
        
        .logo-box {
            width: 200px;
            height: 70px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 1.3rem;
        }

        .logo-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .nav-link-custom {
            color: black !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        
        .nav-link-custom:hover {
            color: var(--primary) !important;
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
            color: white;
        }
        
        /* Hero Section */
        .disclaimer-hero {
            background: linear-gradient(135deg, var(--danger) 0%, #b91c1c 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 35px,
                rgba(255, 255, 255, 0.03) 35px,
                rgba(255, 255, 255, 0.03) 70px
            );
        }
        
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .breadcrumb-custom a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .breadcrumb-custom a:hover {
            opacity: 0.8;
        }
        
        /* Critical Warning Banner */
        .warning-banner {
            background: rgba(220, 38, 38, 0.1);
            border: 2px solid var(--danger);
            border-radius: 24px;
            padding: 3rem;
            margin: -60px auto 60px;
            max-width: 900px;
            position: relative;
            z-index: 10;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
        }
        
        .warning-icon {
            width: 80px;
            height: 80px;
            background: var(--danger);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Content Sections */
        .disclaimer-section {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .disclaimer-section:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
            transform: translateY(-5px);
        }
        
        .disclaimer-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary);
        }
        
        .disclaimer-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .disclaimer-section strong {
            color: var(--text);
            font-weight: 700;
        }
        
        .disclaimer-section ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .disclaimer-section li {
            padding-left: 2rem;
            margin-bottom: 1rem;
            position: relative;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .disclaimer-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Risk Category Cards */
        .risk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .risk-card {
            background: var(--surface-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }
        
        .risk-card:hover {
            border-color: var(--danger);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
        }
        
        .risk-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--danger);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .risk-card ul {
            list-style: none;
            padding: 0;
        }
        
        .risk-card li {
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            position: relative;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        .risk-card li::before {
            content: '⚠️';
            position: absolute;
            left: 0;
            font-size: 1rem;
        }
        
        /* Contact Info Box */
        .contact-box {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
            border: 1px solid var(--primary);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .contact-box p {
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }
        
        .contact-box a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .contact-box a:hover {
            color: var(--warning);
            text-decoration: underline;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-dark);
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }
        
        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-link:hover {
            color: var(--primary);
        }
        
        /* Reading Progress Bar */
        .progress-bar-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--danger) 100%);
            z-index: 9999;
            transition: width 0.1s ease;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .disclaimer-hero {
                padding: 100px 0 60px;
            }
            
            .warning-banner {
                margin: -40px 1rem 40px;
                padding: 2rem;
            }
            
            .disclaimer-section {
                padding: 2rem;
            }
            
            .risk-grid {
                grid-template-columns: 1fr;
            }
        }