/* ═══════════════════════════════════════════════
   UrbanMap — style.css
═══════════════════════════════════════════════ */

/* ── TOKENS: DARK ── */
:root {
  --bg:          #0b1520;
  --surface:     #111e2e;
  --surface2:    #162234;
  --border:      #1e3048;
  --accent:      #00e5ff;
  --accent-fg:   #0b1520;
  --text:        #e8f4fc;
  --muted:       #6a8aaa;
  --shadow:      rgba(0,0,0,.55);
  --overlay-bg:  rgba(0,0,0,.52);
  --header-bg:   rgba(11,21,32,.95);
  --radius:      16px;
  --fab-size:    60px;
  --c-buraco:    #ff6b35;
  --c-desnivel:  #ffd23f;
  --c-ilum:      #9b5de5;
  --c-rampa:     #00bbf9;
  --c-obs:       #f15bb5;
  --c-inund:     #1e90ff;
}

/* ── TOKENS: LIGHT ── */
[data-theme="light"] {
  --bg:          #f0f4f8;
  --surface:     #ffffff;
  --surface2:    #e8eef4;
  --border:      #c8d6e5;
  --accent:      #0077cc;
  --accent-fg:   #ffffff;
  --text:        #1a2a3a;
  --muted:       #6b8099;
  --shadow:      rgba(0,50,100,.15);
  --overlay-bg:  rgba(0,30,60,.38);
  --header-bg:   rgba(240,244,248,.96);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  transition: background .4s, color .4s;
}

/* ── MAP ── */
#map {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Tile filter via CSS — without CSS variable to ensure it always applies */
.leaflet-tile-pane { filter: saturate(0.65) brightness(0.82); transition: filter .6s; }
[data-theme="light"] .leaflet-tile-pane { filter: saturate(1.05) brightness(1.0); }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 20px 10px;
  background: linear-gradient(to bottom, var(--header-bg) 65%, transparent);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
#header h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: -.5px; color: var(--accent); }
#header h1 span { color: var(--text); }

#status-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 5px 12px; font-size: .75rem; color: var(--muted);
  box-shadow: 0 2px 8px var(--shadow);
}
#status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex-shrink: 0; transition: background .4s; }
#status-dot.located { background: #00c853; box-shadow: 0 0 6px #00c853; }

#help-btn {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px var(--shadow); transition: color .2s, border-color .2s, transform .15s;
}
#help-btn:active { transform: scale(.88); }
#help-btn:hover  { color: var(--accent); border-color: var(--accent); }

/* ── THEME BTN ── */
#theme-btn {
  position: fixed; top: 68px; right: 16px; z-index: 110;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 2px 8px var(--shadow); transition: color .2s, border-color .2s, transform .2s;
}
#theme-btn:active { transform: scale(.88); }
#theme-btn:hover  { color: var(--accent); border-color: var(--accent); }

/* ── COUNTER ── */
#counter {
  position: fixed; top: 68px; left: 20px; z-index: 100;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 5px 14px; font-size: .78rem; color: var(--muted);
  box-shadow: 0 2px 8px var(--shadow);
}
#counter strong { color: var(--text); font-weight: 600; }

/* ── LEGEND ── */
#legend {
  position: fixed; top: 112px; right: 16px; z-index: 100;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  display: flex; flex-direction: column; gap: 7px;
  box-shadow: 0 2px 12px var(--shadow);
}
.leg-item { display: flex; align-items: center; gap: 8px; font-size: .7rem; color: var(--muted); }
.leg-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── LOCATE ── */
#locate-btn {
  position: fixed; bottom: 36px; left: 24px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  box-shadow: 0 4px 14px var(--shadow); transition: color .2s, border-color .2s, transform .15s;
}
#locate-btn:active { transform: scale(.92); }
#locate-btn.active { color: var(--accent); border-color: var(--accent); }

/* ── REFRESH ── */
#refresh-btn {
  position: fixed; bottom: 36px; left: 82px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  box-shadow: 0 4px 14px var(--shadow); transition: color .2s, border-color .2s, transform .15s;
}
#refresh-btn:active { transform: scale(.92); }
#refresh-btn:hover  { color: var(--accent); border-color: var(--accent); }
@keyframes spin-once { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── FAB ── */
#fab {
  position: fixed; bottom: 36px; right: 24px; z-index: 200;
  width: var(--fab-size); height: var(--fab-size); border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px var(--shadow);
  animation: pulse-ring 2.5s ease-out infinite; transition: transform .2s;
}
#fab:active { transform: scale(.9); }
#fab svg { transition: transform .3s; }
#fab.open svg { transform: rotate(45deg); }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0    rgba(0,229,255,.45); }
  70%  { box-shadow: 0 0 0 20px rgba(0,229,255,0);   }
  100% { box-shadow: 0 0 0 0    rgba(0,229,255,0);   }
}

