:root {
            --bg-dark: #0a0a0a;
            --bg-card: #121212;
            --primary-red: #ff0000;
            --glow-red: rgba(255, 77, 77, 0.4);
            --text-light: #ffffff;
            --text-dim: #b0b0b0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }
        body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        nav { padding: 1rem 10%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 1000; }
        .nav-logo { font-size: 1.2rem; font-weight: 900; letter-spacing: -1px; }
        .nav-links { display: flex; align-items: center; gap: 10px; }
        .btn-nav { font-size: 0.7rem; padding: 10px 18px; white-space: nowrap; display: inline-block; animation: hyperGlow 2s infinite alternate;}
        .hero { padding: 80px 10% 60px; text-align: center; display: flex; flex-direction: column; align-items: center; background: radial-gradient(circle at center, #1a0505 0%, #0a0a0a 100%); }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 0 0 20px rgba(255, 77, 77, 0.2); }
        .hero span { color: var(--primary-red); }
        .shield-container { position: relative; width: 150px; height: 150px; margin-bottom: 2rem; display: flex; justify-content: center; align-items: center; }
        .shield-icon { font-size: 80px; color: var(--primary-red); z-index: 2; filter: drop-shadow(0 0 10px var(--primary-red)); }
        .pulse-ring { position: absolute; border: 2px solid var(--primary-red); border-radius: 50%; height: 100%; width: 100%; animation: pulse 2s ease-out infinite; opacity: 0; }
        .live-status { display: flex; justify-content: center; gap: 30px; padding: 15px; background: #000; border-bottom: 1px solid #222; font-size: 0.75rem; color: #666; }
        .status-item { display: flex; align-items: center; gap: 8px; }
        .dot { width: 6px; height: 6px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 10px #00ff00; animation: blink 1.5s infinite; }
        .bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 60px 10%; }
        .bento-item { background: var(--bg-card); border: 1px solid #222; padding: 30px; border-radius: 12px; transition: 0.3s; }
        .bento-item:hover { border-color: var(--primary-red); box-shadow: 0 0 20px var(--glow-red); transform: translateY(-5px); }
        .quick-start-section { padding: 80px 10%; background: #050505; border-top: 1px solid #222; border-bottom: 1px solid #222; text-align: center; }
        .quick-start-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
        .quick-start-section p { color: var(--text-dim); margin-bottom: 40px; }
        .explorer-container { display: flex; background: #000; border-radius: 12px; border: 1px solid #333; overflow: hidden; height: 450px; text-align: left;box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .explorer-sidebar { width: 240px; background: #0a0a0a; border-right: 1px solid #222; padding: 20px; font-size: 0.9rem; }
        .sidebar-label { color: #444; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
        .file { padding: 8px 12px; cursor: pointer; color: var(--text-dim); display: flex; align-items: center; gap: 10px; border-radius: 6px; margin-bottom: 4px; transition: 0.2s; }
        .file.active { animation: hyperGlow 2s infinite alternate;background: rgba(255, 77, 77, 0.1); color: var(--primary-red); font-weight: 600; }
        .explorer-content { flex: 1; padding: 40px; font-family: 'Consolas', 'Fira Code', monospace; font-size: 1rem; overflow-y: auto; background-image: radial-gradient(circle at top right, rgba(255, 77, 77, 0.05), transparent); }
        .playground { padding: 80px 10%; text-align: center; }
        .slider-container { margin: 40px 0; }
        ::-webkit-scrollbar { width: 5px; height: 5px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: var(--primary-red); border-radius: 10px; }
        .explorer-sidebar::-webkit-scrollbar, 
        .explorer-content::-webkit-scrollbar, 
        .api-tabs::-webkit-scrollbar,
        .code-block::-webkit-scrollbar { width: 4px; height: 4px; }
        input[type=range] { -webkit-appearance: none; width: 50%; background: transparent; cursor: pointer; }
        input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; background: #222; border-radius: 2px; }
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 18px; width: 18px; border-radius: 50%; background: var(--primary-red); box-shadow: 0 0 10px var(--glow-red); margin-top: -7px; border: none; }
        * { scrollbar-width: thin; scrollbar-color: var(--primary-red) #000; }
        input[type=range]::-moz-range-thumb { height: 18px; width: 18px; border-radius: 50%; background: var(--primary-red); border: none; }
        .mode-label { font-weight: 800; color: var(--primary-red); font-size: 1.2rem; letter-spacing: 2px; }
        .btn { background: var(--primary-red); color: white; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: 700; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 10px rgba(255, 0, 0, 0.8),  0 0 25px rgba(255, 0, 0, 0.4), 0 0 45px rgba(255, 0, 0, 0.1); text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); }
        .btn:hover { transform: translateY(-3px); background: #ff1a1a; box-shadow: 0 0 20px rgba(255, 0, 0, 1),  0 0 40px rgba(255, 0, 0, 0.6),  0 0 70px rgba(255, 0, 0, 0.3); }
        .nav-item { color: var(--text-dim); text-decoration: none; font-size: 0.75rem; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: 0.3s; }
        .nav-item:hover { color: #fff; background: rgba(255, 0, 0, 0.2); box-shadow: inset 0 0 12px rgba(255, 0, 0, 0.3),  0 0 15px rgba(255, 0, 0, 0.4); }
        .red-text { color: var(--primary-red); }
        .code-block { background: #000; padding: 30px; border-radius: 12px; margin: 40px auto; max-width: 800px; border: 1px solid #333; font-family: 'Consolas', monospace; overflow-x: auto; }
        .trust-ribbon { background: rgba(255, 255, 255, 0.02); padding: 25px 10%; display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid #222; }
        .badge { font-size: 0.75rem; font-weight: 700; color: #666; display: flex; align-items: center; gap: 8px; letter-spacing: 1px; }
        .badge i { color: var(--primary-red); opacity: 0.7; }
        .api-docs-section { padding: 80px 10%; background: #0a0a0a; border-top: 1px solid #222; }
        .api-tabs { display: flex; gap: 10px; margin-bottom: 40px; border-bottom: 1px solid #222; padding-bottom: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .tab-btn { background: transparent; border: 1px solid #333; color: var(--text-dim); padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: 0.3s; font-size: 0.85rem; white-space: nowrap; }
        .tab-btn.active { background: rgba(255, 0, 0, 0.15); border-color: var(--primary-red); color: var(--primary-red); box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), inset 0 0 10px rgba(255, 0, 0, 0.2);}
        .api-page { display: none; animation: fadeIn 0.4s ease; }
        .api-page.active { display: block; }
        .api-resource-block { margin-bottom: 40px; background: var(--bg-card); border: 1px solid #222; border-radius: 12px; padding: 40px; }
        .api-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 25px; }
        .specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
        .specs-table td { padding: 12px 0; border-bottom: 1px solid #1a1a1a; }
        .type-def { font-family: monospace; color: #569cd6; font-size: 0.8rem; }
        .tech-note { background: #000; padding: 20px; border-radius: 8px; border-left: 3px solid var(--primary-red); }
        .tech-note h4 { font-size: 0.7rem; text-transform: uppercase; color: #666; margin-bottom: 10px; }
        .tech-note p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.4; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulse { 0% { transform: scale(0.6); opacity: 0; } 50% { opacity: 0.5; } 100% { transform: scale(1.2); opacity: 0; } }
        @keyframes blink { 50% { opacity: 0.3; } }
        @keyframes hyperGlow { from { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2); }to { box-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.4); } }

        /* --- MOBILE RESPONSIVE OVERRIDES --- */
        @media (max-width: 768px) {
            nav, .hero, .bento-grid, .quick-start-section, .trust-ribbon, .api-docs-section, footer, .playground { padding-left: 5%; padding-right: 5%; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 0.9rem; }
            .live-status { flex-direction: column; gap: 10px; align-items: center; text-align: center; }
            .explorer-container { flex-direction: column; height: auto; }
            .explorer-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #222; display: flex; overflow-x: auto; gap: 10px; padding: 15px; }
            .explorer-sidebar .sidebar-label { display: none; }
            .explorer-sidebar .file { white-space: nowrap; margin-bottom: 0; }
            .explorer-content { padding: 20px; font-size: 0.85rem; min-height: 300px; }
            .api-grid-layout { grid-template-columns: 1fr; gap: 20px; }
            .api-resource-block { padding: 25px; }
            .trust-ribbon { gap: 20px; }
            .badge { font-size: 0.65rem; }
            input[type=range] { width: 100%; }
        }