:root {
  --bg: #0b1020;
  --bg2: #0f152b;
  --card: #151c34;
  --line: #25304f;
  --text: #eef2ff;
  --muted: #9aa6c7;
  --brand: #6c5ce7;
  --brand2: #00d4a0;
  --accent: #ffd33d;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.hl { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), #8a7bff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 8px 24px rgba(108, 92, 231, .35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(108, 92, 231, .5); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 38px; font-size: 18px; }
.btn-sm { padding: 9px 18px; font-size: 14px; box-shadow: none; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 16, 32, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; letter-spacing: 2px; font-size: 20px; color: var(--text); text-decoration: none; }

/* Hero */
.hero {
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(108,92,231,.35), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(0,212,160,.18), transparent 60%),
    var(--bg);
  padding: 80px 0 90px;
}
.hero-inner { text-align: center; max-width: 800px; }
.pill {
  display: inline-block; background: rgba(255,211,61,.12); color: var(--accent);
  border: 1px solid rgba(255,211,61,.35); padding: 7px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); margin: 22px auto 30px; max-width: 600px; }
.rhythm { font-size: clamp(18px, 2.6vw, 23px); line-height: 1.7; margin: 24px auto 32px; color: var(--text); }
.rhythm strong { color: var(--brand2); }
.microtrust { margin-top: 18px; color: var(--muted); font-size: 14px; }

/* Lists */
.asklist { font-size: clamp(18px, 2.6vw, 22px); line-height: 1.9; font-weight: 600; margin: 20px 0 24px; }
.yeslist, .nolist-center { list-style: none; display: inline-block; text-align: left; margin: 16px 0 22px; }
.yeslist li { font-size: 19px; padding: 7px 0; font-weight: 600; }
.nolist-center li { font-size: 19px; padding: 7px 0; color: var(--muted); font-weight: 600; }
.money { font-size: clamp(30px, 6vw, 48px); font-weight: 800; color: var(--accent); margin: 14px 0; }
.accepts-title { margin-top: 36px; font-size: 22px; }
.center-cats { justify-content: center; margin-top: 18px; }

/* Bands & sections */
.band { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }
.section { padding: 72px 0; }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.big { font-size: clamp(18px, 2.4vw, 22px); margin: 10px 0; }
.quote { font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: var(--brand2); margin: 18px 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 40px 0 36px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.step-n {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: 20px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2)); color: #fff;
}