/* ── OVERLAY ── */
#overlay { position: fixed; inset: 0; background: var(--overlay-bg); z-index: 250; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
#overlay.visible { opacity: 1; pointer-events: all; }

/* ── BOTTOM SHEET ── */
#sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--surface); border-top: 1px solid var(--border);
  border-radius: 24px 24px 0 0; padding: 0 20px 44px;
  transform: translateY(100%); transition: transform .38s cubic-bezier(.32,0,.14,1);
  will-change: transform; max-height: 92dvh; overflow-y: auto;
  box-shadow: 0 -8px 32px var(--shadow);
}
#sheet.visible { transform: translateY(0); }
.sheet-handle { width: 40px; height: 4px; border-radius: 99px; background: var(--border); margin: 14px auto 20px; }
#sheet h2 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
#sheet p.subtitle { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.cat-btn {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--text); cursor: pointer;
  padding: 14px 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  transition: border-color .2s, background .2s, transform .15s; text-align: left;
}
.cat-btn:active { transform: scale(.96); }
.cat-btn .icon  { font-size: 1.6rem; }
.cat-btn .label { font-family: 'Syne', sans-serif; font-weight: 600; font-size: .82rem; line-height: 1.25; }
.cat-btn .desc  { font-size: .72rem; color: var(--muted); line-height: 1.4; }
.cat-btn[data-cat="buraco"]   { --clr: var(--c-buraco);   }
.cat-btn[data-cat="desnivel"] { --clr: var(--c-desnivel);  }
.cat-btn[data-cat="ilum"]     { --clr: var(--c-ilum);      }
.cat-btn[data-cat="rampa"]    { --clr: var(--c-rampa);     }
.cat-btn[data-cat="obs"]      { --clr: var(--c-obs);       }
.cat-btn[data-cat="inund"]    { --clr: var(--c-inund);     }
.cat-btn.selected, .cat-btn:hover { border-color: var(--clr); background: var(--surface2); }
.cat-btn.selected .icon  { filter: drop-shadow(0 0 6px var(--clr)); }
.cat-btn.selected .label { color: var(--clr); }

/* ── DESCRIPTION ── */
.desc-section { margin-bottom: 18px; }
.textarea-wrap { position: relative; }
.textarea-wrap textarea {
  width: 100%; padding: 12px 14px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: .88rem; line-height: 1.5;
  resize: none; outline: none; transition: border-color .2s;
}
.textarea-wrap textarea:focus { border-color: var(--accent); }
.textarea-wrap textarea::placeholder { color: var(--muted); }
#char-count { position: absolute; bottom: 8px; right: 10px; font-size: .68rem; color: var(--muted); pointer-events: none; }
#char-count.near-limit { color: var(--c-desnivel); }
#char-count.at-limit   { color: #ff4d6d; }

/* ── IMAGE UPLOAD ── */
.upload-section { margin-bottom: 16px; }
.upload-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.upload-label .required-badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  background: var(--accent); color: var(--accent-fg);
  border-radius: 99px; padding: 1px 7px; margin-left: 6px; vertical-align: middle;
}
.img-source-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.img-src-btn {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--text); cursor: pointer;
  padding: 12px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: .78rem; font-weight: 600; font-family: 'Syne', sans-serif;
  transition: border-color .2s, background .2s, transform .15s; text-align: center;
}
.img-src-btn:active { transform: scale(.95); }
.img-src-btn:hover  { border-color: var(--accent); background: var(--surface2); }
.img-src-btn .btn-icon { font-size: 1.5rem; }
.img-src-btn .btn-sub  { font-size: .68rem; color: var(--muted); font-weight: 400; font-family: 'DM Sans', sans-serif; }

#img-preview-wrap { display: none; position: relative; border-radius: var(--radius); overflow: hidden; }
#img-preview-wrap.show { display: block; }
#img-preview { width: 100%; height: 160px; object-fit: cover; display: block; }
#img-remove {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(11,21,32,.8); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
#img-remove:hover { background: rgba(220,50,50,.75); }
#img-input-camera, #img-input-gallery { display: none; }
#img-required-hint { font-size: .72rem; color: #e05252; margin-top: 6px; display: none; }
#img-required-hint.show { display: block; }

