:root {
  color-scheme: dark;
  --bg: #020712;
  --panel: rgba(14, 23, 39, 0.92);
  --panel-border: rgba(83, 164, 255, 0.28);
  --text: #f4f8ff;
  --muted: #a8b7cf;
  --primary: #168cff;
  --primary-2: #00c8f0;
  --danger: #ff4f75;
  --warning: #ffc857;
  --success: #48d597;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body { margin: 0; min-height: 100vh; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: radial-gradient(circle at 15% 10%, rgba(0, 110, 255, .22), transparent 34%), radial-gradient(circle at 90% 80%, rgba(0, 201, 240, .17), transparent 34%), var(--bg); }
a { color: #9fd1ff; transition: color .18s ease; }
a:not(.button):hover, a:not(.button):focus-visible { color: var(--primary-2); }
.ambient { position: fixed; pointer-events: none; filter: blur(70px); opacity: .25; border-radius: 999px; }
.ambient-one { width: 28rem; height: 28rem; left: -12rem; top: 12rem; background: #005dff; }
.ambient-two { width: 30rem; height: 30rem; right: -16rem; bottom: -4rem; background: #00d5ff; }
.site-header { min-height: 92px; padding: 12px 3vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(2,7,18,.82); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px); }
.brand img { width: 82px; height: 82px; object-fit: contain; }
.top-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.health-pill, .badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.06); font-size: .78rem; font-weight: 800; }
.health-online, .badge-success { color: var(--success); border-color: rgba(72,213,151,.35); }
.health-offline, .badge-danger { color: var(--danger); border-color: rgba(255,79,117,.35); }
.badge-warning { color: var(--warning); border-color: rgba(255,200,87,.35); }
.page-shell { width: min(1160px, 92vw); margin: 0 auto; padding: 56px 0 88px; position: relative; z-index: 1; }
.hero { max-width: 760px; margin-bottom: 28px; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; color: #65b7ff; font-size: .78rem; font-weight: 900; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: .98; margin: 12px 0 18px; }
h2, h3 { margin-top: 0; }
p, li { color: var(--muted); line-height: 1.65; }
.panel { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 22px; padding: clamp(20px, 4vw, 34px); box-shadow: 0 20px 60px rgba(0,0,0,.24); }
.auth-grid, .security-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.sessions-panel { grid-column: 1 / -1; }
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.tab { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04); color: var(--muted); border-radius: 999px; padding: 9px 15px; cursor: pointer; font-weight: 800; }
.tab.active { color: white; border-color: #168cff; background: rgba(22,140,255,.18); }
.form-stack { display: grid; gap: 16px; }
.compact-stack { margin-top: 18px; }
label { display: block; margin-bottom: 7px; font-weight: 800; color: #dce8f8; }
input { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.28); color: white; padding: 12px 14px; font: inherit; }
input:focus { outline: 2px solid rgba(22,140,255,.55); border-color: transparent; }
.button { appearance: none; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 12px 17px; border-radius: 12px; border: 1px solid transparent; text-decoration: none; cursor: pointer; font-weight: 900; color: white; font: inherit; }
.button:disabled { opacity: .55; cursor: not-allowed; }
.button-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.button-danger { background: rgba(255,79,117,.16); border-color: rgba(255,79,117,.5); color: #ffafc0; }
.button-ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); color: #d8e7fa; }
.compact { padding: 8px 12px; font-size: .84rem; }
.notice, .status-message { border-radius: 14px; padding: 13px 15px; margin: 16px 0; border: 1px solid rgba(255,255,255,.13); color: var(--muted); background: rgba(255,255,255,.04); }
.notice.success, .status-message.success { color: #a4f5cd; border-color: rgba(72,213,151,.4); }
.notice.error, .status-message.error { color: #ffb1c1; border-color: rgba(255,79,117,.45); }
.notice.warning, .status-message.warning { color: #ffe0a0; border-color: rgba(255,200,87,.45); }
.hidden { display: none !important; }
.fine-print { font-size: .82rem; color: #91a1b8; }
.guidance-panel ul { padding-left: 20px; }
.account-heading, .panel-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.details-list { display: grid; gap: 10px; margin: 0; }
.details-list div { display: grid; grid-template-columns: minmax(120px, .7fr) 1.3fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
dt { color: var(--muted); } dd { margin: 0; overflow-wrap: anywhere; }
.secret-box { display: block; padding: 12px; background: rgba(0,0,0,.38); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #9fd1ff; overflow-x: auto; }
.wrap { white-space: pre-wrap; overflow-wrap: anywhere; }
.session-list { display: grid; gap: 10px; margin: 15px 0; }
.session-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.025); }
.session-row strong { display: block; margin-bottom: 4px; }
.site-footer { padding: 25px 4vw; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.site-footer div { display: flex; gap: 16px; }
@media (max-width: 780px) { .auth-grid, .security-grid { grid-template-columns: 1fr; } .sessions-panel { grid-column: auto; } .site-header { align-items: flex-start; } .top-nav { justify-content: flex-end; } .details-list div { grid-template-columns: 1fr; } }

.social-list{display:grid;gap:12px}.social-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(245px,1fr));gap:12px}.social-card{border:1px solid var(--border);border-radius:16px;padding:15px;background:rgba(8,18,38,.72)}.social-card h4{margin:0 0 6px}.social-card p{margin:4px 0;color:var(--muted)}.social-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.preference-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:10px}.preference-row label{display:flex;align-items:center;gap:7px;font-size:.9rem;color:var(--muted)}.preference-row input{width:auto}.notification-unread{border-color:#00ddff;box-shadow:0 0 0 1px rgba(0,221,255,.12)}.notification-meta{font-size:.8rem;color:var(--muted)}
