 /* ============================================
           Reset & Base
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --font-display: 'Playfair Display', serif;
            --font-heading: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-nepali: 'Noto Sans Devanagari', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-serif: 'Crimson Pro', serif;
            
            --bg-page: #f8fafc;
            --bg-card: #ffffff;
            --bg-dark: #0f172a;
            --bg-code: #1e293b;
            
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --text-light: #f8fafc;
            
            --border-light: #e2e8f0;
            --border-medium: #cbd5e1;
            
            --accent-purple: #8b5cf6;
            --accent-pink: #ec4899;
            --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ============================================
           Hero Section - Split Layout
           ============================================ */
        .hero {
            padding: 60px 24px 80px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
        }

        .hero-logo {
            width: 260px;
            height: auto;
            margin-bottom: 28px;
            filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.2));
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            transition: all 0.2s;
        }

        .hero-badge:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--shadow-md);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .badge-version { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: white; border: none; }
        .badge-license { background: linear-gradient(135deg, #10b981, #059669); color: white; border: none; }
        .badge-cdn { background: linear-gradient(135deg, #f97316, #ea580c); color: white; border: none; }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero-title {
            font-family: var(--font-nepali);
            font-size: clamp(48px, 7vw, 72px);
            font-weight: 900;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-description {
            font-family: var(--font-serif);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 480px;
            font-style: italic;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .hero-btn i {
            width: 20px;
            height: 20px;
        }

        .hero-btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }

        .hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
        }

        .hero-btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 2px solid var(--border-light);
        }

        .hero-btn-secondary:hover {
            border-color: var(--accent-purple);
            color: var(--accent-purple);
        }

        /* Hero Right - Try It Now */
        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .try-it-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .try-it-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-gradient);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }

        .try-it-icon i {
            width: 24px;
            height: 24px;
            color: white;
        }

        .try-it-title {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .demo-grid {
            display: grid;
            gap: 16px;
        }

        .demo-item {
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: all 0.2s;
        }

        .demo-item:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--shadow-lg);
        }

        .demo-item.dark {
            background: var(--bg-dark);
            border-color: #334155;
        }

        .demo-item.dark:hover {
            border-color: var(--accent-purple);
        }

        .demo-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }

        .demo-item.dark .demo-label {
            color: #64748b;
        }

        .demo-label i {
            width: 16px;
            height: 16px;
        }

        /* ============================================
           Navigation
           ============================================ */
        .nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            padding: 16px 24px;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: all 0.2s;
        }

        .nav-link:hover {
            background: var(--bg-page);
            color: var(--accent-purple);
        }

        .nav-link i {
            width: 18px;
            height: 18px;
        }

        /* ============================================
           Sections
           ============================================ */
        .section {
            padding: 80px 24px;
            border-bottom: 1px solid var(--border-light);
        }

        .section:last-of-type {
            border-bottom: none;
        }

        .section-alt {
            background: var(--bg-card);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: var(--accent-gradient);
            border-radius: var(--radius-lg);
            margin-bottom: 20px;
            box-shadow: var(--shadow-md);
        }

        .section-icon i {
            width: 28px;
            height: 28px;
            color: white;
        }

        .section-title {
            font-family: 'Kaushan Script', cursive;
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 10px;
        }


        .section-subtitle {
            font-family: var(--font-serif);
            font-size: 17px;
            font-style: italic;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }

        /* ============================================
           Features Section - Table Style
           ============================================ */
        .features-table {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .features-column {
            background: var(--bg-page);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            overflow: hidden;
        }

        .section-alt .features-column {
            background: var(--bg-card);
        }

        .features-column-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 24px;
            background: var(--accent-gradient);
            color: white;
        }

        .features-column-header .fa-icon {
            font-size: 20px;
        }

        .features-column-header h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
        }

        .features-list {
            padding: 8px 0;
        }

        .feature-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.2s;
        }

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-row:hover {
            background: rgba(139, 92, 246, 0.04);
        }

        .feature-icon-box {
            width: 36px;
            height: 36px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-box i {
            font-size: 16px;
            color: var(--accent-purple);
        }

        .feature-content {
            flex: 1;
        }

        .feature-name {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .feature-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ============================================
           Installation Tabs
           ============================================ */
        .install-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 0;
            padding: 8px;
            background: var(--bg-page);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            border: 1px solid var(--border-light);
            border-bottom: none;
        }

        .section-alt .install-tabs {
            background: var(--bg-card);
        }

        .install-tab {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .install-tab i {
            width: 18px;
            height: 18px;
        }

        .install-tab:hover {
            color: var(--accent-purple);
        }

        .install-tab.active {
            background: var(--accent-gradient);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .install-content {
            display: none;
        }

        .install-content.active {
            display: block;
        }

        /* ============================================
           Code Blocks
           ============================================ */
        .code-block {
            background: var(--bg-code);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin: 0 0 24px;
        }

        .code-block.no-top-radius {
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }

        .code-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .code-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .code-dots {
            display: flex;
            gap: 6px;
        }

        .code-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .code-dot-red { background: #ef4444; }
        .code-dot-yellow { background: #fbbf24; }
        .code-dot-green { background: #22c55e; }

        .code-title {
            font-family: var(--font-mono);
            font-size: 13px;
            color: #94a3b8;
        }

        .code-copy {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.08);
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: #94a3b8;
            cursor: pointer;
            transition: all 0.2s;
        }

        .code-copy:hover {
            background: rgba(255, 255, 255, 0.12);
            color: white;
        }

        .code-copy i {
            width: 14px;
            height: 14px;
        }

        .code-content {
            padding: 18px;
            overflow-x: auto;
        }

        .code-content pre {
            margin: 0;
            font-family: var(--font-mono);
            font-size: 13px;
            line-height: 1.7;
            color: #e2e8f0;
        }

        .code-content .comment { color: #64748b; }
        .code-content .keyword { color: #f472b6; }
        .code-content .string { color: #67e8f9; }
        .code-content .function { color: #fbbf24; }
        .code-content .property { color: #a78bfa; }

        /* ============================================
           Showcase Box (Used in Demos)
           ============================================ */
        .showcase-box {
            max-width: 900px;
            margin: 0 auto;
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .section-alt .showcase-box {
            background: var(--bg-page);
        }

        .showcase-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 28px;
        }

        .showcase-icon {
            width: 44px;
            height: 44px;
            background: var(--accent-gradient);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }

        .showcase-icon i {
            width: 22px;
            height: 22px;
            color: white;
        }

        .showcase-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .showcase-item {
            padding: 20px;
            background: var(--bg-page);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .section-alt .showcase-item {
            background: var(--bg-card);
        }

        .showcase-item:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--shadow-md);
        }

        .showcase-item.dark {
            background: var(--bg-dark);
            border-color: #334155;
        }

        .showcase-item.dark:hover {
            border-color: var(--accent-purple);
        }

        .showcase-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }

        .showcase-item.dark .showcase-label {
            color: #64748b;
        }

        .showcase-label i {
            width: 16px;
            height: 16px;
        }

        /* Theme colored icons */
        .showcase-label.ocean i { color: #06b6d4; }
        .showcase-label.forest i { color: #10b981; }
        .showcase-label.sunset i { color: #f97316; }
        .showcase-label.rose i { color: #f43f5e; }

        /* ============================================
           Options Table
           ============================================ */
        .table-wrapper {
            overflow-x: auto;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            background: var(--bg-card);
        }

        .section-alt .table-wrapper {
            background: var(--bg-page);
        }

        .options-table {
            width: 100%;
            border-collapse: collapse;
        }

        .options-table th,
        .options-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }

        .options-table th {
            background: var(--bg-page);
            font-family: var(--font-heading);
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-alt .options-table th {
            background: var(--bg-card);
        }

        .options-table td {
            font-family: var(--font-body);
            font-size: 14px;
        }

        .options-table tr:last-child td {
            border-bottom: none;
        }

        .options-table tbody tr:hover {
            background: rgba(139, 92, 246, 0.03);
        }

        .option-name {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-purple);
            background: rgba(139, 92, 246, 0.1);
            padding: 3px 8px;
            border-radius: var(--radius-sm);
        }

        .option-type {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
        }

        .option-default {
            font-family: var(--font-mono);
            font-size: 12px;
            color: #10b981;
        }

        /* ============================================
           Alert Box
           ============================================ */
        .alert {
            display: flex;
            gap: 14px;
            padding: 18px;
            border-radius: var(--radius-lg);
            margin: 24px 0;
        }

        .alert-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .alert-text {
            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.6;
        }

        .alert-text code {
            background: rgba(0,0,0,0.08);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: var(--font-mono);
            font-size: 12px;
        }

        .alert-info {
            background: #dbeafe;
            border: 1px solid #93c5fd;
        }
        .alert-info .alert-icon { color: #2563eb; }
        .alert-info .alert-title { color: #1e40af; }
        .alert-info .alert-text { color: #1e3a8a; }

        .alert-warning {
            background: #fef3c7;
            border: 1px solid #fcd34d;
        }
        .alert-warning .alert-icon { color: #d97706; }
        .alert-warning .alert-title { color: #92400e; }
        .alert-warning .alert-text { color: #78350f; }

        /* ============================================
           Browser Support
           ============================================ */
        .browser-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 24px;
        }

        .browser-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 28px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: all 0.2s;
        }

        .section-alt .browser-item {
            background: var(--bg-page);
        }

        .browser-item:hover {
            border-color: var(--accent-purple);
            transform: translateY(-2px);
        }

        .browser-icon {
            font-size: 28px;
            color: var(--text-secondary);
        }

        .browser-name {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .browser-status {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
        }

        .browser-status.supported {
            background: #dcfce7;
            color: #166534;
        }

        .browser-status.partial {
            background: #fef3c7;
            color: #92400e;
        }

        /* ============================================
           Footer
           ============================================ */
        .footer {
            padding: 60px 24px;
            background: var(--bg-dark);
            text-align: center;
        }

        .footer-logo {
            width: 120px;
            height: auto;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .footer-text {
            font-family: var(--font-serif);
            font-style: italic;
            color: #64748b;
            font-size: 15px;
            margin-bottom: 24px;
        }

        .footer-author {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            color: white;
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s;
        }

        .footer-author:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-purple);
        }

        .footer-author i {
            color: #ef4444;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 28px;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64748b;
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-link i {
            font-size: 16px;
        }

        .footer-star {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-star-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-body);
            color: #94a3b8;
            font-size: 14px;
        }

        .footer-star-text i {
            color: #fbbf24;
        }

        /* ============================================
           Responsive
           ============================================ */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .hero-left {
                align-items: center;
            }

            .hero-badges {
                justify-content: center;
            }

            .hero-description {
                margin: 0 auto 32px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .features-table {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 20px 60px;
                min-height: auto;
            }

            .hero-logo {
                width: 180px;
            }

            .section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 28px;
            }

            .nav {
                gap: 6px;
                padding: 12px 16px;
            }

            .nav-link {
                padding: 8px 12px;
                font-size: 13px;
            }

            .nav-link span {
                display: none;
            }

            .showcase-box {
                padding: 20px;
            }

            .showcase-grid {
                grid-template-columns: 1fr;
            }

            .install-tabs {
                flex-direction: column;
            }
        }