/* ── MODERATION NOTICE ── */
.moderation-notice {
  display: flex; align-items: flex-start; gap: 8px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 10px; padding: 10px 12px;
  font-size: .78rem; color: var(--muted); line-height: 1.45; margin-bottom: 14px;
}
.moderation-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* ── CONFIRM BTN ── */
#confirm-btn {
  width: 100%; padding: 16px; border-radius: var(--radius); border: none;
  background: var(--accent); color: var(--accent-fg);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: opacity .2s, transform .15s, filter .2s;
}
#confirm-btn:disabled { opacity: .35; cursor: not-allowed; filter: grayscale(.4); }
#confirm-btn:not(:disabled):active { transform: scale(.97); }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 110px; left: 50%;
  transform: translateX(-50%) translateY(20px); z-index: 500;
  background: #0f2a1f; border: 1px solid #00c853; color: #00c853;
  font-size: .85rem; font-weight: 500; padding: 10px 20px;
  border-radius: 99px; white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity .3s, transform .3s;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
[data-theme="light"] #toast { background: #e6fff0; border-color: #00a845; color: #007a30; }

/* ── PENDING NOTICE BANNER ── */
#pending-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.32,0,.14,1);
}
#pending-notice.show { transform: translateY(0); }
.pending-inner {
  display: flex; align-items: center; gap: 12px;
  background: #0e2235; border-top: 2px solid var(--accent);
  padding: 16px 20px calc(env(safe-area-inset-bottom,0px) + 16px);
}
[data-theme="light"] .pending-inner { background: #e8f4fc; }
.pending-icon { font-size: 1.6rem; flex-shrink: 0; }
.pending-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pending-text strong { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem; color: var(--accent); }
.pending-text span { font-size: .78rem; color: var(--muted); line-height: 1.4; }
#pending-close {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
#pending-close:hover { background: rgba(255,255,255,.15); color: var(--text); }

/* ── MAP MARKER ── */
.urban-marker {
  width: 38px; height: 38px; border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg); display: flex; align-items: center; justify-content: center;
  border: 2.5px solid rgba(255,255,255,.25); box-shadow: 0 4px 14px rgba(0,0,0,.45);
  animation: pop-in .3s cubic-bezier(.34,1.56,.64,1) both; position: relative;
}
.urban-marker .emoji { transform: rotate(45deg); font-size: 1.05rem; display: block; }
.urban-marker .cam-badge {
  position: absolute; bottom: -5px; right: -5px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #00e5ff; border: 2px solid #0b1520;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; line-height: 1; transform: rotate(45deg);
}
@keyframes pop-in {
  from { opacity: 0; transform: rotate(-45deg) scale(.4); }
  to   { opacity: 1; transform: rotate(-45deg) scale(1);  }
}

/* ── POPUP PHOTO HOVER (CSS-only, no inline JS) ── */
.popup-photo-wrap {
  position: relative; cursor: pointer; overflow: hidden;
}
.popup-photo-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0); transition: background .2s;
}
.popup-photo-wrap:hover .popup-photo-overlay { background: rgba(0,0,0,.3); }
.popup-photo-hint {
  background: rgba(0,0,0,.6); border-radius: 99px;
  padding: 5px 14px; font-size: .73rem; color: #fff;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
  opacity: 0; transition: opacity .2s;
}
.popup-photo-wrap:hover .popup-photo-hint { opacity: 1; }

