/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #0f1117;
  --bg2:       #161b27;
  --bg3:       #1e2535;
  --border:    #2a3148;
  --accent:    #00e5a0;
  --accent2:   #00b87a;
  --accent-dim:#003d29;
  --text:      #e8eaf6;
  --text-muted:#6b7a99;
  --red:       #ff4d6d;
  --blue:      #4d9fff;
  --purple:    #a78bfa;
  --yellow:    #fbbf24;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 2rem;
  background: rgba(15,17,23,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); text-decoration: none;
}
.brand-icon { color: var(--accent); font-size: 1.4rem; }
.nav-search { flex: 1; max-width: 360px; display: flex; gap: .4rem; }
.search-input {
  flex: 1;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: .45rem .9rem;
  border-radius: var(--radius); outline: none; font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--accent); }
.search-btn {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); padding: .45rem .8rem;
  border-radius: var(--radius); cursor: pointer;
  transition: color .2s, border-color .2s;
}
.search-btn:hover { color: var(--accent); border-color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav-link { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-link.muted { color: var(--text-muted); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.1rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none; transition: all .18s;
  font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #0a1a10; }
.btn-primary:hover { background: var(--accent2); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-danger { background: transparent; border: 1px solid var(--red); color: var(--red); }
.btn-danger:hover { background: var(--red); color: #fff; text-decoration: none; }
.btn-lg { padding: .7rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: .35rem .8rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Main / Layout ──────────────────────────────────────────── */
.main-content { flex: 1; padding: 2rem; max-width: 1280px; margin: 0 auto; width: 100%; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  border-radius: 16px; padding: 4rem 3rem;
  background: var(--bg2); border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.hero-content { position: relative; z-index: 1; }
.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: .75rem; }
.hero-title .accent { color: var(--accent); }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 480px; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .3;
  mask-image: radial-gradient(ellipse 80% 80% at 100% 50%, black 0%, transparent 70%);
}

/* ─── Section ────────────────────────────────────────────────── */
.section { margin-bottom: 3rem; }
.section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: .75rem; }
.section-header h2 { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: .6rem; }
.count-badge {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .75rem;
  padding: .15rem .55rem; border-radius: 99px;
  font-family: 'Space Mono', monospace;
}

/* ─── Mod grid ───────────────────────────────────────────────── */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.mod-card {
  display: flex; flex-direction: column;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.mod-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.mod-card-img { height: 160px; overflow: hidden; background: var(--bg3); display: flex; align-items: center; justify-content: center; }
.mod-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mod-card-placeholder { font-size: 3rem; color: var(--border); }
.mod-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.mod-card-name { font-size: 1rem; font-weight: 700; }
.mod-card-summary { font-size: .82rem; color: var(--text-muted); flex: 1; }
.mod-card-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.meta-item { font-size: .75rem; color: var(--text-muted); }

/* ─── Tags ───────────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  background: var(--accent-dim); color: var(--accent);
  font-size: .72rem; padding: .18rem .55rem;
  border-radius: 99px; font-weight: 600;
  font-family: 'Space Mono', monospace;
}

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  font-size: .7rem; font-weight: 700; padding: .18rem .55rem;
  border-radius: 99px; font-family: 'Space Mono', monospace;
}
.badge-green { background: rgba(0,229,160,.15); color: var(--accent); }
.badge-blue  { background: rgba(77,159,255,.15); color: var(--blue); }
.badge-purple{ background: rgba(167,139,250,.15); color: var(--purple); }
.badge-red   { background: rgba(255,77,109,.15); color: var(--red); }

/* ─── Mod detail ─────────────────────────────────────────────── */
.mod-detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) { .mod-detail-layout { grid-template-columns: 1fr; } }

.mod-sidebar {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  position: sticky; top: 80px;
}
.mod-sidebar-img { background: var(--bg3); height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mod-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.mod-placeholder-large { font-size: 4rem; color: var(--border); }
.sidebar-section { padding: 1rem; border-bottom: 1px solid var(--border); }
.sidebar-section:last-child { border-bottom: none; }
.mod-title-sidebar { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.mod-summary-sidebar { font-size: .82rem; color: var(--text-muted); }
.sidebar-meta { display: flex; flex-direction: column; gap: .5rem; }
.meta-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.meta-label { color: var(--text-muted); }
.meta-value { font-weight: 600; }
.meta-value.link { color: var(--accent); }
.owner-actions { display: flex; flex-direction: column; gap: .5rem; }

/* ─── Tabs ───────────────────────────────────────────────────── */
.mod-tabs {
  display: flex; gap: .25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.tab-btn {
  background: none; border: none; color: var(--text-muted);
  padding: .6rem 1.2rem; cursor: pointer; font-size: .9rem;
  font-family: inherit; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; margin-bottom: -1px;
}
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.mod-description-body { line-height: 1.8; color: var(--text); }

/* ─── Version list ───────────────────────────────────────────── */
.version-list { display: flex; flex-direction: column; gap: 1rem; }
.version-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.version-card.latest { border-color: var(--accent); }
.version-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; flex-wrap: wrap; gap: .5rem; }
.version-number { font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700; margin-right: .5rem; }
.version-changelog { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.version-footer { display: flex; gap: 1rem; flex-wrap: wrap; }
.muted-label { font-size: .75rem; color: var(--text-muted); }

/* ─── Auth ───────────────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 120px);
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2rem;
  width: 100%; max-width: 400px;
}
.auth-logo { font-size: 2.5rem; color: var(--accent); text-align: center; margin-bottom: .5rem; }
.auth-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-alt { text-align: center; color: var(--text-muted); font-size: .875rem; margin-top: 1rem; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-page { max-width: 780px; margin: 0 auto; }
.form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.mod-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.flex-1 { flex: 1; min-width: 160px; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.form-input, .form-textarea {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: .55rem .9rem;
  border-radius: var(--radius); font-size: .9rem; font-family: inherit;
  outline: none; transition: border-color .2s; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; justify-content: flex-end; gap: .75rem; padding-top: .5rem; }
.required { color: var(--red); }

/* ─── File drop ──────────────────────────────────────────────── */
.file-drop {
  position: relative; background: var(--bg3); border: 2px dashed var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  cursor: pointer; transition: border-color .2s;
}
.file-drop:hover { border-color: var(--accent); }
.file-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.file-drop-inner { display: flex; flex-direction: column; align-items: center; gap: .3rem; pointer-events: none; }
.file-icon { font-size: 2rem; }
.file-hint { font-size: .75rem; }
.img-preview { max-height: 180px; margin: 1rem auto 0; border-radius: var(--radius); }
.hidden { display: none; }
.file-chosen { margin-top: .75rem; color: var(--accent); font-size: .85rem; font-weight: 600; }
.current-img { max-height: 120px; border-radius: var(--radius); margin-bottom: .5rem; }

/* ─── Alerts ─────────────────────────────────────────────────── */
.alert {
  padding: .75rem 1rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1rem;
}
.alert-error { background: rgba(255,77,109,.1); border: 1px solid var(--red); color: var(--red); }

/* ─── Empty state ────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state a { color: var(--accent); }

/* ─── Profile ────────────────────────────────────────────────── */
.profile-page { max-width: 1000px; margin: 0 auto; }
.profile-header { display: flex; align-items: center; gap: 1.5rem; padding: 2rem; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 2rem; }
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-dim); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: var(--accent);
  flex-shrink: 0;
}
.profile-name { font-size: 1.5rem; font-weight: 700; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--accent); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 1.5rem 2rem; border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: .82rem;
}
.footer-inner { display: flex; align-items: center; justify-content: center; gap: .5rem; }

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* ─── Selection ──────────────────────────────────────────────── */
::selection { background: var(--accent-dim); color: var(--accent); }

/* ─── Filter bar ─────────────────────────────────────────────── */
.filter-bar { margin-bottom: 1.25rem; }
.filter-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-tab {
  padding: .35rem .9rem; border-radius: 99px; font-size: .82rem; font-weight: 600;
  background: var(--bg3); border: 1px solid var(--border); color: var(--text-muted);
  text-decoration: none; transition: all .18s;
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.filter-tab.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

/* ─── Card type badge ────────────────────────────────────────── */
.card-type-badge {
  position: absolute; top: .5rem; left: .5rem;
  background: rgba(15,17,23,.8); backdrop-filter: blur(6px);
  color: var(--text); font-size: .68rem; font-weight: 700;
  padding: .18rem .5rem; border-radius: 99px;
  font-family: 'Space Mono', monospace;
  border: 1px solid var(--border);
}
.mod-card-img { position: relative; }

/* ─── Channel badges ─────────────────────────────────────────── */
.channel-badge {
  font-size: .7rem; font-weight: 700; padding: .18rem .55rem;
  border-radius: 99px; font-family: 'Space Mono', monospace;
}
.channel-stable       { background: rgba(0,229,160,.15); color: var(--accent); }
.channel-beta         { background: rgba(251,191,36,.15); color: var(--yellow); }
.channel-experimental { background: rgba(255,77,109,.15); color: var(--red); }

/* ─── Type selector ──────────────────────────────────────────── */
.type-selector { display: flex; gap: .6rem; flex-wrap: wrap; }
.type-option { cursor: pointer; }
.type-option input { display: none; }
.type-option-inner {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .75rem 1.25rem; border-radius: var(--radius);
  background: var(--bg3); border: 2px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  transition: all .18s; min-width: 90px;
}
.type-icon { font-size: 1.5rem; }
.type-option input:checked + .type-option-inner { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.type-option-inner:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Channel selector ───────────────────────────────────────── */
.channel-selector { display: flex; gap: .6rem; flex-wrap: wrap; }
.channel-option { cursor: pointer; }
.channel-option input { display: none; }
.channel-option-inner {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: var(--radius);
  background: var(--bg3); border: 2px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  transition: all .18s;
}
.ch-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.channel-opt-stable       { }
.channel-opt-beta         { }
.channel-opt-experimental { }
.channel-option input:checked + .channel-opt-stable       { border-color: var(--accent);  color: var(--accent);  background: rgba(0,229,160,.1); }
.channel-option input:checked + .channel-opt-beta         { border-color: var(--yellow); color: var(--yellow); background: rgba(251,191,36,.1); }
.channel-option input:checked + .channel-opt-experimental { border-color: var(--red);    color: var(--red);    background: rgba(255,77,109,.1); }
.channel-option-inner:hover { border-color: var(--text-muted); }

/* ─── Project type label ─────────────────────────────────────── */
.project-type-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  font-family: 'Space Mono', monospace;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); padding: .15rem .55rem;
  border-radius: 99px; margin-bottom: .5rem;
}

/* ─── Version header fix ─────────────────────────────────────── */
.version-header-left { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }

/* ─── Admin page ─────────────────────────────────────────────── */
.admin-page { max-width: 1100px; margin: 0 auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.6rem; font-weight: 800; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--accent); font-family: 'Space Mono', monospace; }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.admin-section { margin-bottom: 2.5rem; }
.admin-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--bg3); padding: .7rem 1rem; text-align: left; font-size: .8rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.admin-table td { padding: .65rem 1rem; border-top: 1px solid var(--border); font-size: .85rem; vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg3); }
.banned-row td { opacity: .5; }
.action-cell { display: flex; gap: .35rem; align-items: center; flex-wrap: wrap; }
.inline-form { display: inline-flex; gap: .3rem; align-items: center; }
.mini-select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: .25rem .5rem; border-radius: 6px; font-size: .78rem; font-family: inherit;
}
.btn-xs { padding: .22rem .6rem; font-size: .75rem; border-radius: 6px; }
.admin-link { color: var(--yellow) !important; font-weight: 600; }

