llms.txt Content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BIGHUB</title>
<link rel="icon" type="image/png" href="./flavicon-64.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://stream.mux.com" crossorigin />
<link rel="dns-prefetch" href="https://stream.mux.com" />
<link rel="preconnect" href="https://image.mux.com" crossorigin />
<link rel="dns-prefetch" href="https://image.mux.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<style>
:root {
--bg: #0a0a0a;
--surface: #121212;
--surface-2: #181818;
--text: #f5f5f5;
--muted: #9f9f9f;
--line: #2a2a2a;
--chip: #1f1f1f;
--mock-scroll-x: 0px;
--mock-scroll-y: 0px;
--grid-line: rgba(255, 255, 255, 0.1);
--scrollbar-track: #101010;
--scrollbar-thumb: #3a3a3a;
--scrollbar-thumb-hover: #4d4d4d;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
margin: 0;
min-height: 100%;
/* Only the root scrolls; horizontal clip here avoids nested scrollports on body/.page (overflow-x ≠ visible forces other axis to compute to auto). */
overflow-x: hidden;
overflow-y: scroll;
}
body {
margin: 0;
min-height: 100%;
overflow: visible;
font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
color: var(--text);
background: var(--bg);
position: relative;
}
a {
color: inherit;
text-decoration: none;
}
/* Main page scrollbar — matches dark landing theme */
html {