:root {
  --bg: rgba(16, 22, 40, 0.72);
  --bg2: rgba(26, 34, 58, 0.9);
  --line: rgba(255, 255, 255, 0.12);
  --txt: #eef2fb;
  --mut: #9fb0cc;
  --acc: #ffb938;
  --m: #1f6fe5;
  --f: #e0263a;
  --ok: #3ddc84;
  --r: 14px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; height: 100%; overflow: hidden; background: #0b1020; color: var(--txt);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif; overscroll-behavior: none; }
body { touch-action: none; user-select: none; -webkit-user-select: none; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; }
input { font: inherit; user-select: text; -webkit-user-select: text; }
#game { position: fixed; inset: 0; width: 100%; height: 100%; display: block; outline: none; }
kbd { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); border-bottom-width: 2px; border-radius: 5px; padding: 0 6px; font-size: 12px; margin-left: 6px; }

/* ---------- overlays ---------- */
.overlay { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 50;
  background: radial-gradient(ellipse at top, #2b4a7a 0%, #16213a 55%, #0b1020 100%); overflow: auto; padding: 18px; }
#loading { z-index: 60; }
.loader { text-align: center; font-size: 18px; color: var(--mut); }
.loader .paw { font-size: 64px; animation: bounce 1s infinite ease-in-out; }
@keyframes bounce { 50% { transform: translateY(-14px) rotate(-10deg); } }

#login { background: linear-gradient(160deg, rgba(20,40,80,.55), rgba(10,14,30,.8)), radial-gradient(ellipse at top, #3d6fb3 0%, #16213a 60%); backdrop-filter: blur(3px); }
.card { width: min(560px, 100%); background: var(--bg2); border: 1px solid var(--line); border-radius: 22px; padding: 24px 24px 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); margin: auto; }
.card h1 { margin: 6px 0 2px; font-size: 30px; letter-spacing: .3px; }
.card h1 .logo { display: inline-block; animation: bounce 2.2s infinite ease-in-out; }
.card .sub { margin: 0 0 14px; color: var(--mut); }
.card label { display: block; margin: 14px 0 6px; font-weight: 600; font-size: 14px; color: #cfd9ee; }
.card input { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.07); color: var(--txt); font-size: 17px; outline: none; }
.card input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(255,185,56,.2); }
.lang-switch { display: flex; gap: 8px; justify-content: flex-end; }
.lang-switch button, .seg button { padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid var(--line); font-size: 13px; }
.lang-switch button.on, .seg button.on { background: var(--acc); color: #1b1300; border-color: var(--acc); font-weight: 700; }
.gender { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gender button { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.06); border: 2px solid var(--line); font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
.gender button small { font-weight: 500; opacity: .75; font-size: 12px; width: 100%; text-align: center; }
.gender .gi { font-size: 22px; }
.gender .g-m.on { border-color: var(--m); background: rgba(31,111,229,.25); }
.gender .g-f.on { border-color: var(--f); background: rgba(224,38,58,.22); }
.breeds { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.breed { background: rgba(255,255,255,.05); border: 2px solid var(--line); border-radius: 14px; padding: 4px 4px 8px; text-align: center; transition: transform .12s, border-color .12s; }
.breed img { width: 100%; aspect-ratio: 1; display: block; border-radius: 10px; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.15), rgba(255,255,255,0) 70%); }
.breed span { font-size: 12px; font-weight: 600; white-space: nowrap; }
.breed:hover { transform: translateY(-2px); }
.breed.on { border-color: var(--acc); background: rgba(255,185,56,.14); }
.err { color: #ff7b7b; min-height: 20px; margin-top: 8px; font-size: 14px; }
.primary { width: 100%; margin-top: 6px; padding: 14px; border-radius: 14px; font-size: 19px; font-weight: 800; letter-spacing: .5px;
  background: linear-gradient(180deg, #ffc94d, #ff9f1a); color: #2a1a00; box-shadow: 0 8px 24px rgba(255,159,26,.35); }
.primary:disabled { opacity: .6; }
.online-hint { text-align: center; color: var(--mut); font-size: 13px; margin-top: 10px; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); margin-right: 6px; vertical-align: middle; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .45; } }

/* ---------- top bar ---------- */
#topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 20; display: flex; align-items: center; gap: 8px;
  padding: calc(8px + var(--safe-t)) 10px 8px; background: linear-gradient(180deg, rgba(10,14,28,.78), rgba(10,14,28,.0)); pointer-events: none; }
#topbar > * { pointer-events: auto; }
.brand { font-weight: 800; font-size: 17px; padding: 6px 10px; white-space: nowrap; text-shadow: 0 2px 6px rgba(0,0,0,.5); }
.pill { background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 14px; white-space: nowrap; backdrop-filter: blur(6px); display: flex; align-items: center; gap: 5px; max-width: 42vw; overflow: hidden; text-overflow: ellipsis; }
.pill.online b { color: var(--ok); }
.spacer { flex: 1; }
.icon { width: 38px; height: 38px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); font-size: 17px; backdrop-filter: blur(6px); display: grid; place-items: center; flex-shrink: 0; }
.icon:hover { background: rgba(40,52,86,.9); }
.icon.lang { font-size: 13px; font-weight: 800; }

