        :root {
            --bg: #000000;
            --card: rgba(255,255,255,.03);
            --card-hover: rgba(255,255,255,.05);
            --border: rgba(255,255,255,.08);
            --text: #ffffff;
            --muted: #86868b;
            --accent: #10b981;
            --accent-yellow: #fbbf24;
            --accent-red: #ef4444;
            --warning: #f59e0b;
            --glow: rgba(16, 185, 129, 0.4);
            --ease: cubic-bezier(.4,0,.2,1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 50%;
            left: 50%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, var(--glow), transparent 70%);
            transform: translate(-50%, -50%);
            opacity: .12;
            animation: pulse 8s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes pulse {
            0%, 100% { opacity: .12; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: .2; transform: translate(-50%, -50%) scale(1.08); }
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        nav {
            position: sticky;
            top: 0;
            background: rgba(0,0,0,.7);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            animation: slideIn 0.6s var(--ease);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform .3s var(--ease);
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }

        .nav-links {
            display: flex;
            gap: .5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            padding: .65rem 1rem;
            border-radius: 10px;
            font-size: .95rem;
            font-weight: 500;
            transition: all .3s var(--ease);
        }

        .nav-links a:hover {
            color: var(--text);
            background: rgba(255,255,255,.06);
        }

        .nav-links a.active {
            color: #fff;
            background: var(--accent);
        }

        .hero {
            text-align: center;
            padding: 5rem 2rem 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -.02em;
            animation: fadeUp 0.8s var(--ease) 0.2s both;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--muted);
            margin-bottom: 2rem;
            animation: fadeUp 0.8s var(--ease) 0.3s both;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 600px;
            margin: 2rem auto;
            animation: fadeUp 1s var(--ease) .4s both;
        }

        .stat-card {
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all .3s var(--ease);
        }

        .stat-card:hover {
            border-color: rgba(255,255,255,.15);
            transform: translateY(-2px);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: .25rem;
        }

        .stat-label {
            font-size: .9rem;
            color: var(--muted);
            font-weight: 500;
        }

        .content-container {
            max-width: 1200px;
            margin: 2rem auto 4rem;
            padding: 0 2rem;
            animation: fadeUp 0.8s var(--ease) 0.5s both;
        }

        .category-section {
            margin-bottom: 4rem;
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .dependency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .dependency-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.25rem;
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all .3s var(--ease);
        }

        .dependency-item:hover {
            border-color: rgba(255,255,255,.15);
            transform: translateY(-2px);
        }

        .dependency-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .dependency-item a {
            color: var(--accent);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            transition: color .3s var(--ease);
        }

        .dependency-item a:hover {
            color: var(--accent-yellow);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 3rem 0 2rem;
            text-align: center;
            color: var(--text);
        }

        .license-box {
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all .3s var(--ease);
        }

        .license-box:hover {
            border-color: rgba(255,255,255,.12);
        }

        .license-box.arklynn {
            border-color: rgba(16, 185, 129, 0.3);
            background: rgba(16, 185, 129, 0.05);
        }

        .license-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .license-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .license-tag {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--accent);
            padding: .4rem 1rem;
            border-radius: 20px;
            font-size: .85rem;
            font-weight: 600;
        }

        .license-tag.proprietary {
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: var(--accent-yellow);
        }

        .license-text {
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.6;
            white-space: pre-wrap;
            max-height: 200px;
            overflow-y: auto;
            padding: 1rem;
            background: rgba(0,0,0,.3);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,.05);
        }

        .license-text::-webkit-scrollbar {
            width: 8px;
        }

        .license-text::-webkit-scrollbar-track {
            background: rgba(255,255,255,.02);
            border-radius: 4px;
        }

        .license-text::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,.1);
            border-radius: 4px;
        }

        .license-text::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,.15);
        }

        footer {
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-top: 1px solid var(--border);
            background: rgba(255,255,255,.02);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 3rem;
        }

        .footer-section {
            flex: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            margin-bottom: .75rem;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            border-radius: 12px;
        }

        .footer-logo span {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-by {
            color: var(--muted);
            font-size: .9rem;
            margin-bottom: 1rem;
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: rgba(255,255,255,.6);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: .95rem;
            transition: color .3s var(--ease);
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        .footer-links i {
            width: 16px;
            font-size: .85rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--muted);
            font-size: .9rem;
        }

        @media (max-width: 968px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .dependency-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: .75rem;
            }
        }

        @media (max-width: 768px) {
            .nav-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero {
                padding: 3rem 1.5rem 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
            
            .content-container {
                padding: 0 1rem;
            }
            
            .license-box {
                padding: 1.5rem;
            }
        }