/* How it works (vertical) */
.how { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.howrow {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px;
}
.howrow .step-n { flex-shrink: 0; margin-bottom: 0; }
.how-body { flex: 1; }
.how-body h3 { margin-bottom: 6px; }
.how-body .yeslist { margin: 12px 0; }
.how-body .yeslist li { font-size: 17px; padding: 5px 0; }

.roteiro-label { margin-top: 14px; font-weight: 600; }

/* Lista numerada com badge redondo */
.steplist { list-style: none; counter-reset: step; margin: 14px 0; display: flex; flex-direction: column; gap: 9px; }
.steplist li { counter-increment: step; display: flex; align-items: center; gap: 12px; font-size: 17px; }
.steplist li::before {
  content: counter(step);
  flex-shrink: 0; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(108,92,231,.16);
  border: 1px solid rgba(108,92,231,.5);
  color: #b9acff; font-weight: 700; font-size: 13px;
}
.tip { margin-top: 14px; padding: 13px 16px; font-size: 15px; line-height: 1.5;
  background: rgba(0,212,160,.08); border: 1px solid rgba(0,212,160,.3); border-radius: 12px; }
.tip strong { color: var(--brand2); }

/* Two col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.nolist { list-style: none; margin: 18px 0; }
.nolist li { font-size: 19px; padding: 6px 0; color: var(--muted); }
.cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cats span { background: var(--card); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; font-weight: 600; }

/* Form */
.upload { background: var(--bg2); border-top: 1px solid var(--line); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; margin-top: 28px; display: flex; flex-direction: column; gap: 16px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: 14px; }
input, select {
  font-family: inherit; font-size: 16px; color: var(--text);
  background: #0e1430; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 14px; outline: none; transition: border-color .15s;
}
input::placeholder { color: #5e6a8c; }
input:focus, select:focus { border-color: var(--brand); }
.filewrap input[type=file] { padding: 11px; }
.filehint { font-weight: 500; color: var(--muted); font-size: 13px; }
.formnote { text-align: center; font-size: 14px; min-height: 20px; }
.formnote.err { color: #ff6b6b; }
.formnote.ok { color: var(--brand2); }

/* Progress */
.progress { height: 10px; background: #0e1430; border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand2)); transition: width .2s; }

/* Success */
.success { background: var(--bg2); }
.check {
  width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 44px; color: #fff;
  background: linear-gradient(135deg, var(--brand2), #00b389);
}

/* Página legal (Política / Termos) */
.legal-page { max-width: 760px; padding: 48px 20px 80px; }
.legal-page h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; margin-bottom: 6px; }
.legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal-page h2 { font-size: 20px; font-weight: 700; margin: 30px 0 10px; }
.legal-page p { color: #c7cfe6; line-height: 1.7; margin: 10px 0; }
.legal-page ul { margin: 10px 0 10px 22px; }
.legal-page li { color: #c7cfe6; line-height: 1.7; padding: 2px 0; }
.legal-back { margin-top: 40px; }

/* Footer */
.footer { padding: 50px 0; border-top: 1px solid var(--line); }
.footer .logo { display: block; margin-bottom: 6px; }
.fineprint { font-size: 12px; color: #6c7699; max-width: 560px; margin: 16px auto 0; }

/* Nav (topbar) */
.nav { display: flex; align-items: center; gap: 18px; }
.navlink { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px; }
.navlink:hover { color: var(--text); }
.navuser { color: var(--muted); font-size: 14px; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Modal de login */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto; background: rgba(5,8,18,.72); backdrop-filter: blur(5px); }
.modal { position: relative; width: 100%; max-width: 420px; margin: auto; }
.modal-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: none; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0;
  background: transparent; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; transition: background .12s, color .12s; }
.modal-close:hover { color: var(--text); background: rgba(255,255,255,.08); }
.auth-logo { text-align: center; font-weight: 800; letter-spacing: 2px; font-size: 22px; color: var(--text); margin-bottom: 18px; }
.authcard { width: 100%; max-width: 420px; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
.tabs { display: flex; gap: 6px; background: #0e1430; border: 1px solid var(--line); border-radius: 12px; padding: 5px; margin-bottom: 22px; }
.tab { flex: 1; padding: 11px; border: none; background: transparent; color: var(--muted); font-family: inherit; font-weight: 700; font-size: 15px; border-radius: 9px; cursor: pointer; }
.tab.active { background: linear-gradient(135deg, var(--brand), #8a7bff); color: #fff; }
.authform { display: flex; flex-direction: column; gap: 15px; }
.forgot { align-self: flex-end; margin-top: -6px; font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 600; }
.forgot:hover { color: var(--text); }
.checkrow { flex-direction: row !important; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; line-height: 1.5; }
.checkrow input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; accent-color: var(--brand); cursor: pointer; }
.checkrow a { color: var(--brand2); }
.authtoggle { margin-top: 16px; font-size: 14px; text-align: center; }
.authtoggle a { color: var(--brand2); font-weight: 700; text-decoration: none; }
.terms-note { font-size: 12px; text-align: center; line-height: 1.5; margin-top: 4px; }
.terms-note a { color: var(--muted); text-decoration: underline; }
.legal { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; font-size: 13px; }
.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--text); }
.legal span { margin: 0 8px; opacity: .6; }

/* Botão Google */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; border-radius: 12px; cursor: pointer;
  background: #fff; color: #1f2330; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 1px solid #e2e5ee; transition: filter .12s;
}
.btn-google:hover { filter: brightness(0.97); }

/* Divisor "ou" */
.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted); font-size: 13px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* Painel */
.panel { padding: 40px 20px 80px; }
.panel-title { font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin-bottom: 26px; }
.panel-block { margin-bottom: 40px; }
.panel-block > h2 { font-size: 22px; margin-bottom: 6px; }
.panel-block .card { margin-top: 18px; }

/* Lista de envios (usuario) */
.subs { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.sub { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.sub-date { font-size: 13px; margin-top: 4px; }
.sub-note { font-size: 13px; margin-top: 6px; color: #ffb4b4; }
.sub-note-ok { color: var(--brand2); }
.sub-reward { font-size: 15px; font-weight: 800; color: var(--brand2); margin-top: 6px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; padding: 7px 13px; border-radius: 999px; white-space: nowrap; }
.badge-wait { background: rgba(255,211,61,.12); color: var(--accent); border: 1px solid rgba(255,211,61,.3); }
.badge-ok { background: rgba(0,212,160,.14); color: var(--brand2); border: 1px solid rgba(0,212,160,.35); }
.badge-no { background: rgba(255,107,107,.12); color: #ff6b6b; border: 1px solid rgba(255,107,107,.35); }

/* Admin - layout com menu lateral */
.admin-layout { display: flex; min-height: 100vh; }
.sidebar { width: 232px; flex-shrink: 0; background: var(--bg2); border-right: 1px solid var(--line);
  padding: 24px 18px; display: flex; flex-direction: column; gap: 6px; position: sticky; top: 0; height: 100vh; }
.sidebar .logo { margin-bottom: 26px; font-size: 19px; }
.sidenav { display: flex; flex-direction: column; gap: 4px; }
.sidelink { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: transparent; border: none; color: var(--muted); font-family: inherit; font-weight: 600;
  font-size: 15px; padding: 11px 14px; border-radius: 10px; cursor: pointer; transition: background .12s, color .12s; }
.sidelink:hover { background: rgba(255,255,255,.05); color: var(--text); }
.sidelink.active { background: var(--brand); color: #fff; }
.sidefoot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.admin-main { flex: 1; min-width: 0; padding: 36px 40px; }
.admin-main .panel-title { margin-bottom: 24px; }

/* Admin */
.admin-h2 { font-size: 20px; font-weight: 800; margin: 8px 0 16px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 28px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-size: 30px; font-weight: 800; line-height: 1; }
.stat-l { font-size: 13px; color: var(--muted); font-weight: 600; }
.stat-wait { border-color: rgba(255,211,61,.35); }
.stat-ok { border-color: rgba(0,212,160,.4); }
.stat-no { border-color: rgba(255,107,107,.4); }

/* Estatísticas */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.stats-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.stats-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.stats-card-wide { grid-column: 1 / -1; }
.card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.card-head h3 { margin-bottom: 0; }
.periodbar { display: flex; gap: 6px; }
.periodbtn { background: #0e1430; border: 1px solid var(--line); color: var(--muted); font-family: inherit;
  font-weight: 600; font-size: 12px; padding: 6px 13px; border-radius: 999px; cursor: pointer; transition: background .12s, color .12s; }
.periodbtn:hover { color: var(--text); }
.periodbtn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.bars { display: flex; flex-direction: column; gap: 11px; }
.barrow { display: grid; grid-template-columns: 130px 1fr 34px; align-items: center; gap: 12px; font-size: 13px; }
.bar-label { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-track { height: 9px; background: #0e1430; border-radius: 999px; overflow: hidden; }
.bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand2)); }
.bar-val { text-align: right; font-weight: 700; color: var(--text); }
.searchbar { width: 100%; margin-bottom: 16px; font-family: inherit; font-size: 15px; color: var(--text);
  background: #0e1430; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.searchbar::placeholder { color: #5e6a8c; }
.searchbar:focus { outline: none; border-color: var(--brand); }
.adminbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filterbtn { background: var(--card); border: 1px solid var(--line); color: var(--muted); font-family: inherit; font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px; cursor: pointer; }
.filterbtn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.adminlist { display: flex; flex-direction: column; gap: 14px; }
.admincard { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.admincard-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.admincard-head .badge { margin-left: 8px; }
.admincard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; font-size: 13px; margin: 14px 0; }
.admincard-grid b { color: var(--text); font-weight: 600; }
.admincard-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.notein { flex: 1; min-width: 200px; font-family: inherit; font-size: 14px; color: var(--text); background: #0e1430; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.act-ok { background: linear-gradient(135deg, var(--brand2), #00b389); box-shadow: none; }
.act-no { background: #ff6b6b; box-shadow: none; }
.act-wait { background: #39425f; box-shadow: none; }
.act-paid { background: #0e1430; border: 1px solid var(--line); color: var(--text); box-shadow: none; }
.act-paid:not([disabled]):hover { border-color: #22c55e; color: #fff; }
.act-paid.is-paid { background: linear-gradient(135deg, #22c55e, #16a34a); border-color: transparent; color: #fff; }
.act-paid[disabled] { opacity: .45; }
.badge-paid { background: rgba(34,197,94,.16); color: #22c55e; border: 1px solid rgba(34,197,94,.4); }
.badge-arch { background: rgba(154,166,199,.14); color: var(--muted); border: 1px solid var(--line); }
.act-archive { background: transparent; border: 1px solid var(--line); color: var(--muted); box-shadow: none; }
.act-archive:hover { border-color: var(--muted); color: var(--text); }
.sub-paid { color: #22c55e; font-weight: 700; }

/* Admin - usuários */
.userslist { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.userrow { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; }
.user-email { font-size: 13px; margin-top: 3px; }
.usermeta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.usermeta b { color: var(--text); font-weight: 600; }
.user-videos b { color: var(--brand2); }
.userrow-click { cursor: pointer; transition: border-color .12s, background .12s; }
.userrow-click:hover { border-color: var(--brand); background: #1a2240; }

/* Modal detalhe do usuário */
.modal-lg { max-width: 640px; }
.modal-body { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
.udetail-head h2 { font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.udetail-head .muted { font-size: 14px; margin-top: 2px; }
.udetail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0; }
.udetail-grid > div { display: flex; flex-direction: column; gap: 3px; background: #0e1430; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.udetail-grid span { font-size: 12px; }
.udetail-grid strong { font-size: 15px; }
.udetail-h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.udetail-vids { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; }
.udetail-vid { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #0e1430; border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; }
.udetail-vid-right { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.udetail-access { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: #0e1430; border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; font-size: 13px; }

/* Indicador online/offline */
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.dot.on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.dot.off { background: #4b5573; }

/* Botão-link (abre player) e player de vídeo */
.linkbtn { background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
  font-weight: 600; font-size: 14px; color: var(--brand2); white-space: nowrap; }
.linkbtn:hover { text-decoration: underline; }
.videoplayer { width: 100%; max-height: 70vh; border-radius: 12px; background: #000; display: block; }
.videometa { margin-top: 12px; font-size: 14px; font-weight: 600; }
#videoDrive { display: inline-block; margin-top: 8px; font-size: 13px; }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .row { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .sub { flex-direction: column; align-items: flex-start; gap: 10px; }
  .admincard-grid { grid-template-columns: 1fr; }
  .navuser { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { flex-direction: column; }
  .sidebar { width: auto; height: auto; position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; padding: 14px 16px; }
  .sidebar .logo { margin-bottom: 0; margin-right: auto; }
  .sidenav { flex-direction: row; flex-wrap: wrap; }
  .sidefoot { margin-top: 0; flex-direction: row; gap: 14px; padding-top: 0; border-top: none; width: 100%; }
  .admin-main { padding: 24px 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .barrow { grid-template-columns: 100px 1fr 30px; }
}