#minimap { position: fixed; right: 12px; top: calc(60px + var(--safe-t)); width: 180px; height: 180px; border-radius: 50%; z-index: 15;
  border: 3px solid rgba(255,255,255,.85); box-shadow: 0 6px 20px rgba(0,0,0,.45); cursor: pointer; background: #4d7f35; }

/* ---------- toasts ---------- */
#toasts { position: fixed; top: calc(62px + var(--safe-t)); left: 50%; transform: translateX(-50%); z-index: 30; display: flex; flex-direction: column; gap: 8px; align-items: center; width: min(92vw, 460px); pointer-events: none; }
.toast { pointer-events: auto; background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 10px; animation: tin .25s ease-out; font-size: 15px; width: 100%; }
.toast.greet { border-color: var(--acc); background: linear-gradient(90deg, rgba(255,185,56,.22), var(--bg2)); }
.toast .grow { flex: 1; }
.toast button { background: var(--acc); color: #211500; font-weight: 800; padding: 7px 12px; border-radius: 10px; white-space: nowrap; }
.toast.out { opacity: 0; transform: translateY(-8px); transition: .3s; }
@keyframes tin { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- prompts ---------- */
#prompts { position: fixed; left: 50%; bottom: calc(96px + var(--safe-b)); transform: translateX(-50%); z-index: 22; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.prompt { background: var(--bg2); border: 2px solid rgba(255,255,255,.25); border-radius: 999px; padding: 10px 18px; font-size: 16px; font-weight: 600; box-shadow: 0 8px 22px rgba(0,0,0,.35); white-space: nowrap; animation: tin .2s; }
.prompt:hover { border-color: var(--acc); }
.prompt.greet { background: linear-gradient(90deg, #ff9f1a, #ffc94d); color: #2a1a00; border-color: #fff3; font-weight: 800; }
.prompt.greet kbd { border-color: rgba(0,0,0,.25); background: rgba(0,0,0,.12); }

/* ---------- vehicle HUD ---------- */
#vehicle-hud { position: fixed; left: 14px; bottom: calc(100px + var(--safe-b)); z-index: 18; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 10px 14px; min-width: 170px; backdrop-filter: blur(6px); }
.vh-row { display: flex; align-items: baseline; gap: 6px; font-size: 13px; color: var(--mut); margin: 2px 0; }
.vh-row b { font-size: 24px; color: var(--txt); font-variant-numeric: tabular-nums; }
.bar { flex: 1; height: 10px; border-radius: 6px; background: rgba(255,255,255,.12); overflow: hidden; margin-left: 6px; align-self: center; }
.bar div { height: 100%; width: 0; background: linear-gradient(90deg, var(--ok), var(--acc), #ff5d5d); }
.warn { margin-top: 6px; color: #ff6b6b; font-weight: 800; animation: pulse .6s infinite; }
#vehicle-hud:not(.plane) .plane-only { display: none; }

/* ---------- chat ---------- */
#chat-panel { position: fixed; right: 12px; top: calc(252px + var(--safe-t)); bottom: calc(80px + var(--safe-b)); width: 340px; z-index: 24;
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0,0,0,.35); transition: transform .25s, opacity .25s; }
#chat-panel.closed { transform: translateX(calc(100% + 20px)); opacity: 0; pointer-events: none; }
.chat-head { display: flex; align-items: center; gap: 6px; padding: 8px 8px 0; }
#chat-tabs { display: flex; gap: 6px; overflow-x: auto; flex: 1; scrollbar-width: none; padding-bottom: 6px; }
#chat-tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; padding: 6px 10px; border-radius: 10px; background: rgba(255,255,255,.06); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; border: 1px solid transparent; }
.tab.on { background: rgba(255,255,255,.16); border-color: var(--line); }
.tab .gd { width: 8px; height: 8px; border-radius: 50%; }
.tab .cnt { background: var(--f); color: #fff; font-size: 11px; border-radius: 999px; padding: 0 6px; }
.tab .tx { opacity: .6; font-size: 12px; margin-left: 2px; }
.x { background: rgba(255,255,255,.08); border-radius: 10px; width: 30px; height: 30px; flex-shrink: 0; }
#chat-sub { display: flex; justify-content: space-between; align-items: center; padding: 4px 12px; font-size: 13px; color: var(--mut); border-bottom: 1px solid var(--line); }
#chat-sub button { background: rgba(255,90,90,.15); color: #ff9c9c; border-radius: 8px; padding: 3px 8px; font-size: 12px; }
#chat-msgs { flex: 1; overflow-y: auto; padding: 8px 12px; display: flex; flex-direction: column; gap: 6px; user-select: text; -webkit-user-select: text; touch-action: pan-y; }
.msg { font-size: 14px; line-height: 1.35; word-wrap: break-word; }
.msg .who { font-weight: 800; margin-right: 6px; }
.msg .who.m { color: #6aa8ff; } .msg .who.f { color: #ff7d8c; } .msg .who.npc { color: #c9c9c9; }
.msg.me { align-self: flex-end; background: rgba(255,185,56,.18); border-radius: 12px 12px 2px 12px; padding: 6px 10px; max-width: 85%; }
.msg.them { align-self: flex-start; background: rgba(255,255,255,.08); border-radius: 12px 12px 12px 2px; padding: 6px 10px; max-width: 85%; }
.msg.sys { color: var(--mut); font-size: 12.5px; font-style: italic; text-align: center; }
.msg time { font-size: 10.5px; color: var(--mut); margin-left: 6px; }
#chat-form { display: flex; gap: 6px; padding: 8px; border-top: 1px solid var(--line); }
#chat-input { flex: 1; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: var(--txt); padding: 10px 12px; outline: none; font-size: 15px; min-width: 0; }
#chat-input:focus { border-color: var(--acc); }
#chat-send { width: 44px; border-radius: 12px; background: var(--acc); color: #211500; font-size: 18px; font-weight: 900; }
#chat-toggle { position: fixed; right: 12px; bottom: calc(18px + var(--safe-b)); z-index: 25; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-weight: 700; box-shadow: 0 8px 22px rgba(0,0,0,.35); display: flex; align-items: center; gap: 6px; }
#chat-badge { background: var(--f); color: #fff; border-radius: 999px; font-size: 12px; padding: 1px 7px; animation: pulse 1s infinite; }

/* ---------- emotes ---------- */
#emote-bar { position: fixed; left: 50%; bottom: calc(16px + var(--safe-b)); transform: translateX(-50%); z-index: 21; display: flex; gap: 6px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 6px; backdrop-filter: blur(6px); }
#emote-bar button { background: rgba(255,255,255,.06); border-radius: 12px; padding: 6px 9px; font-size: 20px; display: flex; flex-direction: column; align-items: center; min-width: 54px; }
#emote-bar button span { font-size: 10.5px; color: var(--mut); margin-top: 1px; }
#emote-bar button:hover { background: rgba(255,255,255,.14); }

/* ---------- mobile ---------- */
#mobile-controls { display: none; }
#joy-base { position: fixed; width: 120px; height: 120px; margin: -60px 0 0 -60px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.35); z-index: 19; display: none; pointer-events: none; }
#joy-knob { position: absolute; left: 50%; top: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
#joy-hint { position: fixed; left: 40px; bottom: calc(120px + var(--safe-b)); font-size: 34px; opacity: .35; z-index: 5; pointer-events: none; }
.hide-desktop { display: none; }

/* ---------- modals ---------- */
.modal { position: fixed; inset: 0; z-index: 40; background: rgba(5,8,18,.55); display: flex; align-items: center; justify-content: center; padding: 14px; backdrop-filter: blur(3px); }
.modal-card { background: var(--bg2); border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px 16px; width: min(560px, 100%); max-height: 92vh; overflow: auto; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.map-card { width: 96vw; max-width: none; height: 94vh; height: 94dvh; max-height: none; display: flex; flex-direction: column; overflow: hidden; padding: 10px 12px 12px; }
.map-card .modal-head { margin-bottom: 8px; }
.map-card .hint { opacity: .6; font-size: 12px; font-weight: 400; }
.map-wrap { position: relative; flex: 1; min-height: 0; }
.map-tools { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; }
.map-tools button { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.25); background: rgba(12,18,32,.78); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
.map-tools button:hover { background: rgba(40,60,100,.9); }
#bigmap { width: 100%; height: 100%; display: block; border-radius: 12px; cursor: grab; touch-action: none; }
#bigmap.drag { cursor: grabbing; }
.modal-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 18px; }
.modal-head .x { margin-left: auto; }
.help { margin: 0; padding-left: 20px; line-height: 1.6; color: #d7e0f2; font-size: 14.5px; }
.help li { margin-bottom: 6px; }
.set-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.seg { display: flex; gap: 6px; }
#players-list { display: flex; flex-direction: column; gap: 6px; }
.pl { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border-radius: 12px; padding: 8px 12px; }
.pl .gd { width: 10px; height: 10px; border-radius: 50%; }
.pl .nm { font-weight: 700; flex: 1; }
.pl .zn { color: var(--mut); font-size: 12.5px; }
.pl button { background: rgba(255,255,255,.1); border-radius: 8px; padding: 4px 10px; font-size: 12.5px; }

/* ---------- responsive ---------- */
@media (max-width: 900px), (pointer: coarse) {
  .hide-sm { display: none !important; }
}
@media (pointer: coarse) {
  .hide-desktop { display: block; }
  #mobile-controls { display: block; }
  .mc-right { position: fixed; right: 14px; bottom: calc(80px + var(--safe-b)); z-index: 21; display: grid; grid-template-columns: repeat(2, 64px); gap: 10px; direction: rtl; }
  .mc { width: 64px; height: 64px; border-radius: 50%; background: rgba(20,28,50,.6); border: 2px solid rgba(255,255,255,.35); font-size: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; direction: ltr; backdrop-filter: blur(4px); }
  .mc small { font-size: 9.5px; color: #dfe6f5; margin-top: -2px; }
  .mc.big { width: 76px; height: 76px; font-size: 30px; }
  .mc.down { background: rgba(255,185,56,.55); }
  #emote-bar { bottom: auto; top: calc(56px + var(--safe-t)); left: 10px; transform: none; flex-direction: column; padding: 4px; gap: 4px; }
  #emote-bar button { min-width: 0; padding: 4px 6px; font-size: 18px; }
  #emote-bar button span { display: none; }
  #prompts { bottom: calc(24px + var(--safe-b)); }
  #vehicle-hud { bottom: calc(230px + var(--safe-b)); left: 10px; min-width: 130px; padding: 6px 10px; pointer-events: none; }
  #toasts { left: 62px; right: 128px; width: auto; transform: none; top: calc(54px + var(--safe-t)); }
  .toast { font-size: 13px; padding: 8px 10px; }
  .vh-row b { font-size: 18px; }
}
@media (max-width: 700px) {
  .hide-xs { display: none !important; }
  #topbar { gap: 5px; padding-left: 6px; padding-right: 6px; }
  .brand { padding: 4px; }
  .pill { font-size: 12.5px; padding: 5px 8px; }
  .icon { width: 34px; height: 34px; font-size: 15px; }
  #btn-map, #btn-settings { display: none; }
  #minimap { width: 112px; height: 112px; top: calc(52px + var(--safe-t)); right: 8px; }
  #chat-panel { left: 8px; right: 8px; width: auto; top: auto; bottom: calc(8px + var(--safe-b)); height: min(58vh, 460px); }
  #chat-panel.closed { transform: translateY(calc(100% + 20px)); }
  #chat-toggle { bottom: auto; top: calc(172px + var(--safe-t)); right: 8px; padding: 8px 12px; }
  .card { padding: 16px; }
  .card h1 { font-size: 24px; }
  .breeds { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .breed img { max-height: 22vh; object-fit: contain; }
}
@media (max-height: 500px) and (pointer: coarse) {
  #minimap { width: 96px; height: 96px; }
  #chat-toggle { top: calc(152px + var(--safe-t)); }
  #chat-panel { height: 80vh; }
}

/* air combat HUD */
#reticle { position: fixed; left: 50%; top: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border: 2px solid rgba(120, 255, 150, .9); border-radius: 50%; pointer-events: none; z-index: 12; box-shadow: 0 0 6px rgba(0,0,0,.6); }
#reticle::before, #reticle::after { content: ''; position: absolute; background: rgba(120, 255, 150, .9); }
#reticle::before { left: 50%; top: -10px; bottom: -10px; width: 2px; margin-left: -1px; clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%, 0 70%, 100% 70%, 100% 100%, 0 100%); }
#reticle::after { top: 50%; left: -10px; right: -10px; height: 2px; margin-top: -1px; clip-path: polygon(0 0, 30% 0, 30% 100%, 0 100%, 0 0, 70% 0, 100% 0, 100% 100%, 70% 100%); }
#reticle.zoom { width: 70px; height: 70px; margin: -35px 0 0 -35px; }
#lockbox { position: fixed; width: 56px; height: 56px; margin: -28px 0 0 -28px; border: 2px dashed #ffd54a; pointer-events: none; z-index: 12; }
#lockbox.locked { border: 3px solid #ff3b3b; box-shadow: 0 0 12px #ff3b3b; }
#lockbox span { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 4px; white-space: nowrap; font: bold 12px system-ui, sans-serif; color: #fff; text-shadow: 0 0 3px #000, 0 0 3px #000; }
/* incoming missile / enemy lock direction markers */
.threat-ind { position: fixed; left: 0; top: 0; width: 0; height: 0; pointer-events: none; z-index: 13; }
.threat-ind .ta { position: absolute; left: -14px; top: -14px; width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 26px solid #ff2a2a; filter: drop-shadow(0 0 4px #000); }
.threat-ind .tr { position: absolute; left: -22px; top: -22px; width: 40px; height: 40px; border: 3px solid #ff2a2a; border-radius: 50%; box-shadow: 0 0 10px #ff2a2a; }
.threat-ind .tl { position: absolute; left: 0; top: 22px; transform: translateX(-50%); white-space: nowrap; font: bold 13px system-ui, sans-serif; color: #fff; text-shadow: 0 0 3px #000, 0 0 3px #000; }
.threat-ind.lk .ta { border-bottom-color: #ffa000; } .threat-ind.lk .tr { border-color: #ffa000; box-shadow: 0 0 10px #ffa000; }
#alert { position: fixed; top: calc(64px + var(--safe-t, 0px)); left: 50%; transform: translateX(-50%); z-index: 30; pointer-events: none; font: 800 24px system-ui, sans-serif; color: #fff; padding: 8px 20px; border-radius: 12px; background: rgba(210, 20, 20, .85); box-shadow: 0 0 24px rgba(255, 0, 0, .6); letter-spacing: .5px; }
#alert.warn { background: rgba(230, 140, 0, .85); box-shadow: 0 0 18px rgba(255, 150, 0, .5); font-size: 18px; }
#alert.blink { animation: kkblink .3s steps(2) infinite; }
@keyframes kkblink { 50% { opacity: .35; } }
#vehicle-hud .wpn { font-size: 13px; }
#vehicle-hud .wpn.ready { color: #7dffa0; }
#bombmark { position: fixed; width: 34px; height: 34px; margin: -17px 0 0 -17px; pointer-events: none; z-index: 12; border: 2px solid #ff5252; border-radius: 50%; }
#bombmark::before, #bombmark::after { content: ''; position: absolute; left: 50%; top: 50%; width: 44px; height: 2px; margin: -1px 0 0 -22px; background: #ff5252; transform: rotate(45deg); }
#bombmark::after { transform: rotate(-45deg); }
.score-card { width: min(760px, 96vw); }
.score-card .hint { opacity: .6; font-weight: 400; margin-left: 6px; }
#score-table { width: 100%; border-collapse: collapse; font-size: 14px; }
#score-table th, #score-table td { padding: 6px 6px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); white-space: nowrap; }
#score-table th { font-size: 13px; opacity: .8; }
#score-table td.nm, #score-table td.rk { text-align: left; }
#score-table td.sc { font-weight: 800; color: #ffd54a; }
#score-table tr.me td { background: rgba(80, 160, 255, .18); }
