@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #05060d;
    --bg-2: rgba(20, 22, 38, .72);
    --bg-3: rgba(32, 35, 58, .75);
    --line: rgba(124, 92, 255, .22);
    --line-2: rgba(255, 255, 255, .07);
    --text: #eef1ff;
    --muted: #8b90b5;
    --pink: #ff2d95;
    --violet: #7c5cff;
    --cyan: #00e5ff;
    --lime: #29ff9c;
    --gold: #ffc542;
    --red: #ff3b5c;
    --grad: linear-gradient(135deg, #ff2d95 0%, #7c5cff 50%, #00e5ff 100%);
    --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 14px/1.55 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    overflow-x: hidden;
}

/* ---------- animated background ---------- */
.fx-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
    radial-gradient(1200px 700px at 12% -10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(900px 600px at 95% 5%, rgba(255,45,149,.18), transparent 60%),
    radial-gradient(900px 700px at 60% 110%, rgba(0,229,255,.14), transparent 60%),
    #05060d; }
.fx-bg::after {
    content: ''; position: absolute; inset: -50%;
    background-image: linear-gradient(rgba(124,92,255,.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(124,92,255,.07) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(600px) rotateX(58deg) translateY(-8%);
    animation: grid-move 14s linear infinite;
    opacity: .5;
}
.fx-bg span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: blob 18s ease-in-out infinite; }
.fx-bg span:nth-child(1) { width: 380px; height: 380px; background: var(--pink); top: -90px; left: -60px; }
.fx-bg span:nth-child(2) { width: 420px; height: 420px; background: var(--violet); bottom: -140px; right: 8%; animation-delay: -6s; }
.fx-bg span:nth-child(3) { width: 300px; height: 300px; background: var(--cyan); top: 35%; right: -80px; animation-delay: -11s; }

@keyframes grid-move { to { background-position: 0 48px, 48px 0; } }
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.12); } 66% { transform: translate(-30px,25px) scale(.92); } }

a { color: var(--text); text-decoration: none; transition: color .15s, filter .15s; }
a:hover { color: #fff; filter: drop-shadow(0 0 6px rgba(124,92,255,.8)); }
code { font-family: 'JetBrains Mono', Consolas, monospace; background: rgba(124,92,255,.14); color: #cbb8ff; padding: 1px 6px; border-radius: 6px; font-size: 12px; }
.muted { color: var(--muted); font-size: 12px; }
h1 { font-size: 20px; margin: 0; }
h2 { font-size: 13px; margin: 0 0 14px; letter-spacing: 1.6px; text-transform: uppercase; color: #b9b3ff; }
h2::after { content: ''; display: block; width: 44px; height: 2px; margin-top: 6px; background: var(--grad); border-radius: 2px; }

.neon {
    font-family: 'Orbitron', sans-serif; font-size: 17px; letter-spacing: 1.5px;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,45,149,.55));
    animation: flicker 4.5s infinite;
}
@keyframes flicker { 0%,92%,100% { opacity: 1; } 93% { opacity: .45; } 95% { opacity: 1; } 96% { opacity: .6; } }

.page-title { font-family: 'Orbitron', sans-serif; letter-spacing: 1.2px; text-transform: uppercase; font-size: 17px;
    background: linear-gradient(90deg,#fff,#b9a4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- layout ---------- */
.layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 240px; flex: 0 0 240px; padding: 20px 14px; display: flex; flex-direction: column;
    background: rgba(10, 11, 24, .72); backdrop-filter: blur(16px);
    border-right: 1px solid var(--line); position: relative;
}
.sidebar::after { content: ''; position: absolute; top: 0; right: -1px; width: 2px; height: 100%; background: var(--grad); opacity: .55; }
.brand { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(124,92,255,.85)); animation: pulse-logo 3.5s ease-in-out infinite; }
@keyframes pulse-logo { 0%,100% { filter: drop-shadow(0 0 8px rgba(124,92,255,.6)); } 50% { filter: drop-shadow(0 0 18px rgba(255,45,149,.9)); } }
.brand strong { display: block; }
.brand span { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

nav { display: flex; flex-direction: column; gap: 4px; }
.nav-link {
    padding: 10px 13px; border-radius: 11px; color: var(--muted); font-weight: 500;
    display: flex; align-items: center; gap: 11px; position: relative; overflow: hidden;
    border: 1px solid transparent; transition: .2s;
}
.nav-link::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--grad); transform: scaleY(0); transition: transform .2s; }
.nav-link:hover { background: rgba(124,92,255,.12); color: #fff; border-color: var(--line); filter: none; }
.nav-link:hover::before { transform: scaleY(1); }
.nav-link.active { background: linear-gradient(90deg, rgba(255,45,149,.22), rgba(124,92,255,.14) 60%, transparent); color: #fff; border-color: rgba(255,45,149,.45); box-shadow: 0 0 18px rgba(124,92,255,.28) inset; }
.nav-link.active::before { transform: scaleY(1); }
.ico { width: 8px; height: 8px; border-radius: 3px; background: var(--grad); box-shadow: 0 0 8px rgba(124,92,255,.9); }

.sidebar-foot { margin-top: auto; display: flex; flex-direction: column; gap: 11px; }
.srv { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); }
.srv .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.srv.up .dot { background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }

.main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.topbar {
    height: 66px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,11,24,.6); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 20;
}
.topbar-right { display: flex; align-items: center; gap: 13px; }
.who { font-weight: 600; }
.who small { color: var(--muted); margin-left: 6px; font-weight: 400; }
.content { padding: 24px; flex: 1; animation: fade-up .45s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.foot { padding: 16px 24px; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line-2); }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 20px; }
.card {
    position: relative; padding: 16px 18px; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-2); backdrop-filter: blur(14px); border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 4px; transition: transform .22s, box-shadow .22s;
}
.card::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: var(--grad); }
.card::after {
    content: ''; position: absolute; top: -60%; left: -60%; width: 40%; height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transform: rotate(18deg); animation: shine 6s ease-in-out infinite;
}
@keyframes shine { 0%, 70% { left: -60%; } 100% { left: 130%; } }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(124,92,255,.28); }
.card-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); }
.card-value { font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 800; text-shadow: 0 0 18px rgba(124,92,255,.55); }
.card-sub { font-size: 12px; color: var(--muted); }
.card-up, .card-glow-green { border-color: rgba(41,255,156,.45); box-shadow: 0 0 22px rgba(41,255,156,.12); }
.card-down, .card-glow-red { border-color: rgba(255,59,92,.5); box-shadow: 0 0 22px rgba(255,59,92,.14); }
.card-glow-gold { border-color: rgba(255,197,66,.5); box-shadow: 0 0 22px rgba(255,197,66,.12); }
.card-glow-blue { border-color: rgba(0,229,255,.45); box-shadow: 0 0 22px rgba(0,229,255,.12); }

