:root {
  --bg: #ffffff;
  --bg2: #f9fafb;
  --card: #ffffff;
  --nav-bg: rgba(255,255,255,0.92);
  --border: #e5e7eb;
  --text1: #111827;
  --text2: #374151;
  --text3: #6b7280;
  --primary: #2563eb;
  --primary-soft: #eff6ff;
  --primary-hover: #1d4ed8;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #6366f1;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
  --max-w: 1200px;
}

html.dark {
  --bg: #0f1117;
  --bg2: #161b22;
  --card: #161b22;
  --nav-bg: rgba(15,17,23,0.92);
  --border: #30363d;
  --text1: #f0f6fc;
  --text2: #c9d1d9;
  --text3: #8b949e;
  --primary: #58a6ff;
  --primary-soft: #1c2d44;
  --primary-hover: #79c0ff;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text1);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.logo { font-weight: 700; font-size: 1.25rem; color: var(--primary); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.875rem;
  font-weight: 500; color: var(--text2); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-soft); }
.nav-actions { display: flex; gap: 0.5rem; align-items: center; }
.nav-btn {
  background: none; border: 1px solid var(--border); color: var(--text2);
  width: 36px; height: 36px; border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all 0.2s;
}
.nav-btn:hover { border-color: var(--primary); color: var(--primary); }
.nav-btn-text { width: auto; padding: 0 0.75rem; font-size: 0.8125rem; font-weight: 600; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 4rem;
}
.hero-content { max-width: 700px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1rem; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.125rem; color: var(--text3); max-width: 560px; margin: 0 auto 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9375rem; cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-solid, .btn-primary { background: var(--primary); color: #fff; }
.btn-solid:hover, .btn-primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: none; color: var(--primary); }
.btn-ghost:hover { background: var(--primary-soft); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-title { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; text-align: center; margin-bottom: 0.5rem; }
.section-desc { text-align: center; color: var(--text3); max-width: 600px; margin: 0 auto 3rem; }

/* CARDS */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: all 0.2s; box-shadow: var(--shadow);
}
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card { padding: 1.5rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text3); font-size: 0.875rem; line-height: 1.5; }