/* ─── Version detail page ────────────────────────────────────── */
.version-detail-page { max-width: 1100px; margin: 0 auto; }
.version-detail-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .version-detail-layout { grid-template-columns: 1fr; } }

.version-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 1.25rem;
}
.version-detail-title-row { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .4rem; }
.version-detail-name { font-size: 1.6rem; font-weight: 900; font-family: 'Space Mono', monospace; }
.version-detail-sub { font-size: .85rem; color: var(--text-muted); }

.version-meta-pills {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.25rem;
}
.meta-pill {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .5rem .9rem; font-size: .82rem;
}
.pill-label { color: var(--text-muted); font-weight: 600; }

.vd-section {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem;
}
.vd-section-title {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted);
  padding: .75rem 1.25rem; border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.vd-section-body { padding: 1.25rem; line-height: 1.8; font-size: .9rem; }

.dep-list { display: flex; flex-direction: column; gap: .5rem; }
.dep-item {
  display: flex; align-items: center; gap: .6rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: .5rem .9rem; font-size: .875rem;
}
.dep-icon { font-size: 1rem; }

/* ─── Version detail sidebar ─────────────────────────────────── */
.vd-sidebar-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1rem;
}
.vd-sidebar-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .9rem; }
.vd-sidebar-project { display: flex; align-items: center; gap: .9rem; }
.vd-project-img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.vd-project-img-placeholder { width: 52px; height: 52px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.vd-project-name { display: block; font-weight: 700; font-size: .95rem; color: var(--text); margin-top: .2rem; }
.vd-project-name:hover { color: var(--accent); text-decoration: none; }
.owner-card { border-color: var(--accent-dim); }

/* ─── Version list actions ───────────────────────────────────── */
.version-actions { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.inline-ver-form { display: inline-block; }
.version-hidden { opacity: .6; border-style: dashed !important; }
.version-number-link { text-decoration: none; }
.version-number-link:hover .version-number { color: var(--accent); }
