/* Source: public/contact.html */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F5;
            color: #2D3748;
        }

        .navbar {
            background: #3D4852;
            color: #E2E8F0;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
            z-index: 100;
        }
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .home-link {
            color: #E2E8F0;
            text-decoration: none;
            font-weight: 300;
            font-size: 3.75em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            line-height: 1;
        }
        .home-link:hover { opacity: 0.8; }
        .navbar-subtitle {
            color: #E2E8F0;
            font-size: 0.9em;
            margin-top: 0px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1.4;
        }
        .desktop-only { display: block; }
        .mobile-only { display: none; }
        .hamburger-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
        }
        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #E2E8F0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .nav-tabs {
            display: flex;
            gap: 0;
            align-items: center;
            margin-top: 8px;
        }
        .nav-tab {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 1em;
            font-weight: 400;
            padding: 6px 16px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .nav-tab:hover, .nav-tab.active {
            color: #FFFFFF;
            border-bottom-color: #D4A574;
        }
        .hamburger-menu-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        .hamburger-menu-overlay.visible { display: block; }
        .hamburger-menu-panel {
            display: none;
            position: fixed;
            top: 0; left: 0; bottom: 0;
            width: 280px;
            background: #2D3748;
            z-index: 1000;
            padding: 60px 20px 20px;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        }
        .hamburger-menu-panel.open { display: block; }
        .menu-section { margin-bottom: 24px; }
        .menu-section-title {
            color: #A0AEC0;
            font-size: 0.75em;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link {
            display: block;
            color: #E2E8F0;
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.95em;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link:hover { color: #D4A574; }

        .container {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 1.8em;
            font-weight: 300;
            color: #2D3748;
            margin-bottom: 8px;
        }

        .page-intro {
            color: #718096;
            font-size: 1.05em;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .contact-form {
            background: #FFFFFF;
            border: 1px solid #e8e0d4;
            border-radius: 4px;
            padding: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9em;
            color: #4A5568;
            margin-bottom: 6px;
        }

        .form-group label .required {
            color: #C53030;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 1em;
            border: 1px solid #CBD5E0;
            border-radius: 3px;
            background: #FAFAF8;
            color: #2D3748;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3D4852;
            background: #FFFFFF;
        }

        .form-group textarea {
            min-height: 160px;
            resize: vertical;
        }

        /* Honeypot - invisible to humans */
        .form-hp { position: absolute; left: -9999px; }

        .submit-btn {
            display: inline-block;
            background: #3D4852;
            color: #FFFFFF;
            border: none;
            padding: 12px 32px;
            font-family: 'Source Sans Pro', -apple-system, sans-serif;
            font-size: 1em;
            font-weight: 600;
            border-radius: 3px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .submit-btn:hover { background: #2D3748; }
        .submit-btn:disabled {
            background: #A0AEC0;
            cursor: not-allowed;
        }

        .form-status {
            margin-top: 16px;
            padding: 12px 16px;
            border-radius: 3px;
            display: none;
            font-size: 0.95em;
        }

        .form-status.success {
            display: block;
            background: #F0FFF4;
            border: 1px solid #C6F6D5;
            color: #276749;
        }

        .form-status.error {
            display: block;
            background: #FFF5F5;
            border: 1px solid #FED7D7;
            color: #C53030;
        }

        .footer {
            background: #3D4852;
            color: #E2E8F0;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            font-size: 0.9em;
        }
        .footer a { color: #E2E8F0; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
            .hamburger-menu-toggle { display: flex; }
            .container { padding: 24px 16px; }
            .contact-form { padding: 20px; }
            h1 { font-size: 1.5em; }
        }

/* Source: public/sources.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F5;
            color: #2D3748;
        }
        
        .navbar {
            background: #3D4852;
            color: #E2E8F0;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
            z-index: 100;
        }

        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .home-link {
            color: #E2E8F0;
            text-decoration: none;
            font-weight: 300;
            font-size: 3.75em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            line-height: 1;
        }

        .home-link:hover {
            opacity: 0.8;
        }

        .navbar-subtitle {
            color: #E2E8F0;
            font-size: 0.9em;
            margin-top: 0px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1.4;
        }

        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        .hamburger-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 350;
            position: absolute;
            left: 20px;
            top: 50%;
        }

        .hamburger-line {
            width: 24px;
            height: 3px;
            background-color: #E2E8F0;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu-toggle:hover .hamburger-line {
            background-color: white;
        }

        .hamburger-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .hamburger-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 250;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger-menu-overlay.visible {
            display: block;
            opacity: 1;
        }

        .hamburger-menu-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: #3D4852;
            box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
            z-index: 300;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }

        .hamburger-menu-panel.open {
            transform: translateX(0);
        }

        .menu-section {
            margin-bottom: 30px;
        }

        .menu-section:last-child {
            margin-bottom: 0;
        }

        .menu-section-title {
            color: #E2E8F0;
            font-size: 0.75em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .menu-link {
            display: block;
            color: #E2E8F0;
            text-decoration: none;
            padding: 12px 0;
            font-size: 1em;
            transition: color 0.3s;
        }

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

        .nav-tabs {
            display: flex;
            gap: 0;
            align-items: center;
            margin-top: 8px;
        }

        .nav-tab {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 1em;
            font-weight: 400;
            padding: 8px 18px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }

        .nav-tab:hover {
            color: white;
            border-bottom-color: #9A8555;
        }
        
        .container {
            max-width: 1200px;
            margin: 10px auto;
            padding: 0 20px;
        }
        
        .content-wrapper {
            padding: 20px 35px;
            position: relative;
        }
        
        h1 {
            color: #2D3748;
            border-bottom: 3px solid #9A8555;
            padding-bottom: 10px;
            margin-bottom: 15px;
            margin-top: 30px;
            font-size: 2em;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        
        .greek-title {
            font-size: 1.3rem;
            color: #718096;
            font-style: italic;
            margin-top: -10px;
            margin-bottom: 20px;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        
        h2 {
            color: #2D3748;
            border-bottom: 3px solid #9A8555;
            padding-bottom: 10px;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            font-size: 1.6em;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        
        p {
            margin-bottom: 1rem;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        
        .section-intro {
            font-size: 1rem;
            color: #718096;
            margin-bottom: 1.5rem;
        }
        
        .source-entry {
            margin-bottom: 2rem;
            padding: 15px 20px;
            background: #FFFFFF;
            border-radius: 6px;
            border: 1px solid #E2E8F0;
            border-left: 4px solid #9A8555;
            transition: all 0.3s;
        }
        
        .source-entry:hover {
            background: #F0F0EC;
            border-color: #E2E8F0;
            border-left-color: #9A8555;
            box-shadow: 0 2px 4px rgba(0,0,0,0.06);
        }
        
        .source-name {
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: #2D3748;
        }
        
        .source-name a {
            color: #9A8555;
            text-decoration: none;
        }
        
        .source-name a:hover {
            text-decoration: underline;
        }
        
        .source-institution {
            font-size: 0.95rem;
            color: #718096;
            margin-bottom: 0.5rem;
        }
        
        .source-description {
            font-size: 0.95rem;
            color: #2D3748;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .provenance-note {
            margin: 1.5rem 0 2rem 0;
            padding: 18px 22px;
            background: #FFFDF7;
            border: 1px solid #E2D8C0;
            border-left: 4px solid #9A8555;
            border-radius: 6px;
        }

        .provenance-note-heading {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #9A8555;
            margin-bottom: 0.6rem;
        }

        .provenance-note p {
            font-size: 0.97rem;
            color: #4A5568;
            margin-bottom: 0.6rem;
            line-height: 1.65;
        }

        .provenance-note p:last-child {
            margin-bottom: 0;
        }

        .source-license {
            font-size: 0.85rem;
            color: #718096;
            font-style: italic;
        }
        
        .license-badge {
            display: inline-block;
            background: #F7F7F5;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-style: normal;
            color: #4A5568;
            font-weight: 600;
            margin-right: 0.5rem;
            border: 1px solid #E2E8F0;
        }

        .example-stage-title {
            font-size: 1rem;
            font-weight: 700;
            color: #2D3748;
            margin: 1.25rem 0 0.5rem 0;
        }

        .ocr-intermediate {
            font-size: 1.05rem;
            line-height: 1.55;
            color: #2D3748;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-left: 4px solid #9A8555;
            border-radius: 6px;
            padding: 14px 16px;
        }

        .flow-frame {
            margin: 0.6rem 0 1.8rem 0;
            padding: 14px 14px 12px 14px;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-left: 4px solid #9A8555;
            border-radius: 6px;
        }

        .flow-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 12px;
            color: #4A5568;
            font-size: 0.95rem;
        }

        .flow-controls input[type="range"] {
            width: 180px;
        }

        .flow-controls output {
            min-width: 44px;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #2D3748;
        }

        .flow-viewport {
            width: 100%;
            max-width: 100%;
            min-width: 320px;
            resize: horizontal;
            overflow: auto;
            margin: 0 auto;
            padding: 8px 4px;
            border: 1px dashed #E2E8F0;
            border-radius: 4px;
            background: #FCFCFA;
        }

        .flow-row {
            display: grid;
            grid-template-columns: 72px 1fr;
            column-gap: 8px;
            margin-bottom: 10px;
        }

        .flow-row:last-child {
            margin-bottom: 0;
        }

        .flow-ref {
            text-align: center;
            color: #2D3748;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
            opacity: 0.35;
            transition: opacity 0.2s ease-in-out;
        }

        .flow-row:hover .flow-ref {
            opacity: 1;
        }

        .flow-text {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #2D3748;
        }

        .flow-hint {
            margin: 10px 0 0 0;
            font-size: 0.9rem;
            color: #718096;
        }
        
        .footer {
            background: #3D4852;
            color: #E2E8F0;
            text-align: center;
            padding: 30px 20px;
            margin-top: 40px;
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        
        .footer a {
            color: #E2E8F0;
            text-decoration: underline;
        }
        
        @media (max-width: 1024px) {
            .navbar-content {
                padding: 0 15px;
            }
            .home-link {
                font-size: 3em;
                gap: 6px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            .navbar-content {
                padding: 0 15px;
            }
            .hamburger-menu-toggle {
                display: flex;
            }
            .desktop-only {
                display: none !important;
            }
            .mobile-only {
                display: block;
            }
            .nav-center {
                width: 100%;
            }
            .home-link {
                font-size: 2.5em;
                gap: 6px;
            }
            .navbar-subtitle {
                font-size: 0.8em;
                padding-left: 0;
            }

            .content-wrapper {
                padding: 15px 20px;
            }

            h1 {
                font-size: 1.6em;
            }

            h2 {
                font-size: 1.3em;
            }

            .source-entry {
                padding: 12px 15px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 12px 0;
            }
            .navbar-content {
                padding: 0 10px;
                gap: 12px;
            }
            .home-link {
                font-size: 2em;
                gap: 8px;
            }
            .navbar-subtitle {
                font-size: 0.75em;
                padding-left: 0;
            }
            .hamburger-menu-toggle {
                width: 40px;
                height: 40px;
                padding: 8px;
            }
        }

        @media print {
            nav, .navbar, .navbar-content, .hamburger-menu-toggle, .hamburger-menu-overlay,
            .hamburger-menu-panel, .nav-links, .nav-tabs, footer, .footer {
                display: none !important;
            }
        }

/* Source: public/404.html */
        body {
            font-family: 'Gentium Plus', 'Source Sans Pro', Georgia, serif;
            max-width: 800px;
            margin: 100px auto;
            padding: 20px;
            text-align: center;
            color: #333;
        }
        h1 {
            font-size: 3em;
            color: #1a365d;
            margin-bottom: 0.5em;
        }
        p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 2em;
        }
        a {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }
        .greek {
            font-size: 2em;
            color: #4a5568;
            margin: 1em 0;
        }

/* Source: public/for-agents.html */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F5;
            color: #2D3748;
        }

        .navbar {
            background: #3D4852;
            color: #E2E8F0;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
            z-index: 100;
        }
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .home-link {
            color: #E2E8F0;
            text-decoration: none;
            font-weight: 300;
            font-size: 3.75em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            line-height: 1;
        }
        .home-link:hover { opacity: 0.8; }
        .navbar-subtitle {
            color: #E2E8F0;
            font-size: 0.9em;
            margin-top: 0px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1.4;
        }
        .desktop-only { display: block; }
        .hamburger-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
        }
        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #E2E8F0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .nav-tabs {
            display: flex;
            gap: 0;
            align-items: center;
            margin-top: 8px;
        }
        .nav-tab {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 1em;
            font-weight: 400;
            padding: 6px 16px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .nav-tab:hover, .nav-tab.active {
            color: #FFFFFF;
            border-bottom-color: #D4A574;
        }
        .hamburger-menu-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        .hamburger-menu-overlay.visible { display: block; }
        .hamburger-menu-panel {
            display: none;
            position: fixed;
            top: 0; left: 0; bottom: 0;
            width: 280px;
            background: #2D3748;
            z-index: 1000;
            padding: 60px 20px 20px;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        }
        .hamburger-menu-panel.open { display: block; }
        .menu-section { margin-bottom: 24px; }
        .menu-section-title {
            color: #A0AEC0;
            font-size: 0.75em;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link {
            display: block;
            color: #E2E8F0;
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.95em;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link:hover { color: #D4A574; }

        .container {
            max-width: 760px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 1.9em;
            font-weight: 300;
            color: #2D3748;
            margin-bottom: 8px;
        }

        .page-intro {
            color: #718096;
            font-size: 1.05em;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        h2 {
            font-size: 1.25em;
            font-weight: 600;
            color: #2D3748;
            margin-top: 36px;
            margin-bottom: 12px;
        }

        h3 {
            font-size: 1em;
            font-weight: 600;
            color: #4A5568;
            margin-top: 18px;
            margin-bottom: 6px;
        }

        p { margin-bottom: 12px; }

        ul {
            margin: 0 0 16px 24px;
        }
        ul li { margin-bottom: 6px; }

        a { color: #3D4852; }
        a:hover { color: #D4A574; }

        code {
            font-family: 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
            font-size: 0.92em;
            background: #EDE8DE;
            padding: 1px 6px;
            border-radius: 3px;
            color: #2D3748;
        }

        pre {
            background: #2D3748;
            color: #E2E8F0;
            font-family: 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
            font-size: 0.88em;
            line-height: 1.55;
            padding: 16px 20px;
            border-radius: 4px;
            overflow-x: auto;
            margin: 0 0 18px 0;
        }
        pre code {
            background: transparent;
            padding: 0;
            color: inherit;
            font-size: inherit;
        }
        pre .comment { color: #A0AEC0; }
        pre .out { color: #D4A574; }

        .install-block {
            background: #2D3748;
            color: #E2E8F0;
            padding: 18px 20px;
            border-radius: 4px;
            font-family: 'SF Mono', Menlo, Consolas, monospace;
            font-size: 1.05em;
            margin: 8px 0 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .install-block::before {
            content: '$';
            color: #D4A574;
            user-select: none;
        }

        .notice {
            background: #FFF8E7;
            border: 1px solid #E8D9B5;
            border-left: 4px solid #D4A574;
            padding: 16px 20px;
            border-radius: 3px;
            margin: 0 0 32px 0;
            font-size: 0.97em;
            color: #4A5568;
        }
        .notice strong {
            color: #2D3748;
        }

        .url-list {
            background: #FFFFFF;
            border: 1px solid #E8E0D4;
            border-radius: 4px;
            padding: 4px 0;
            margin-bottom: 20px;
        }
        .url-list-item {
            padding: 10px 18px;
            border-bottom: 1px solid #F0EBE0;
        }
        .url-list-item:last-child { border-bottom: none; }
        .url-list-item code {
            font-size: 0.92em;
            background: transparent;
            padding: 0;
            color: #2D3748;
        }
        .url-list-item .desc {
            display: block;
            margin-top: 3px;
            color: #718096;
            font-size: 0.92em;
        }

        .footer {
            background: #3D4852;
            color: #E2E8F0;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            font-size: 0.9em;
        }
        .footer a { color: #E2E8F0; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
            .hamburger-menu-toggle { display: flex; }
            .container { padding: 24px 16px; }
            h1 { font-size: 1.55em; }
            pre { font-size: 0.82em; padding: 12px 14px; }
            .install-block { font-size: 0.95em; }
        }

/* Source: public/dataset.html */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F5;
            color: #2D3748;
        }

        .navbar {
            background: #3D4852;
            color: #E2E8F0;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
            z-index: 100;
        }
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .home-link {
            color: #E2E8F0;
            text-decoration: none;
            font-weight: 300;
            font-size: 3.75em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            line-height: 1;
        }
        .home-link:hover { opacity: 0.8; }
        .navbar-subtitle {
            color: #E2E8F0;
            font-size: 0.9em;
            margin-top: 0px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1.4;
        }
        .desktop-only { display: block; }
        .mobile-only { display: none; }
        .hamburger-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
        }
        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #E2E8F0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .nav-tabs {
            display: flex;
            gap: 0;
            align-items: center;
            margin-top: 8px;
        }
        .nav-tab {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 1em;
            font-weight: 400;
            padding: 6px 16px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .nav-tab:hover, .nav-tab.active {
            color: #FFFFFF;
            border-bottom-color: #D4A574;
        }
        .hamburger-menu-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        .hamburger-menu-overlay.visible { display: block; }
        .hamburger-menu-panel {
            display: none;
            position: fixed;
            top: 0; left: 0; bottom: 0;
            width: 280px;
            background: #2D3748;
            z-index: 1000;
            padding: 60px 20px 20px;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        }
        .hamburger-menu-panel.open { display: block; }
        .menu-section { margin-bottom: 24px; }
        .menu-section-title {
            color: #A0AEC0;
            font-size: 0.75em;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link {
            display: block;
            color: #E2E8F0;
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.95em;
            border-bottom: 1px solid #4A5568;
        }
        .menu-link:hover { color: #D4A574; }

        .container {
            max-width: 820px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 1.8em;
            font-weight: 300;
            color: #2D3748;
            margin-bottom: 8px;
        }

        h2 {
            font-size: 1.3em;
            font-weight: 600;
            color: #2D3748;
            margin: 36px 0 14px;
        }

        .page-intro {
            color: #718096;
            font-size: 1.05em;
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            margin-top: 8px;
        }
        .download-card {
            background: #FFFFFF;
            border: 1px solid #e8e0d4;
            border-radius: 4px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        .download-card h3 {
            font-size: 1.05em;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .download-card p {
            color: #718096;
            font-size: 0.92em;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        .btn {
            display: inline-block;
            background: #3D4852;
            color: #FFFFFF;
            text-decoration: none;
            padding: 9px 18px;
            font-size: 0.95em;
            font-weight: 600;
            border-radius: 3px;
            text-align: center;
            transition: background 0.2s;
        }
        .btn:hover { background: #2D3748; }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            background: #FFFFFF;
            border: 1px solid #e8e0d4;
            border-radius: 4px;
            overflow: hidden;
        }
        .info-table th, .info-table td {
            text-align: left;
            padding: 10px 14px;
            border-bottom: 1px solid #EDF2F7;
            font-size: 0.95em;
        }
        .info-table th { background: #FAFAF8; font-weight: 600; }
        .info-table tr:last-child td { border-bottom: none; }

        .citation-block {
            background: #FFFFFF;
            border: 1px solid #e8e0d4;
            border-radius: 4px;
            padding: 18px;
            font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
            font-size: 0.88em;
            white-space: pre-wrap;
            word-break: break-word;
            color: #2D3748;
        }

        .note {
            color: #718096;
            font-size: 0.95em;
            margin-top: 12px;
        }
        .note a { color: #3D4852; }

        .footer {
            background: #3D4852;
            color: #E2E8F0;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            font-size: 0.9em;
        }
        .footer a { color: #E2E8F0; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
            .hamburger-menu-toggle { display: flex; }
            .container { padding: 24px 16px; }
            h1 { font-size: 1.5em; }
        }

/* Source: public/llms.html */
        body {
            font-family: Georgia, 'Times New Roman', serif;
            max-width: 720px;
            margin: 3rem auto;
            padding: 0 1.5rem;
            color: #222;
            line-height: 1.7;
        }
        h1 { font-size: 1.8rem; margin-bottom: 0.25rem; }
        blockquote {
            border-left: 3px solid #bbb;
            margin: 1.2rem 0;
            padding: 0.5rem 1.2rem;
            color: #444;
            font-style: italic;
        }
        h2 { font-size: 1.2rem; margin-top: 2rem; }
        ul { padding-left: 1.5rem; }
        li { margin-bottom: 0.4rem; }
        code { font-family: monospace; background: #f4f4f4; padding: 0.1em 0.3em; border-radius: 3px; }
        .meta { font-size: 0.9rem; color: #666; margin-top: 3rem; border-top: 1px solid #ddd; padding-top: 1rem; }
        a { color: #1a5276; }
