@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Share+Tech+Mono&display=swap');

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

:root {
  --bg:        #0c0c0c;
  --bg2:       #121212;
  --bg3:       #181818;
  --bg4:       #202020;
  --border:    #222222;
  --border2:   #2e2e2e;
  --gold:      #c89060;
  --gold2:     #e0aa78;
  --gold-dim:  rgba(200,144,96,0.12);
  --gold-glow: rgba(200,144,96,0.25);
  --green:     #5aaa80;
  --red:       #b05858;
  --text:      #e8e8e8;
  --text2:     #585858;
  --text3:     #303030;
  --mono:      'Share Tech Mono', monospace;
  --sans:      'Plus Jakarta Sans', sans-serif;
  --radius:    8px;
  --shadow:    0 24px 80px rgba(0,0,0,0.95);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Very subtle grid (like main site) ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Gold edge glow — matches MCB Network border effect */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(200,144,96,0.06) 0%, transparent 8%),
    linear-gradient(to top,    rgba(200,144,96,0.06) 0%, transparent 8%),
    linear-gradient(to right,  rgba(200,144,96,0.04) 0%, transparent 5%),
    linear-gradient(to left,   rgba(200,144,96,0.04) 0%, transparent 5%);
  border: 1px solid rgba(200,144,96,0.15);
}

header, .container, #login-screen, .modal-overlay { position: relative; z-index: 1; }

.hidden { display: none !important; }

/* ── Corner Marks ───────────────────────────────────────────────────────── */
.login-corner, .modal-corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  opacity: 0.6;
}
.login-corner.tl, .modal-corner.tl { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.login-corner.tr, .modal-corner.tr { top: -1px; right: -1px; border-top-width: 1.5px; border-right-width: 1.5px; }
.login-corner.bl, .modal-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.login-corner.br, .modal-corner.br { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* ── Login Screen ───────────────────────────────────────────────────────── */
#login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-box {
  background: rgba(14,14,14,0.98);
  border: 1px solid rgba(200,144,96,0.25);
  border-radius: 12px;
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow), 0 0 60px rgba(200,144,96,0.08);
  position: relative;
  backdrop-filter: blur(12px);
}

.login-logo {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

.login-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text2);
  text-align: center;
  letter-spacing: 0.14em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.login-hint {
  font-size: 0.83rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-left: 2px solid var(--gold);
  border-radius: 6px;
  padding: 0.65rem 0.875rem;
  line-height: 1.65;
}

.login-hint code {
  font-family: var(--mono);
  color: var(--gold2);
  font-size: 0.88em;
  background: var(--gold-dim);
  padding: 1px 5px;
  border-radius: 3px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
header {
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left { display: flex; align-items: center; gap: 1rem; }

.header-logo { height: 56px; width: auto; }

.header-sep { display: flex; align-items: center; gap: 0.625rem; }
.header-sep-line { display: block; width: 18px; height: 1px; background: var(--border2); }

.header-section {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-right { display: flex; align-items: center; gap: 0.625rem; }

.username-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text2);
  padding: 0.3rem 0.75rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.op-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid rgba(200,144,96,0.4);
  border-radius: 100px;
  letter-spacing: 0.08em;
  background: var(--gold-dim);
}

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
}

/* ── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.75rem;
}

.stat-item {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.15s;
}

.stat-item:hover { background: var(--bg3); }

.stat-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--text3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--text3);
}

/* ── Tabs ───────────────────────────────────────────────────────────────── */
.tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tabs {
  display: flex;
  gap: 4px;
  width: fit-content;
}

.tabs-type { margin-left: auto; }

.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  transition: all 0.15s;
}

.tab:hover { color: var(--text); border-color: var(--border2); background: var(--bg3); }

.tab.active {
  background: var(--gold-dim);
  color: var(--gold2);
  border-color: rgba(200,144,96,0.4);
}

