/* ══════════════════════════════════════════════════════════════
   RénéVéo — styles.css
   Header · Footer · Toasts · Notifications
══════════════════════════════════════════════════════════════ */

:root {
  --p:    #6934da;
  --p2:   #8f61ff;
  --bg:   #080808;
  --card: #101010;
  --card2:#171717;
  --txt:  #ffffff;
  --muted:#9a9aaa;
  --bdr:  rgba(255,255,255,.07);
  --live: #ff4d6d;
  --gold: #f4c542;
  --fire: #ff6428;
  --r:    14px;
  --hh:   62px;
}

.rv-header *, .rv-footer *, .rv-toast * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.rv-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  height: var(--hh);
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border-bottom: 1px solid var(--bdr);
  font-family: 'Inter', sans-serif;
}

.rv-header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 32px;
}

/* ── Logo ─────────────────────────────────── */
.rv-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.rv-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(143,97,255,.35));
  transition: filter .2s;
}
.rv-logo-link:hover .rv-logo {
  filter: drop-shadow(0 0 18px rgba(143,97,255,.65));
}

/* ── Nav desktop ──────────────────────────── */
.rv-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.rv-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.rv-nav-link:hover  { color: var(--txt); background: rgba(255,255,255,.055); }
.rv-nav-link.active { color: var(--txt); background: rgba(105,52,218,.14); }

/* Pill LIVE */
.rv-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,77,109,.15);
  border: 1px solid rgba(255,77,109,.28);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--live);
  text-transform: uppercase;
}
.rv-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 6px rgba(255,77,109,.7);
  animation: rv-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes rv-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* ── Côté droit ───────────────────────────── */
.rv-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.rv-auth-buttons { display: flex; align-items: center; gap: 8px; }

.rv-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, var(--p));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: filter .15s, transform .15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.rv-btn-login:hover { filter: brightness(1.14); transform: translateY(-1px); }

.rv-btn-register {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid var(--bdr);
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
}
.rv-btn-register:hover {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
}

/* Zone user connecté */
.rv-user-area { display: flex; align-items: center; gap: 8px; }

/* ── Badge points ─────────────────────────── */
.rv-user-pts {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(244,197,66,.1);
  border: 1px solid rgba(244,197,66,.2);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: default;
}
.rv-user-pts.rv-pts-bump { animation: rv-pts-pop .45s ease; }
@keyframes rv-pts-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.13); background: rgba(244,197,66,.24); }
  100% { transform: scale(1); }
}

/* ── Badge streak ─────────────────────────── */
.rv-streak-badge {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,100,40,.1);
  border: 1px solid rgba(255,100,40,.25);
  color: #ff9060;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: default;
}
.rv-streak-badge i { color: var(--fire); font-size: .88rem; }
.rv-streak-badge.rv-streak-bump { animation: rv-streak-pop .5s ease; }
@keyframes rv-streak-pop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.18); background: rgba(255,100,40,.22); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* ── Cloche notifications ─────────────────── */
.rv-notif-btn {
  position: relative;
  display: none; /* affiché par JS si connecté */
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr);
  color: var(--muted);
  font-size: .92rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
  padding: 0;
}
.rv-notif-btn:hover,
.rv-notif-btn.active {
  background: rgba(143,97,255,.16);
  border-color: rgba(143,97,255,.4);
  color: var(--p2);
}

/* Point rouge non-lu */
.rv-notif-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live);
  border: 2px solid rgba(8,8,8,.9);
  pointer-events: none;
  animation: rv-notif-pulse 2s ease-in-out infinite;
}
@keyframes rv-notif-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,109,.6); }
  50%       { box-shadow: 0 0 0 4px rgba(255,77,109,0); }
}

/* ── Avatar ───────────────────────────────── */
.rv-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--p2));
  border: 2px solid rgba(143,97,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  text-transform: uppercase;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
}
.rv-avatar.has-photo { border-color: transparent; background: transparent; }
.rv-avatar.has-photo:hover { box-shadow: 0 0 0 2px rgba(255,255,255,.18); }
.rv-avatar:not(.has-photo):hover {
  border-color: var(--p2);
  box-shadow: 0 0 0 3px rgba(143,97,255,.18);
}
.rv-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Burger ───────────────────────────────── */
.rv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 0 9px;
  cursor: pointer;
  transition: background .15s;
}
.rv-burger:hover { background: rgba(255,255,255,.1); }
.rv-burger span {
  display: block;
  height: 1.5px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.rv-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.rv-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rv-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Menu mobile ──────────────────────────── */
.rv-mobile-menu {
  display: none;
  position: absolute;
  top: var(--hh); left: 0; right: 0;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr);
  padding: 14px 18px 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  font-family: 'Inter', sans-serif;
}
.rv-mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }

.rv-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.rv-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.rv-mobile-nav a:hover,
.rv-mobile-nav a.active { color: var(--txt); background: rgba(255,255,255,.055); }

.rv-mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--bdr);
}
.rv-mobile-auth .rv-btn-login,
.rv-mobile-auth .rv-btn-register { justify-content: center; padding: 11px; font-size: .88rem; }

/* ══════════════════════════════════════════════════════════════
   PANNEAU NOTIFICATIONS — dropdown sobre sous la cloche
   Injecté dans <body> → position:fixed, zéro clipping.
══════════════════════════════════════════════════════════════ */

.rv-notif-overlay {
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: transparent;
  pointer-events: none;
}
.rv-notif-overlay.open { pointer-events: all; }

/* Dropdown */
.rv-notif-panel {
  position: fixed;
  top: calc(var(--hh) + 10px);
  right: 20px;
  z-index: 1100;
  width: 340px;
  max-width: calc(100vw - 24px);
  max-height: 480px;
  display: flex;
  flex-direction: column;
  background: rgba(10,9,18,.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(143,97,255,.15);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(143,97,255,.06),
    0 4px 12px rgba(0,0,0,.3),
    0 20px 60px rgba(0,0,0,.6);
  font-family: 'Inter', sans-serif;
  transform-origin: top right;
  transform: scale(.95) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), opacity .15s ease;
  overflow: hidden;
}
.rv-notif-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Petite flèche vers la cloche */
.rv-notif-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 13px;
  width: 12px;
  height: 6px;
  background: rgba(10,9,18,.96);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid rgba(143,97,255,.15);
  border-right: 1px solid rgba(143,97,255,.15);
}

/* En-tête */
.rv-notif-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.rv-notif-panel-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.rv-notif-panel-title i { color: var(--p2); font-size: .8rem; }

.rv-notif-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  cursor: pointer;
  font-size: .68rem;
  transition: background .15s, color .15s;
  font-family: inherit;
}
.rv-notif-close:hover { background: rgba(255,255,255,.1); color: var(--txt); }

/* Liste scrollable */
.rv-notif-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.06) transparent;
}

/* État vide */
.rv-notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
}
.rv-notif-empty i { font-size: 1.3rem; opacity: .3; }

/* Item */
.rv-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .12s;
  cursor: default;
  user-select: none;
  position: relative;
}
.rv-notif-item:last-child { border-bottom: none; }
.rv-notif-item.rv-notif-unread { background: rgba(255,255,255,.025); }
.rv-notif-item.rv-notif-clickable { cursor: pointer; }
.rv-notif-item.rv-notif-clickable:hover { background: rgba(255,255,255,.04); }

/* Icône — carré arrondi, comme modal-icon-wrap de profile.html */
.rv-notif-icon-wrap {
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.rv-notif-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  /* background et color définis en inline via TYPE_META */
}

/* Pastille non-lu sur l'icône */
.rv-notif-unread-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  border: 1.5px solid rgba(10,9,18,.96);
}

/* Contenu */
.rv-notif-content { flex: 1; min-width: 0; }

/* Ligne titre + temps — toujours sur la même ligne */
.rv-notif-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

/* Titre */
.rv-notif-item-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.4;
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

/* Temps — toujours inline à droite du titre */
.rv-notif-time-only {
  font-size: .68rem;
  font-weight: 500;
  color: rgba(154,154,170,.5);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Body */
.rv-notif-item-sub {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 4px;
  word-break: break-word;
}

/* CTA lien */
.rv-notif-cta-row { margin-top: 4px; }
.rv-notif-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--p2);
}
.rv-notif-cta i { font-size: .7rem; }

/* Mobile */
@media (max-width: 500px) {
  .rv-notif-panel {
    right: 8px; left: 8px;
    width: auto; max-width: none;
    top: calc(var(--hh) + 6px);
  }
  .rv-notif-panel::before { right: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   TOASTS
══════════════════════════════════════════════════════════════ */
.rv-toast {
  position: fixed;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  min-width: 268px;
  max-width: 340px;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .28s ease;
}
.rv-toast.rv-toast-in  { transform: translateX(0); opacity: 1; pointer-events: all; }
.rv-toast.rv-toast-out {
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition: transform .3s ease, opacity .25s ease;
}

#rvToastDaily {
  top: calc(var(--hh) + 14px);
  background: linear-gradient(135deg, rgba(15,10,30,.98), rgba(12,8,24,.98));
  border: 1px solid rgba(143,97,255,.35);
  box-shadow: 0 0 0 1px rgba(143,97,255,.1), 0 24px 60px rgba(0,0,0,.75), 0 0 40px rgba(105,52,218,.15);
}
#rvToastStreak {
  top: calc(var(--hh) + 14px + 86px);
  background: linear-gradient(135deg, rgba(30,12,5,.98), rgba(20,8,3,.98));
  border: 1px solid rgba(255,100,40,.35);
  box-shadow: 0 0 0 1px rgba(255,100,40,.1), 0 24px 60px rgba(0,0,0,.75), 0 0 40px rgba(255,80,20,.12);
}