/* UPDATES / THREAD CARDS */
.update-card { padding: 1.5rem; }
.update-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text3); margin-bottom: 0.5rem; }
.update-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.update-excerpt { color: var(--text3); font-size: 0.875rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* PROGRESS BAR */
.progress-bar { height: 6px; background: var(--border); border-radius: 9999px; overflow: hidden; margin-top: 0.75rem; }
.progress-fill { height: 100%; border-radius: 9999px; transition: width 0.6s ease; }
.progress-fill.done { background: var(--success); }
.progress-fill.progress { background: var(--primary); }
.progress-fill.planned { background: var(--text3); }

/* CAT BADGES */
.cat-badge {
  display: inline-block; padding: 0.125rem 0.5rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
}
.cat-badge.kernel { background: #dbeafe; color: #1d4ed8; }
.cat-badge.desktop { background: #e0e7ff; color: #4338ca; }
.cat-badge.drivers { background: #fef3c7; color: #b45309; }
.cat-badge.applications { background: #d1fae5; color: #047857; }
.cat-badge.networking { background: #ede9fe; color: #6d28d9; }
.cat-badge.filesystem { background: #fce7f3; color: #be185d; }
.cat-badge.bug-report { background: #fee2e2; color: #dc2626; }
.cat-badge.feature-request { background: #e0f2fe; color: #0284c7; }
.cat-badge.general-discussion { background: #f0fdf4; color: #16a34a; }
.cat-badge.announcements { background: #fef9c3; color: #a16207; }

html.dark .cat-badge.kernel { background: #1e3a5f; color: #93c5fd; }
html.dark .cat-badge.desktop { background: #1e1b4b; color: #a5b4fc; }
html.dark .cat-badge.drivers { background: #451a03; color: #fcd34d; }
html.dark .cat-badge.applications { background: #022c22; color: #6ee7b7; }
html.dark .cat-badge.networking { background: #2e1065; color: #c4b5fd; }
html.dark .cat-badge.filesystem { background: #500724; color: #f9a8d4; }
html.dark .cat-badge.bug-report { background: #450a0a; color: #fca5a5; }
html.dark .cat-badge.feature-request { background: #0c4a6e; color: #7dd3fc; }
html.dark .cat-badge.general-discussion { background: #052e16; color: #86efac; }
html.dark .cat-badge.announcements { background: #422006; color: #fde047; }

/* STAT CARDS */
.stat-card { text-align: center; padding: 2rem; }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-card p { color: var(--text3); font-size: 0.875rem; margin-top: 0.25rem; }

/* TECH LIST */
.tech-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.tech-item {
  padding: 0.375rem 0.875rem; border-radius: 9999px; font-size: 0.8125rem;
  font-weight: 500; background: var(--primary-soft); color: var(--primary);
  border: 1px solid var(--border);
}

/* DOWNLOAD PAGE */
.download-hero {
  padding: 8rem 1.5rem 3rem; text-align: center;
  background: var(--primary-soft); border-bottom: 1px solid var(--border);
}
.download-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.download-hero p { color: var(--text3); font-size: 1.125rem; }
.download-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; text-align: center; box-shadow: var(--shadow-lg);
  max-width: 600px; margin: -2rem auto 0;
}
.download-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.download-card .version { color: var(--primary); font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; }
.download-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; max-width: 800px; margin: 0 auto; }
.req-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
}
.req-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.req-card p { font-size: 0.8125rem; color: var(--text3); }

/* DOWNLOAD CARDS (old compat) */
.dl-card { text-align: center; padding: 2rem; }
.dl-icon { font-size: 3rem; margin-bottom: 1rem; }
.dl-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.dl-card .dl-version { color: var(--text3); font-size: 0.8125rem; margin-bottom: 1rem; }
.dl-card .dl-req { color: var(--text3); font-size: 0.75rem; margin-top: 1rem; text-align: left; background: var(--primary-soft); padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
.dl-card .dl-req strong { color: var(--text2); display: block; margin-bottom: 0.25rem; }

/* DOCS LAYOUT */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding-top: 5rem; min-height: 100vh; }
.docs-sidebar { position: sticky; top: 80px; height: fit-content; max-height: calc(100vh - 100px); overflow-y: auto; padding-right: 1rem; border-right: 1px solid var(--border); }
.docs-sidebar h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text3); margin-bottom: 0.5rem; }
.docs-nav li a {
  display: block; padding: 0.375rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text3); transition: all 0.2s;
}
.docs-nav li a:hover, .docs-nav li a.active { color: var(--primary); background: var(--primary-soft); }
.docs-content { max-width: 700px; padding-bottom: 4rem; }
.docs-content h2 { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.docs-content h2:first-child { border-top: none; margin-top: 0; }
.docs-content h3 { font-size: 1.125rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.docs-content p { color: var(--text2); margin-bottom: 1rem; }
.docs-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.docs-content li { color: var(--text2); margin-bottom: 0.375rem; font-size: 0.9375rem; }
.docs-content pre {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; overflow-x: auto; margin: 1rem 0; font-size: 0.8125rem;
}
.docs-content code { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.875em; }

/* FORUM */
.forum-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
.forum-sidebar { position: sticky; top: 80px; height: fit-content; }
.forum-search input {
  width: 100%; padding: 0.625rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.875rem; background: var(--bg);
  color: var(--text1); margin-bottom: 1.5rem;
}
.forum-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.cat-list li a {
  display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text3); transition: all 0.2s; margin-bottom: 0.125rem;
}
.cat-list li a:hover, .cat-list li a.active { color: var(--primary); background: var(--primary-soft); }
.forum-stats { margin-top: 2rem; padding: 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.forum-stat { display: flex; justify-content: space-between; font-size: 0.8125rem; padding: 0.375rem 0; border-bottom: 1px solid var(--border); }
.forum-stat:last-child { border-bottom: none; }
.forum-main { min-width: 0; }
.thread-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.thread-header h1 { font-size: 1.25rem; }
.thread-filters { display: flex; gap: 0.25rem; }
.filter-btn {
  padding: 0.375rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.8125rem;
  font-weight: 500; background: none; border: 1px solid var(--border);
  color: var(--text3); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.thread-table { width: 100%; border-collapse: collapse; }
.thread-table th {
  text-align: left; padding: 0.75rem 1rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text3);
  border-bottom: 1px solid var(--border); background: var(--card);
}
.thread-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.thread-table tr:hover td { background: var(--primary-soft); }
.thread-title { color: var(--text1); font-weight: 600; }
.thread-title:hover { color: var(--primary); }
.pin-badge { color: var(--warning); }
.solved-badge { color: var(--success); }

/* FORUM USER PROFILE SIDEBAR */
.user-profile-card { padding: 1.25rem; text-align: center; margin-bottom: 1.5rem; }
.user-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: #fff;
}
.user-avatar.admin { background: var(--danger); }
.user-avatar.moderator { background: var(--warning); }
.user-avatar.member { background: var(--primary); }
.user-profile-card h4 { font-size: 1rem; font-weight: 700; }
.user-role-badge {
  display: inline-block; padding: 0.125rem 0.5rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 600; margin-top: 0.25rem;
}
.user-role-badge.admin { background: #fee2e2; color: #dc2626; }
.user-role-badge.moderator { background: #fef3c7; color: #b45309; }
.user-role-badge.member { background: #dbeafe; color: #1d4ed8; }
html.dark .user-role-badge.admin { background: #450a0a; color: #fca5a5; }
html.dark .user-role-badge.moderator { background: #422006; color: #fde047; }
html.dark .user-role-badge.member { background: #1e3a5f; color: #93c5fd; }
.user-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1rem; }
.user-stat { text-align: center; padding: 0.5rem; background: var(--bg); border-radius: var(--radius-sm); }
.user-stat strong { display: block; font-size: 1.125rem; color: var(--primary); }
.user-stat span { font-size: 0.6875rem; color: var(--text3); }

/* FORUM ADMIN CONTROLS */
.admin-controls { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.admin-btn {
  padding: 0.25rem 0.5rem; border-radius: var(--radius-sm); font-size: 0.6875rem;
  font-weight: 600; cursor: pointer; border: 1px solid var(--border);
  background: var(--bg); color: var(--text3); transition: all 0.2s;
}
.admin-btn:hover { border-color: var(--primary); color: var(--primary); }
.admin-btn.danger:hover { border-color: var(--danger); color: var(--danger); }

/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow-y: auto;
}
.modal h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.modal .modal-subtitle { color: var(--text3); font-size: 0.875rem; margin-bottom: 1.5rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.25rem; color: var(--text3); cursor: pointer;
}
.modal-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.modal-tab {
  flex: 1; padding: 0.625rem; text-align: center; font-size: 0.875rem; font-weight: 600;
  color: var(--text3); cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
}
.modal-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.auth-divider { text-align: center; color: var(--text3); font-size: 0.8125rem; margin: 1rem 0; position: relative; }
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* FORM */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; color: var(--text2); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.625rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.875rem; background: var(--bg);
  color: var(--text1); font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ROADMAP TIMELINE */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: 0.25rem;
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.timeline-dot.done { border-color: var(--success); background: var(--success); }
.timeline-dot.done::after { background: #fff; }
.timeline-dot.progress { border-color: var(--primary); background: var(--primary); }
.timeline-dot.progress::after { background: #fff; }
.timeline-item .year {
  font-size: 0.75rem; font-weight: 700; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.875rem; color: var(--text3); }

/* CONTRIBUTORS */
.contributors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.contributor { text-align: center; padding: 1.5rem; }
.contributor h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.contributor p { font-size: 0.8125rem; color: var(--text3); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }
.blog-card { display: flex; overflow: hidden; }
.blog-img { font-size: 3rem; min-width: 80px; display: flex; align-items: center; justify-content: center; background: var(--primary-soft); }
.blog-body { padding: 1rem 1.25rem; flex: 1; }
.blog-meta { font-size: 0.75rem; color: var(--text3); margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.blog-excerpt { font-size: 0.8125rem; color: var(--text3); line-height: 1.5; }

/* RELEASES */
.release-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; }
.release-card h3 { font-size: 1.125rem; font-weight: 700; }
.release-date { font-size: 0.8125rem; color: var(--text3); margin-bottom: 0.75rem; }
.release-card ul { margin: 0.5rem 0 1rem 1.25rem; }
.release-card li { font-size: 0.875rem; color: var(--text2); margin-bottom: 0.25rem; }
.release-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* DEVELOPERS */
.dev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.dev-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; }
.dev-icon { font-size: 2rem; min-width: 40px; text-align: center; }
.dev-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.dev-card p { font-size: 0.8125rem; color: var(--text3); }

/* FOOTER */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer li { margin-bottom: 0.375rem; }
.footer a { font-size: 0.875rem; color: var(--text3); }
.footer a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.8125rem; color: var(--text3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hero h1 { font-size: 2rem; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; position: static; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
  .forum-layout { grid-template-columns: 1fr; }
  .forum-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-img { min-width: unset; min-height: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .contributors-grid { grid-template-columns: 1fr 1fr; }
}