/* ---------- panels ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 16px; }
.panel {
    background: var(--bg-2); backdrop-filter: blur(14px); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 18px; margin-bottom: 16px; overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.span-2 { grid-column: 1 / -1; }

/* ---------- tables ---------- */
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th { text-align: left; color: #a9a3e0; font-weight: 700; font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; padding: 9px 11px; border-bottom: 1px solid var(--line); }
.table td { padding: 10px 11px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table-hover tbody tr { transition: background .18s, box-shadow .18s; }
.table-hover tbody tr:hover { background: linear-gradient(90deg, rgba(255,45,149,.10), rgba(124,92,255,.07)); box-shadow: inset 3px 0 0 var(--pink); }
.details { max-width: 420px; word-break: break-word; font-size: 12px; color: var(--muted); }

/* ---------- badges ---------- */
.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(124,92,255,.14); color: #c3b4ff; border: 1px solid var(--line); }
.badge-red { background: rgba(255,59,92,.16); color: #ff8ba0; border-color: rgba(255,59,92,.5); box-shadow: 0 0 12px rgba(255,59,92,.25); }
.badge-green { background: rgba(41,255,156,.14); color: #7dffc6; border-color: rgba(41,255,156,.45); box-shadow: 0 0 12px rgba(41,255,156,.2); }
.badge-blue { background: rgba(0,229,255,.14); color: #86efff; border-color: rgba(0,229,255,.45); box-shadow: 0 0 12px rgba(0,229,255,.2); }
.badge-gold { background: rgba(255,197,66,.14); color: #ffd98a; border-color: rgba(255,197,66,.45); box-shadow: 0 0 12px rgba(255,197,66,.2); }

/* ---------- forms ---------- */
input, select, textarea {
    background: rgba(10,12,26,.85); border: 1px solid var(--line); color: var(--text);
    border-radius: 11px; padding: 10px 12px; font: inherit; width: 100%; transition: border-color .18s, box-shadow .18s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,149,.16), 0 0 18px rgba(255,45,149,.25); }
label { display: block; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
label input, label select { margin-top: 6px; text-transform: none; letter-spacing: 0; }
.form .row { display: flex; gap: 12px; flex-wrap: wrap; }
.form .row > label { flex: 1 1 150px; }
label.check { display: flex; align-items: center; gap: 9px; color: var(--text); text-transform: none; }
label.check input { width: auto; margin: 0; accent-color: var(--pink); }
.inline { display: inline-flex; gap: 7px; align-items: center; }
.inline input { width: 130px; }

.btn {
    display: inline-block; cursor: pointer; font: inherit; font-weight: 600; text-align: center;
    padding: 10px 16px; border-radius: 11px; color: var(--text);
    background: rgba(124,92,255,.12); border: 1px solid var(--line);
    position: relative; overflow: hidden; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); background: rgba(124,92,255,.22); box-shadow: 0 6px 20px rgba(124,92,255,.35); filter: none; text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--grad); border: none; color: #0a0b16; box-shadow: 0 6px 22px rgba(255,45,149,.35); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,45,149,.55); background: var(--grad); }
.btn-red { background: rgba(255,59,92,.16); border-color: rgba(255,59,92,.5); color: #ff96a8; }
.btn-red:hover { background: rgba(255,59,92,.28); box-shadow: 0 6px 20px rgba(255,59,92,.4); }
.btn-green { background: rgba(41,255,156,.14); border-color: rgba(41,255,156,.45); color: #85ffc9; }
.btn-green:hover { background: rgba(41,255,156,.24); box-shadow: 0 6px 20px rgba(41,255,156,.35); }
.btn-ghost { background: transparent; }
.btn-sm { padding: 6px 11px; font-size: 12px; border-radius: 9px; }
.btn-block { display: block; width: 100%; }
.ripple { position: absolute; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%;
    background: rgba(255,255,255,.55); transform: scale(0); animation: ripple .6s ease-out forwards; pointer-events: none; }
@keyframes ripple { to { transform: scale(18); opacity: 0; } }

.toolbar { display: flex; gap: 11px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar input[type=search] { max-width: 380px; }
.toolbar select { width: auto; }

/* ---------- tabs ---------- */
.tabs { display: flex; flex-direction: row; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.tabs a { padding: 9px 16px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 600; transition: .2s; }
.tabs a:hover { color: #fff; border-color: rgba(255,45,149,.45); filter: none; }
.tabs a.active { background: var(--grad); color: #0a0b16; border-color: transparent; box-shadow: 0 6px 20px rgba(255,45,149,.35); }

/* ---------- player ---------- */
.player-head {
    display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; padding: 18px;
    background: var(--bg-2); backdrop-filter: blur(14px); border: 1px solid var(--line);
    border-radius: var(--radius); margin-bottom: 16px; position: relative; overflow: hidden;
}
.player-head::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: var(--grad); }
.player-head h2 { font-family: 'Orbitron', sans-serif; font-size: 20px; text-transform: none; letter-spacing: .5px; color: var(--text); margin-bottom: 6px; }
.player-head h2::after { display: none; }
.player-money { display: flex; gap: 24px; }
.player-money div { display: flex; flex-direction: column; }
.player-money strong { font-family: 'Orbitron', sans-serif; font-size: 19px; color: #7dffc6; text-shadow: 0 0 14px rgba(41,255,156,.5); }

/* ---------- alerts ---------- */
.alert { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 13px; border: 1px solid; backdrop-filter: blur(10px); animation: fade-up .3s ease both; }
.alert-ok { background: rgba(41,255,156,.10); border-color: rgba(41,255,156,.45); color: #8dffcd; box-shadow: 0 0 22px rgba(41,255,156,.18); }
.alert-err { background: rgba(255,59,92,.10); border-color: rgba(255,59,92,.45); color: #ff97a9; box-shadow: 0 0 22px rgba(255,59,92,.18); }

/* ---------- pager & misc ---------- */
.pager { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.pager a { padding: 7px 12px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line); font-size: 13px; }
.pager a.active { background: var(--grad); color: #0a0b16; border-color: transparent; }

.ids { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.code { background: rgba(8,9,20,.9); border: 1px solid var(--line); border-radius: 12px; padding: 13px; overflow-x: auto; font-size: 12px; max-height: 320px; color: #a5f3ff; }
details summary { cursor: pointer; padding: 8px 0; color: var(--muted); }

.bar-row { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; font-size: 12px; }
.bar-label { width: 92px; color: var(--muted); }
.bar { flex: 1; height: 10px; background: rgba(255,255,255,.06); border-radius: 7px; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--grad); box-shadow: 0 0 14px rgba(255,45,149,.6); animation: grow 1s cubic-bezier(.2,.8,.2,1) both; }
@keyframes grow { from { width: 0 !important; } }
.bar-value { width: 48px; text-align: right; font-weight: 600; }

/* ---------- login ---------- */
.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh;
    background: radial-gradient(1000px 600px at 50% -10%, rgba(124,92,255,.35), transparent 60%),
                radial-gradient(800px 500px at 20% 110%, rgba(255,45,149,.25), transparent 60%), #05060d; }
.login-card {
    position: relative; width: 100%; max-width: 380px; padding: 34px; text-align: center;
    background: rgba(16,17,34,.78); backdrop-filter: blur(18px);
    border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.6);
    animation: fade-up .5s ease both;
}
.login-card::before { content: ''; position: absolute; inset: -1px; border-radius: 21px; padding: 1px; background: var(--grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .65; }
.install-card { max-width: 480px; text-align: left; }
.login-logo { width: 96px; margin: 0 auto 10px; display: block; filter: drop-shadow(0 0 18px rgba(255,45,149,.7)); animation: pulse-logo 3.5s ease-in-out infinite; }
.login-card h1 { font-family: 'Orbitron', sans-serif; font-size: 19px; letter-spacing: 1.5px; margin-bottom: 6px;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.login-card label { text-align: left; }
.login-card .btn { margin-top: 10px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--pink), var(--violet)); border-radius: 8px; }

@media (max-width: 860px) {
    .layout { flex-direction: column; }
    .sidebar { width: 100%; flex: none; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
    .sidebar::after { display: none; }
    .sidebar nav { flex-direction: row; flex-wrap: wrap; }
    .sidebar-foot { margin: 0 0 0 auto; flex-direction: row; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- site public ---------- */
body.site { display: block; }
.site-head { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 22px;
    padding: 14px 30px; background: rgba(10,11,22,.72); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); }
.site-brand { display: flex; align-items: center; gap: 12px; font-family: 'Orbitron', sans-serif; font-size: 18px; letter-spacing: 2px; }
.site-brand img { width: 40px; filter: drop-shadow(0 0 14px rgba(255,45,149,.7)); }
.site-brand .neon { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-nav { display: flex; flex-direction: row; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a { padding: 9px 15px; border-radius: 11px; color: var(--muted); font-size: 13px; font-weight: 600; transition: .2s; }
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.05); filter: none; }
.site-nav a.active { background: var(--grad); color: #0a0b16; box-shadow: 0 6px 20px rgba(255,45,149,.35); }
.site-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.srv { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.srv .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.srv.up .dot { background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }
.site-main { max-width: 1180px; margin: 0 auto; padding: 30px 24px 60px; }
.site-foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    max-width: 1180px; margin: 0 auto; padding: 20px 24px 40px; color: var(--muted); font-size: 12px; }

.hero { position: relative; text-align: center; padding: 54px 20px 42px; margin-bottom: 26px;
    border: 1px solid var(--line); border-radius: 24px; background: rgba(16,17,34,.55); backdrop-filter: blur(16px);
    overflow: hidden; animation: fade-up .5s ease both; }
.hero::before { content: ''; position: absolute; inset: -2px; background: var(--grad); opacity: .12; filter: blur(40px); }
.hero-logo { position: relative; width: 120px; margin: 0 auto 14px; display: block;
    filter: drop-shadow(0 0 26px rgba(255,45,149,.75)); animation: pulse-logo 3.5s ease-in-out infinite; }
.hero-title { position: relative; font-family: 'Orbitron', sans-serif; font-size: 44px; letter-spacing: 5px;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { position: relative; color: var(--muted); margin: 8px 0 20px; }
.hero-actions { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-status { position: relative; display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
    padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(0,0,0,.3); font-size: 13px; font-weight: 600; }
.hero-status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.hero-status.up .dot { background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: blink 1.8s ease-in-out infinite; }
.hero-status code { background: rgba(255,255,255,.06); padding: 3px 9px; border-radius: 7px; }

.panel-center { max-width: 460px; margin: 40px auto; text-align: center; }
.panel-center .btn { margin-top: 12px; }
.small { font-size: 12px; }
.login-back { display: block; margin-top: 14px; font-size: 12px; color: var(--muted); }

@media (max-width: 860px) {
    .site-head { flex-wrap: wrap; padding: 12px 16px; }
    .site-actions { margin-left: 0; }
    .hero-title { font-size: 30px; letter-spacing: 3px; }
}