.rv-toast-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
#rvToastDaily .rv-toast-icon {
  background: linear-gradient(135deg, rgba(244,197,66,.22), rgba(244,197,66,.08));
  border: 1px solid rgba(244,197,66,.28);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(244,197,66,.12);
}
#rvToastStreak .rv-toast-icon {
  background: linear-gradient(135deg, rgba(255,100,40,.22), rgba(255,60,10,.08));
  border: 1px solid rgba(255,100,40,.3);
  color: #ff7040;
  box-shadow: 0 0 18px rgba(255,80,20,.14);
}

.rv-toast-body { flex: 1; min-width: 0; }
.rv-toast-title { font-size: .85rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.rv-toast-sub   { font-size: .74rem; font-weight: 600; color: var(--muted); line-height: 1.4; }
.rv-toast-pts   { font-size: 1.22rem; font-weight: 900; flex-shrink: 0; letter-spacing: -.03em; }

#rvToastDaily  .rv-toast-pts { color: var(--gold); text-shadow: 0 0 12px rgba(244,197,66,.4); }
#rvToastStreak .rv-toast-pts { color: #ff9060;     text-shadow: 0 0 12px rgba(255,100,40,.4); }

.rv-toast-bar {
  position: absolute; left: 0; bottom: 0;
  height: 3px; width: 100%;
  background: rgba(255,255,255,.06);
}
.rv-toast-bar-fill {
  height: 100%; width: 100%;
  transform-origin: left;
  animation: rv-toast-drain linear forwards;
}
#rvToastDaily  .rv-toast-bar-fill { background: linear-gradient(90deg, var(--p), var(--p2)); }
#rvToastStreak .rv-toast-bar-fill { background: linear-gradient(90deg, #c83200, #ff7040); }
@keyframes rv-toast-drain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.rv-footer {
  font-family: 'Inter', sans-serif;
  background: var(--card);
  border-top: 1px solid var(--bdr);
}
.rv-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 52px 28px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.rv-footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
.rv-footer-logo  { height: 26px; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(143,97,255,.28)); }
.rv-footer-tagline { color: var(--muted); font-size: .83rem; font-weight: 500; line-height: 1.6; }
.rv-footer-tagline strong { color: rgba(255,255,255,.72); font-weight: 700; }
.rv-footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(105,52,218,.14); border: 1px solid rgba(143,97,255,.22);
  color: #c4abff; font-size: .7rem; font-weight: 700; letter-spacing: .04em; width: fit-content;
}
.rv-footer-cols { display: flex; gap: 52px; }
.rv-footer-col h4 {
  font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.rv-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rv-footer-col a {
  color: var(--muted); font-size: .84rem; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .15s;
}
.rv-footer-col a:hover { color: var(--txt); }
.rv-footer-col a i { font-size: .7rem; width: 14px; text-align: center; flex-shrink: 0; }
.rv-footer-bottom {
  max-width: 1440px; margin: 0 auto; padding: 18px 28px;
  border-top: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.rv-footer-bottom span { color: rgba(255,255,255,.25); font-size: .76rem; font-weight: 500; font-family: 'Inter', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .rv-nav          { display: none; }
  .rv-auth-buttons { display: none; }
  .rv-burger       { display: flex; }
  .rv-mobile-menu  { display: block; }
  .rv-header-inner { padding: 0 16px; gap: 0; }

  .rv-user-area { gap: 6px; }
  .rv-user-pts  { padding: 5px 9px; font-size: .72rem; gap: 4px; }
  .rv-streak-badge { padding: 5px 9px; font-size: .72rem; gap: 4px; }
  .rv-avatar    { width: 30px; height: 30px; font-size: .72rem; }
  .rv-notif-btn { width: 30px; height: 30px; font-size: .82rem; }

  .rv-footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 32px; }
  .rv-footer-cols  { flex-wrap: wrap; gap: 32px; }

  .rv-toast { right: 12px; left: 12px; min-width: 0; max-width: none; }
  #rvToastStreak { top: calc(var(--hh) + 14px + 92px); }
}

@media (max-width: 560px) {
  .rv-footer-cols { gap: 24px; }
  .rv-footer-cols .rv-footer-col { min-width: calc(50% - 12px); }
  .rv-footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 20px; }
  .rv-user-pts { padding: 5px 8px; }
}