/* ── Mod Grid ───────────────────────────────────────────────────────────── */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mod-card {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
  animation: card-in 0.18s ease both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mod-card:hover {
  border-color: #333;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.mod-card.status-rejected { opacity: 0.4; }

.mod-card::after {
  content: '#' attr(data-id);
  position: absolute;
  top: 10px; right: 12px;
  font-family: var(--mono);
  font-size: 0.48rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* ── Card Body ──────────────────────────────────────────────────────────── */
.mod-top {
  display: flex;
  gap: 12px;
  padding: 14px 14px 10px;
  flex: 1;
}

.mod-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-icon { width: 64px; height: 64px; object-fit: cover; display: block; }

.mod-icon-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e2e2e;
}

.mod-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mod-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.mod-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1.3;
  word-break: break-word;
}

.badge-group {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.status-badge {
  font-family: var(--mono);
  font-size: 0.52rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.08em;
  border: 1px solid;
  font-weight: 600;
}

.status-pending  { color: var(--gold);  border-color: rgba(200,144,96,0.3);  background: rgba(200,144,96,0.07); }
.status-rejected { color: var(--red);   border-color: rgba(176,88,88,0.3);   background: rgba(176,88,88,0.07); }
.status-approved { color: var(--green); border-color: rgba(90,170,128,0.3);  background: rgba(90,170,128,0.07); }

.type-badge {
  font-family: var(--mono);
  font-size: 0.52rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}

.type-mod     { color: #6a9fd8; border-color: rgba(106,159,216,0.3); background: rgba(106,159,216,0.07); }
.type-recipe  { color: #6ab890; border-color: rgba(106,184,144,0.3); background: rgba(106,184,144,0.07); }
.type-feature { color: #c8a050; border-color: rgba(200,160,80,0.3);  background: rgba(200,160,80,0.07); }

.mod-desc {
  font-size: 0.78rem;
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.mod-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.69rem;
  color: #333;
  margin-top: auto;
  padding-top: 4px;
}

.mod-meta-dot { color: #282828; }

/* ── Card Footer ────────────────────────────────────────────────────────── */
.mod-footer {
  padding: 8px 14px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111;
  border-radius: 0 0 10px 10px;
  flex-shrink: 0;
}

.vote-section {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.vote-btn {
  width: 28px; height: 28px;
  border: 1px solid #222;
  background: #181818;
  color: #383838;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.12s;
}

.vote-btn:hover:not(:disabled) { border-color: #303030; color: #606060; background: #1e1e1e; }
.vote-btn:disabled { cursor: default; opacity: 0.25; }
.vote-btn.active-up   { border-color: rgba(90,170,128,0.4);  color: var(--green); background: rgba(90,170,128,0.08); }
.vote-btn.active-down { border-color: rgba(176,88,88,0.4);   color: var(--red);   background: rgba(176,88,88,0.08); }

.vote-score {
  font-family: var(--mono);
  font-size: 0.88rem;
  min-width: 28px;
  text-align: center;
  color: #404040;
}

.vote-score.positive { color: var(--green); }
.vote-score.negative { color: var(--red); }

.cf-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  padding: 4px 9px;
  border: 1px solid #222;
  border-radius: 6px;
  background: #181818;
  transition: all 0.12s;
  white-space: nowrap;
}

.cf-link:hover { border-color: rgba(200,144,96,0.35); color: var(--gold); background: rgba(200,144,96,0.06); }

.op-actions { display: flex; gap: 4px; margin-left: auto; }

/* ── Empty State ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text3);
}

.empty-state svg { margin: 0 auto 1rem; display: block; opacity: 0.2; }
.empty-state p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }

/* ── URL Lookup Status ──────────────────────────────────────────────────── */
.url-input-wrap { position: relative; display: flex; align-items: center; }
.url-input-wrap input { flex: 1; padding-right: 6rem; }

.url-status {
  position: absolute;
  right: 0.75rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.url-status.loading { color: var(--text3); }
.url-status.ok      { color: var(--green); }
.url-status.err     { color: var(--red); }

/* ── Image Upload ───────────────────────────────────────────────────────── */
.upload-area {
  border: 1.5px dashed var(--border2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  background: var(--bg3);
}

.upload-area:hover, .upload-area.drag-over {
  border-color: rgba(200,144,96,0.5);
  background: var(--gold-dim);
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon { color: var(--text3); margin-bottom: 0.5rem; }
.upload-label { font-size: 0.78rem; color: var(--text2); font-weight: 600; }
.upload-hint  { font-size: 0.68rem; color: var(--text3); margin-top: 0.2rem; }

.upload-preview {
  display: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--bg3);
}

.upload-preview.visible { display: block; }

.upload-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  background: var(--bg3);
}

.upload-preview-remove {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border2);
  color: var(--text2);
  cursor: pointer;
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.12s;
}

.upload-preview-remove:hover { color: var(--red); border-color: rgba(176,88,88,0.5); }

/* ── Type Selector ──────────────────────────────────────────────────────── */
.type-selector {
  display: flex;
  gap: 4px;
}

.type-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  transition: all 0.15s;
}

.type-btn:hover { color: var(--text); background: var(--bg4); }

.type-btn.active {
  background: var(--gold-dim);
  color: var(--gold2);
  border-color: rgba(200,144,96,0.4);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0c0c0c;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  box-shadow: 0 0 20px rgba(200,144,96,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border-color: var(--border2);
}
.btn-ghost:hover { background: var(--bg3); color: var(--text); }

.btn-danger {
  background: transparent;
  color: var(--red);
  border-color: rgba(176,88,88,0.35);
}
.btn-danger:hover { background: rgba(176,88,88,0.1); }

.btn-warn {
  background: transparent;
  color: var(--gold);
  border-color: rgba(200,144,96,0.35);
  font-size: 0.7rem;
  padding: 3px 9px;
}
.btn-warn:hover { background: var(--gold-dim); }

.btn-sm { padding: 4px 9px; font-size: 0.7rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-marker {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid rgba(200,144,96,0.2);
}

.form-group small { font-size: 0.7rem; color: var(--text3); }

input[type="text"],
input[type="url"],
input[type="password"],
textarea {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 7px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--sans);
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: rgba(200,144,96,0.5);
  box-shadow: 0 0 0 3px rgba(200,144,96,0.08);
}

::placeholder { color: var(--text3); }

.error-msg {
  background: rgba(176,88,88,0.07);
  border: 1px solid rgba(176,88,88,0.25);
  border-left: 2px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}

.modal {
  background: var(--bg2);
  border: 1px solid rgba(200,144,96,0.2);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
  position: relative;
  animation: modal-in 0.2s cubic-bezier(0.3, 1.3, 0.6, 1);
}

.modal-sm { max-width: 360px; }

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.375rem;
  border-bottom: 1px solid var(--border);
}

.modal-title-group { display: flex; align-items: center; gap: 0.625rem; }

.modal-tag {
  font-family: var(--mono);
  font-size: 0.57rem;
  color: var(--gold);
  border: 1px solid rgba(200,144,96,0.4);
  border-radius: 100px;
  padding: 1px 7px;
  letter-spacing: 0.1em;
  background: var(--gold-dim);
}

.modal-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.modal-close {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text3);
  cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.12s;
}

.modal-close:hover { color: var(--text); border-color: var(--border2); }

.modal-body { padding: 1rem 1.375rem 0; }

.modal > p {
  padding: 0.875rem 1.375rem;
  color: var(--text2);
  font-size: 0.875rem;
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  border-top: 1px solid var(--border);
}

/* ── Detail Modal ───────────────────────────────────────────────────────── */
.modal-detail {
  max-width: 560px;
  width: 100%;
}

.detail-image-wrap {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
}

.detail-image-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.detail-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.detail-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.detail-link-btn {
  font-size: 0.8rem;
}

.mod-card:hover {
  border-color: var(--accent);
  transition: border-color 0.15s;
}

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .tabs-row { flex-direction: column; align-items: flex-start; }
  .tabs-type { margin-left: 0; }
}

@media (max-width: 640px) {
  header { padding: 0 1rem; }
  .container { padding: 1rem; }
  .stats-bar { grid-template-columns: 1fr; gap: 8px; }
  .mod-grid { grid-template-columns: 1fr; gap: 8px; }
  .username-badge { display: none; }
  .header-section { display: none; }
  .type-selector { flex-direction: column; }
}
