/* ===========================
   BASE / VARIABLES
   =========================== */
*{margin:0;padding:0;box-sizing:border-box}

:root{
  /* Base */
  --bg-dark:#0d1117;
  --bg-darker:#05080a;

  /* Futurist background */
  --bg: #0b0f1a;

  /* Nav */
  --nav-bg: rgba(10,12,18,.78);
  --nav-border: rgba(255,255,255,.10);
  --nav-shadow: rgba(0,0,0,.55);

  /* Text */
  --txt: #e6e9ef;
  --muted: #aab1c2;

  /* Chips */
  --chip-bg: rgba(255,255,255,.06);
  --sub-chip-bg: linear-gradient(90deg,#00e5ff33,#ff00e533);
  --sub-chip-border: rgba(0,229,255,.35);
  --sub-chip-glow: 0 0 18px rgba(0,229,255,.25), 0 0 28px rgba(255,0,229,.18);

  /* Futurist panels */
  --panel: rgba(17, 24, 39, 0.6);
  --border: rgba(99, 102, 241, 0.35);
  --text: #e5e7eb;

  /* Accents */
  --accent: #00e5ff;
  --accent2: #ff00e5;
  --glow: 0 0 24px rgba(0,229,255,.25), 0 0 48px rgba(255,0,229,.15);
}

html, body { height:100%; }

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;

  /* Combine your 2 intentions:
     - animated gradient base
     - futurist radial overlay
  */
  background:
    radial-gradient(1200px 600px at 70% -20%, #111827 0%, var(--bg) 40%, #070b13 100%) fixed,
    linear-gradient(135deg,var(--bg-dark),var(--bg-darker));
  background-size:auto, 200% 200%;

  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;

  animation:gradientShift 15s ease infinite;
  overflow-x:hidden;
  position:relative;
}

@keyframes gradientShift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* ===========================
   TOP STACK / NAV
   =========================== */
.osg-stack{
  position:fixed;
  top:1rem;
  left:50%;
  transform:translateX(-50%);
  width:min(96vw,1400px);
  z-index:120;
  pointer-events:none;
}
.osg-stack > *{ pointer-events:auto; }

.osg-nav{
  background:var(--nav-bg);
  border:1px solid var(--nav-border);
  border-radius:30px;
  box-shadow:0 10px 24px var(--nav-shadow);
  padding:.5rem .8rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.osg-menu{
  list-style:none;
  display:flex;
  gap:.6rem;
  margin:0;
  padding:0;
  align-items:center;
  justify-content:center;
}

.link{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--txt);
  text-decoration:none;
  font-weight:700;
  background:var(--chip-bg);
  padding:.45rem .8rem;
  border-radius:16px;
  line-height:1;
  transition:transform .08s ease, background-color .25s ease, color .25s ease;
}
.link:hover{ transform:translateY(-1px); background:rgba(255,255,255,.12); }

.item.has-sub{ position:relative; }

.sub-toggle{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  cursor:pointer;
  color:var(--txt);
  font-weight:800;
  letter-spacing:.02em;
  background:var(--sub-chip-bg);
  border:1px solid var(--sub-chip-border);
  box-shadow:var(--sub-chip-glow);
  padding:.6rem .9rem;
  border-radius:18px;
  line-height:1;
}

.sub-toggle .chev{ width:16px; height:16px; flex:0 0 auto; }

.sub{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:220px;
  list-style:none;
  padding:.35rem 0;
  margin:0;
  background:rgba(12,16,25,.98);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  box-shadow:0 12px 28px rgba(0,0,0,.5);
}
.sub[hidden]{ display:none; }

.sub-link{
  display:block;
  width:100%;
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  padding:.55rem .9rem;
  border-radius:10px;
}
.sub-link:hover{ background:rgba(99,102,241,.18); color:#fff; }

.sub-toggle[aria-expanded="true"] + .sub{ display:block; }
.sub-toggle[aria-expanded="true"] .chev{ transform:rotate(180deg); transition:transform .2s ease; }

/* Burger */
.osg-burger{
  display:none;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:.5rem;
  color:var(--txt);
  margin-right:.5rem;
}
.osg-burger-bar{
  display:block;
  width:24px;
  height:2px;
  background:currentColor;
  margin:5px 0;
  border-radius:2px;
}

/* ===========================
   ADMIN SIDEBAR (kept)
   =========================== */
.admin-sidebar{
  position:fixed;
  left:0;
  z-index:115;
  top:50% !important;
  transform: translateY(-50%) !important;
  width:270px;
  max-height:86vh;
  overflow:hidden;
  border-radius:0 18px 18px 0;
  background: rgba(8, 11, 18, 0.78);
  border: 1px solid rgba(99,102,241,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.admin-sidebar-inner{
  max-height:86vh;
  overflow:auto;
  padding: 14px 12px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.admin-sidebar-title{
  margin: 4px 6px 8px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255,255,255,.08);
  color: #dbeafe;
  font-size: .82rem;
  letter-spacing: .14em;
  font-family:'Orbitron',system-ui,sans-serif;
  text-transform:uppercase;
}
.next-meeting-chip{
  display:block;
  margin: 0 6px 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255,255,255,.08);
  color:#c7f9ff;
  font-weight:700;
  font-size:.78rem;
  white-space:normal;
}
.next-meeting-chip strong{ display:block; opacity:.85; font-size:.74rem; }

.admin-menu-collapse .osg-admin-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-group{ width:100%; }

.admin-group-toggle{
  margin: 0 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  height: 38px;
  line-height: 38px;
  padding: 0 12px;
  width:100%;
  font-family:'Orbitron',system-ui,sans-serif;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#c7d2fe;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.admin-group-toggle::after{ content:">"; opacity:.6; transition:transform .2s ease; }
.admin-group.open > .admin-group-toggle::after{ transform:rotate(90deg); }

.admin-submenu{
  display:none;
  list-style:none;
  margin: 6px 10px 10px 18px;
  padding: 8px 6px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}
.admin-group.open > .admin-submenu{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.admin-pill{
  display:block;
  padding: 8px 10px;
  border-radius: 12px;
  font-family:'Orbitron',system-ui,sans-serif;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#c7d2fe;
  opacity:.9;
  text-decoration:none;
}
.admin-pill:hover{ background: rgba(99,102,241,.14) !important; opacity: 1; }

.sidebar-live-stats{
  margin: 10px 6px 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.30);
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: .74rem;
  letter-spacing: .04em;
  color: #dbeafe;
}
.sidebar-live-stats .row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.sidebar-live-stats .row:last-child{ border-bottom:0; }
.sidebar-live-stats .label{ opacity:.85; }
.sidebar-live-stats .val{ font-weight:800; color:#c7f9ff; }
.sidebar-live-stats .muted{ opacity:.7; font-weight:700; }

body.has-admin-sidebar main{ margin-left:400px; }
body.has-admin-sidebar .osg-stack{
  left: calc(50% + 130px);
  width: calc(96vw - 260px);
  transform: translateX(-50%);
}

/* ===========================
   RESPONSIVE NAV
   =========================== */
@media (max-width:900px){
  .osg-nav{ justify-content:space-between; }
  .osg-burger{ display:inline-block; }

  .osg-menu{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
    gap:.4rem;
  }
  .osg-menu[data-collapsed="false"]{ max-height:80vh; }

  .item{ width:100%; }
  .link, .item.has-sub > .sub-toggle{ width:100%; justify-content:flex-start; }

  .item.has-sub .sub{
    position:static;
    box-shadow:none;
    border:0;
    background:transparent;
    padding:.25rem 0 0 .5rem;
  }
  .sub-link{ padding-left:1rem; }
}

/* ===========================
   GOOGLE TRANSLATE (clean + reliable)
   =========================== */
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-ftab-frame{
  display:none !important;
  visibility:hidden !important;
  height:0 !important;
  width:0 !important;
  border:0 !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget,
.goog-te-gadget-simple,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
body > .skiptranslate{
  display:none !important;
}

html{ margin-top:0 !important; }
body{ top:0 !important; }

/* Engine MUST exist but hidden */
.gt-engine{
  position:absolute !important;
  left:-9999px !important;
  top:0 !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* ===========================
   FUTURIST COMPONENTS
   =========================== */
.vg-container{ position: relative; overflow: hidden; }
.vg-hero{ position: relative; padding: 6rem 1rem 2.5rem; text-align: center; }

.vg-title{
  margin: .75rem 0 0;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: .06em;
  text-shadow: 0 0 14px rgba(0,229,255,.35);
}
.vg-subtitle{
  font-family: 'Exo 2', ui-sans-serif, system-ui;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vg-main{
  width: min(1100px, 92vw);
  margin: 2rem auto 4rem;
  display: grid;
  gap: 1.25rem;
}

.card{
  background: var(--panel);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: var(--glow);
  position: relative;
  overflow: clip;
}
.card.left::before, .card.right::before{
  content:'';
  position:absolute;
  inset: -1px;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(0,229,255,.08),
    rgba(255,0,229,.08),
    rgba(0,229,255,.08)
  );
  filter: blur(24px);
  z-index:-1;
}

.card-title{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size:1.05rem;
  letter-spacing:.06em;
  margin-bottom:.5rem;
  color:#c7d2fe;
}

.vg-list{ margin: .5rem 0 0 1.25rem; line-height: 1.6; color: #cbd5e1; }

.icon-emoji{
  width: 22px;
  height: 22px;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px rgba(0,229,255,.25));
}

.card:focus{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: rgba(0,229,255,.55);
}

.vg-actions{
  margin-top: 1.1rem;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem;
}

/* ===========================
   VG BUTTON – BASE (FINAL)
   =========================== */

.vg-btn{
  appearance: none;
  -webkit-appearance: none;

  /* Glass / panel look */
  background: linear-gradient(
    180deg,
    rgba(2,6,23,.65),
    rgba(2,6,23,.30)
  );
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 10px;

  color: #e5e7eb;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;

  padding: .42rem .9rem;
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;

  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  /* Kill candy glow, keep depth */
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);

  transition:
    transform .12s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* Hover */
.vg-btn:hover{
  transform: translateY(-1px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(2,6,23,.26)
  );
  border-color: rgba(0,229,255,.22);
  box-shadow: 0 16px 30px rgba(0,0,0,.32);
}

/* Active */
.vg-btn:active{
  transform: translateY(0);
  filter: brightness(.98);
}

/* Focus (keyboard accessibility) */
.vg-btn:focus-visible{
  outline: none;
  border-color: rgba(0,229,255,.48);
  box-shadow:
    0 0 0 3px rgba(0,229,255,.20),
    0 16px 30px rgba(0,0,0,.32);
}

/* Disabled */
.vg-btn:disabled,
.vg-btn[aria-disabled="true"]{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.vg-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(0,229,255,.7), 0 0 18px rgba(255,0,229,.4);
}
.vg-btn:active{ transform: scale(0.95); }

/* Grid layout */
.vg-grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.span-12{ grid-column: span 12; }
@media (min-width: 900px){
  .span-7{ grid-column: span 7; }
  .span-5{ grid-column: span 5; }
}

/* ===========================
   METEOR (one-shot)
   =========================== */
.meteor{
  position: fixed;
  top: -80px;
  left: -80px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 28px rgba(0,229,255,.7),
    0 0 48px rgba(255,0,229,.35);
  z-index: 99999;
  pointer-events: none;
  transform: rotate(35deg);
  filter: blur(.2px);
}
.meteor::after{
  content:'';
  position:absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg,
    rgba(255,255,255,.9) 0%,
    rgba(0,229,255,.65) 40%,
    rgba(255,0,229,.0) 100%
  );
  box-shadow: 0 0 18px rgba(0,229,255,.55);
}
@keyframes meteorFly{
  0%   { transform: translate(-10vw, -15vh) rotate(35deg); opacity: 0; }
  8%   { opacity: 1; }
  100% { transform: translate(120vw, 110vh) rotate(35deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .meteor, .meteor::after{ animation: none !important; display: none !important; }
}

/* ===========================
   DONATION THERMOMETERS
   =========================== */
@keyframes neonPulse{
  0%,100%{ border-color:#ff1a1a; box-shadow:0 0 8px #ff1a1a, inset 0 0 12px #ff1a1a; }
  50%{ border-color:#ff4d4d; box-shadow:0 0 16px #ff4d4d, inset 0 0 20px #ff4d4d; }
}
.thermo-box{
  border:2px solid #ff1a1a;
  border-radius:14px;
  padding:1rem;
  margin:1rem 0;
  animation:neonPulse 1.5s infinite alternate;
  background:rgba(17,24,39,0.6);
}
.thermo-title{
  font-family:'Orbitron',system-ui,sans-serif;
  color:#c7d2fe;
  margin:0 0 .4rem;
}
.thermo-info{ color:#e5e7eb; font-size:.9rem; }
.thermo-outer{
  width:100%;
  height:14px;
  background:rgba(148,163,184,.18);
  border-radius:999px;
  overflow:hidden;
}
.thermo-inner.low{ background:#ef4444; }
.thermo-inner.mid{ background:#f59e0b; }
.thermo-inner.ok{ background:#22c55e; }
.thermo-done{ color:#c7f5d4; margin-top:.3rem; }

/* ===========================
   GLOBAL LINKS – CLEAN & FUTURIST
   =========================== */

/* Base links */
a{
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition:
    color .25s ease,
    text-shadow .25s ease,
    background-size .25s ease;
}

/* Animated underline (subtle neon) */
a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity:.8;
}

a:hover{
  color:#fff;
  text-shadow:
    0 0 6px rgba(0,229,255,.45),
    0 0 12px rgba(255,0,229,.25);
}

a:hover::after{
  transform: scaleX(1);
}

/* Focus (accessibility, keyboard nav) */
a:focus-visible{
  outline:none;
  color:#fff;
  text-shadow:0 0 8px rgba(0,229,255,.6);
}
a:focus-visible::after{
  transform: scaleX(1);
}

/* Muted links (inside muted text) */
.muted a{
  color:#9fb8ff;
}
.muted a:hover{
  color:#fff;
}

/* Lists / content links (INI, viewers, docs…) */
.vg-list a,
.viewer-list a,
.card a:not(.vg-btn):not(.link){
  display:inline-block;
  padding:2px 0;
}

/* External links hint (very subtle) */
a[target="_blank"]::before{
  content:"=>";
  font-size:.75em;
  margin-right:4px;
  opacity:.55;
}
.card a:not(.vg-btn):hover{
  text-shadow:
    0 0 8px rgba(0,229,255,.55),
    0 0 16px rgba(255,0,229,.35);
}
/* ===========================
   SUPPORT PAGE SHELL (missing half)
   - layout / hero / sections
   - safe spacing with fixed nav
   - responsive helpers
   =========================== */

/* If your header has a fixed top nav, keep content visible */
.wrap{ padding-top: 96px; } /* increase if nav overlaps */

/* Optional page container */
.support-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* Hero / title block */
.support-hero{
  margin: 80px auto 16px;   /* top space consistent with theme */
  max-width: 1200px;
  padding: 0 16px;
  text-align: center;
  position: relative;
}
.support-title{
  font-family:'Orbitron', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0;
  font-size: clamp(26px, 4.6vw, 44px);
  color:#c7d2fe;
  text-shadow: 0 0 14px rgba(0,229,255,.22);
}
.support-subtitle{
  margin: .5rem 0 0;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 13px;
}

/* Section spacing */
.section{
  margin: 12px 0;
}

/* Two / three column responsive grids for cards */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 840px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Card titles for your .card blocks */
.card h2, .card h3{
  font-family:'Orbitron', system-ui, sans-serif;
  color:#c7d2fe;
  margin: 0 0 8px;
  letter-spacing:.04em;
}
.card p{ margin:.35rem 0; }

/* Small help text */
.help{
  color: var(--muted);
  font-size: .9rem;
}

/* Callouts (info / warn / ok) inside cards */
.callout{
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.35);
  padding: 10px;
  border-radius: 12px;
  margin: 10px 0;
}
.callout.warn{
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.35);
}
.callout.ok{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.35);
}

/* Links global look (keep .btn untouched) */
a:not(.btn){
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
  position: relative;
  transition: color .25s ease, text-shadow .25s ease;
}
a:not(.btn)::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .25s ease;
  opacity:.85;
}
a:not(.btn):hover{
  color:#fff;
  text-shadow: 0 0 6px rgba(0,229,255,.45), 0 0 12px rgba(255,0,229,.25);
}
a:not(.btn):hover::after{ transform: scaleX(1); }

/* Button row wrapper (used in forms) */
.actionsbar{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

/* Table wrapper for mobile (tickets lists) */
.table-wrap{
  width:100%;
  overflow:auto;
  border-radius:12px;
  border:1px solid rgba(99,102,241,.18);
}
.table{ min-width: 880px; } /* prevents crush on mobile */
@media (max-width: 780px){
  .table{ min-width: 720px; }
}

/* Prevent long strings from breaking layout (UUID, URLs, logs) */
pre, code, .table td, .table th, .small{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* Better form focus */
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color: rgba(0,229,255,.55);
  box-shadow: 0 0 0 3px rgba(0,229,255,.12);
}

/* Optional: particles safety if you use it */
#vg-particles{ pointer-events:none; }

.lbsa-chart-wrap{
  margin-top: .7rem;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .6rem .6rem .4rem;
  height: 140px; /* ajuste si besoin */
}

#lbsaDailyChart{
  width: 100% !important;
  height: 100% !important;
}

/* =========================
   SL-style add-on (non-destructive)
   ========================= */

.vg-hero{
  position: relative;
  overflow: hidden;
}

.vg-title{
  text-transform: uppercase;
  letter-spacing: .08em;
  text-shadow:
    0 0 22px rgba(0,229,255,.35),
    0 0 44px rgba(255,0,229,.18);
}

.vg-subtitle--sl{
  max-width: 900px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
  color: rgba(203,213,225,.92);
}

/* KPI row */
.vg-kpis{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}

.vg-kpi{
  min-width: 170px;
  padding: .85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.18));
  box-shadow: 0 0 20px rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.vg-kpi-num{
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.vg-kpi-label{
  margin-top: .25rem;
  font-size: .9rem;
  color: rgba(156,163,175,.95);
}

/* CTA styles layered over your existing .vg-btn */
.vg-btn--primary{
  position: relative;
  border: 1px solid rgba(0,229,255,.5);
  box-shadow:
    0 0 22px rgba(0,229,255,.18),
    0 0 44px rgba(255,0,229,.12);
  transform: translateZ(0);
}

/* ===========================
   VG BUTTON – PRIMARY
   =========================== */

.vg-btn--primary{
  background: linear-gradient(
    90deg,
    rgba(0,229,255,.22),
    rgba(255,0,229,.16)
  );
  border-color: rgba(0,229,255,.45);

  box-shadow:
    0 0 16px rgba(0,229,255,.18),
    0 0 30px rgba(255,0,229,.12),
    0 12px 26px rgba(0,0,0,.30);
}

/* Hover */
.vg-btn--primary:hover{
  background: linear-gradient(
    90deg,
    rgba(0,229,255,.30),
    rgba(255,0,229,.22)
  );
  border-color: rgba(0,229,255,.65);
  filter: brightness(1.06);
  box-shadow:
    0 0 20px rgba(0,229,255,.25),
    0 0 36px rgba(255,0,229,.18),
    0 16px 32px rgba(0,0,0,.34);
}

/* Active */
.vg-btn--primary:active{
  filter: brightness(1.02);
}

/* Focus (keyboard) */
.vg-btn--primary:focus-visible{
  border-color: rgba(0,229,255,.75);
  box-shadow:
    0 0 0 3px rgba(0,229,255,.25),
    0 0 22px rgba(0,229,255,.22),
    0 16px 32px rgba(0,0,0,.34);
}

.vg-btn--ghost{
  background: rgba(2,6,23,.35) !important;
  border: 1px solid rgba(148,163,184,.22) !important;
}

.vg-actions--sl{
  margin-top: 1.25rem;
}

/* HG pill with copy */
.vg-hg-pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.22);
  background: linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.25));
  box-shadow: 0 0 18px rgba(0,0,0,.2);
}

.vg-hg-pill code{
  color: #00e5ff;
}

.vg-copy{
  cursor: pointer;
  border: 1px solid rgba(0,229,255,.35);
  background: rgba(0,229,255,.10);
  color: #e2e8f0;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .85rem;
}
.vg-copy:hover{ filter: brightness(1.1); }

/* Showcase section (SecondLife-like split layout) */
.vg-showcase{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.25rem auto 0;
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(135deg, rgba(0,229,255,.08), rgba(255,0,229,.06), rgba(2,6,23,.45));
  box-shadow: 0 0 28px rgba(0,0,0,.28);
}

.vg-showcase-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 0 30px rgba(0,0,0,.35);
}

.vg-showcase-media img{
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
}

.vg-glow-frame{
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,.18),
    inset 0 0 40px rgba(0,229,255,.08),
    inset 0 0 60px rgba(255,0,229,.06);
}

.vg-showcase-copy{
  padding: .25rem .25rem .25rem .5rem;
}

.vg-h2{
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1.35rem;
  margin: 0 0 .5rem;
  color: #e2e8f0;
  text-shadow: 0 0 22px rgba(0,229,255,.16);
}

.vg-p{
  margin: 0;
  color: rgba(203,213,225,.92);
  line-height: 1.65;
}

.vg-bullets{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-top: .85rem;
}
.vg-bullet{
  padding: .55rem .65rem;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.30);
  color: rgba(226,232,240,.92);
  font-size: .95rem;
}

/* Steps */
.vg-steps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: .75rem;
  margin-top: .6rem;
}

.vg-step{
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.28);
  border-radius: 16px;
  padding: .85rem .9rem;
  color: rgba(226,232,240,.92);
  box-shadow: 0 0 18px rgba(0,0,0,.18);
}

.vg-step-n{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  margin-right: .5rem;
  border: 1px solid rgba(0,229,255,.35);
  background: rgba(0,229,255,.10);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .vg-showcase{ grid-template-columns: 1fr; }
  .vg-bullets{ grid-template-columns: 1fr; }
  .vg-steps-grid{ grid-template-columns: 1fr; }
}

/* ===========================
   SUBMIT BUTTON – FIXED
   =========================== */

.submit-btn{
  appearance: none;
  -webkit-appearance: none;

  background: linear-gradient(
    180deg,
    rgba(2,6,23,.65),
    rgba(2,6,23,.30)
  );
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 10px;

  color: #e5e7eb;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;

  padding: .55rem 1.1rem;
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;

  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  box-shadow:
    0 12px 26px rgba(0,0,0,.28);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);

  transition:
    transform .12s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* Hover */
.submit-btn:hover{
  transform: translateY(-1px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(2,6,23,.26)
  );
  border-color: rgba(0,229,255,.35);
  box-shadow: 0 16px 32px rgba(0,0,0,.34);
}

/* Active */
.submit-btn:active{
  transform: translateY(0);
  filter: brightness(.97);
}

/* Focus (keyboard accessibility) */
.submit-btn:focus-visible{
  outline: none;
  border-color: rgba(0,229,255,.55);
  box-shadow:
    0 0 0 3px rgba(0,229,255,.22),
    0 16px 32px rgba(0,0,0,.34);
}

/* Disabled */
.submit-btn:disabled,
.submit-btn[aria-disabled="true"]{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
/* ===== Staff section container ===== */
.vg-staff .card-title { margin-bottom: .5rem; }

.vg-staff-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: .75rem;
}

/* Neutralise les décorations globales type "=>" si ton thème en met via ::before */
.vg-staff-card::before,
.vg-staff-card::after,
.vg-staff-link::before,
.vg-staff-link::after{
  content: none !important;
}

/* ===== Staff card ===== */
.vg-staff-card{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(10, 14, 28, .55);
  overflow: hidden;
}

.vg-staff-link{
  display:flex;
  flex-direction:column;
  height:100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  gap: .75rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.vg-staff-card:hover{
  border-color: rgba(0,229,255,.30);
  background: rgba(10, 14, 28, .72);
}

.vg-staff-card:hover .vg-staff-link{
  transform: translateY(-2px);
}

/* Top row */
.vg-staff-top{
  display:flex;
  align-items:flex-start;
  gap: .75rem;
}

.vg-staff-avatar{
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  letter-spacing: .06em;
  color: #e5e7eb;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(0,229,255,.22), transparent 55%),
    radial-gradient(120% 120% at 80% 80%, rgba(255,0,229,.18), transparent 55%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

.vg-staff-meta{
  min-width: 0;
  flex: 1;
}

.vg-staff-name{
  font-weight: 700;
  line-height: 1.15;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges: clamp + wrap clean */
.vg-staff-badges{
  display:flex;
  flex-wrap:wrap;
  gap: .4rem;
  margin-top: .45rem;
}

.vg-badge{
  display:inline-flex;
  align-items:center;
  max-width: 100%;
  padding: .22rem .6rem;
  border-radius: 999px;
  font-size: .82rem;
  line-height: 1.1;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #cbd5e1;

  /* empêche le badge de sortir */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vg-badge--role{
  border-color: rgba(0,229,255,.18);
}

.vg-badge--office{
  border-color: rgba(255,0,229,.18);
}

/* CTA: bouton clean en bas */
.vg-staff-cta{
  margin-top: auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .35rem;

  padding: .55rem .75rem;
  border-radius: 12px;
  border: 1px solid rgba(0,229,255,.18);
  background: rgba(0,229,255,.06);
  color: #c7d2fe;
  font-size: .92rem;
}

.vg-staff-card:hover .vg-staff-cta{
  border-color: rgba(0,229,255,.35);
  background: rgba(0,229,255,.10);
}

/* Mobile comfort */
@media (max-width: 520px){
  .vg-staff-grid{ grid-template-columns: 1fr; }
}
/* === FORCE PAGE SCROLL (fix "can't scroll down") === */
html, body{
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* si un wrapper bloque le scroll, on le neutralise */
body.has-admin-sidebar,
body.has-greeter-sidebar{
  overflow-y: auto !important;
}

/* évite qu’un conteneur fixed prenne le scroll */
.osg-stack{
  overflow: visible !important;
}

/* ===== Admin full width content ===== */
.admin-full{
  width: calc(100% - 40px);
  max-width: none;
  margin: 0 20px;
}

/* Si sidebar active */
body.has-admin-sidebar .admin-full{
  width: calc(100% - 40px);
  max-width: none;
}