/* ── POPUP dark ── */
.upop .leaflet-popup-content-wrapper {
  background: #111e2e !important; border: 1px solid #1e3048;
  border-radius: 14px !important; box-shadow: 0 8px 28px rgba(0,0,0,.7);
  color: #e8f4fc; padding: 0 !important; overflow: hidden;
}
.upop .leaflet-popup-content  { margin: 0 !important; width: auto !important; min-width: 200px; }
.upop .leaflet-popup-tip      { background: #111e2e !important; }
.upop .leaflet-popup-close-button { color: #6a8aaa !important; top: 8px !important; right: 10px !important; font-size: 16px !important; }
[data-theme="light"] .upop .leaflet-popup-content-wrapper { background: #fff !important; border: 1px solid #c8d6e5; box-shadow: 0 8px 28px rgba(0,50,100,.18); color: #1a2a3a; }
[data-theme="light"] .upop .leaflet-popup-tip { background: #fff !important; }
[data-theme="light"] .upop .leaflet-popup-close-button { color: #6b8099 !important; }
[data-theme="light"] .upop .pop-info-date  { color: #6b8099 !important; }
[data-theme="light"] .upop .pop-info-coord { color: #9ab0c4 !important; }

.pop-photo-btn {
  display: block; width: 100%; padding: 8px 0 10px; text-align: center;
  border: none; border-top: 1px solid #1e3048; background: transparent;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: .78rem;
  cursor: pointer; transition: background .15s;
}
.pop-photo-btn:hover { background: rgba(255,255,255,.05); }
[data-theme="light"] .pop-photo-btn { border-top-color: #c8d6e5; }
[data-theme="light"] .pop-photo-btn:hover { background: rgba(0,0,0,.04); }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.93); display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s; backdrop-filter: blur(10px);
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lb-header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: max(env(safe-area-inset-top),16px) 20px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,.78) 60%, transparent);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
#lb-title { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: #fff; }
#lb-meta  { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 3px; }
#lb-close {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
#lb-close:hover { background: rgba(255,255,255,.2); }
#lb-img-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 90px 16px 80px; cursor: zoom-out; }
#lb-img { max-width: 100%; max-height: 100%; border-radius: 12px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.8); animation: lb-zoom .25s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes lb-zoom { from { transform: scale(.86); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#lb-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px calc(env(safe-area-inset-bottom,0px) + 24px);
  background: linear-gradient(to top, rgba(0,0,0,.75) 60%, transparent); text-align: center;
}
#lb-coords { font-size: .72rem; color: rgba(255,255,255,.45); font-family: monospace; }

/* ── HELP MODAL ── */
#help-overlay { position: fixed; inset: 0; z-index: 800; background: var(--overlay-bg); opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
#help-overlay.visible { opacity: 1; pointer-events: all; }
#help-modal { position: fixed; inset: 0; z-index: 810; display: flex; align-items: flex-end; justify-content: center; pointer-events: none; }
.help-inner {
  width: 100%; max-width: 520px; background: var(--surface); border-top: 1px solid var(--border);
  border-radius: 24px 24px 0 0; padding: 0 0 max(env(safe-area-inset-bottom),24px);
  max-height: 90dvh; overflow-y: auto;
  box-shadow: 0 -12px 48px var(--shadow);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.32,0,.14,1); pointer-events: all;
}
#help-modal.open .help-inner { transform: translateY(0); }
.help-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.help-logo { display: flex; align-items: center; gap: 12px; }
.help-logo-icon { font-size: 2rem; line-height: 1; }
.help-logo-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -.4px; color: var(--accent); }
.help-logo-name span { color: var(--text); }
.help-logo-tag { font-size: .72rem; color: var(--muted); margin-top: 1px; }
#help-close {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface2); border: 1px solid var(--border); color: var(--muted); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s;
}
#help-close:hover { background: var(--border); color: var(--text); }
.help-section { padding: 18px 20px 0; }
.help-section-label { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.help-text { font-size: .85rem; color: var(--text); line-height: 1.65; margin-bottom: 8px; }
.help-text strong { font-weight: 600; }
.help-steps { display: flex; flex-direction: column; gap: 10px; }
.help-step { display: flex; align-items: flex-start; gap: 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.step-num { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--accent); color: var(--accent-fg); font-family: 'Syne', sans-serif; font-weight: 800; font-size: .75rem; display: flex; align-items: center; justify-content: center; }
.step-text { font-size: .82rem; color: var(--text); line-height: 1.5; padding-top: 2px; }
.step-text strong { color: var(--accent); }
.help-report-box { margin: 16px 20px 0; padding: 16px !important; background: color-mix(in srgb, var(--accent) 6%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent); border-radius: var(--radius); }
.help-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.help-list li { font-size: .82rem; color: var(--text); line-height: 1.4; padding: 6px 10px; background: var(--surface2); border-radius: 8px; }
.help-support { padding-top: 18px !important; }
.help-email { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--accent); text-decoration: none; font-weight: 600; font-size: .88rem; border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); border-radius: 10px; padding: 9px 14px; background: color-mix(in srgb, var(--accent) 6%, transparent); transition: background .2s, border-color .2s; }
.help-email:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); border-color: var(--accent); }
.help-version { margin: 18px 20px 0; font-size: .7rem; color: var(--muted); text-align: center; letter-spacing: .04em; padding-bottom: 4px; }
