:root {
  --navy: #0b245b;
  --navy-2: #102a6b;
  --red: #c8102e;
  --muted: #64748b;
  --bg: #f3f7fb;
  --card: #ffffff;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: linear-gradient(#f7fbff, #eef3f9 55%, #e8eef6);
  color: var(--navy);
}

.wrap {
  width: min(420px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.banner {
  width: 100%;
  height: auto;
  max-height: 168px;
  object-fit: contain;
  background: #000;
  border-radius: 14px;
  margin: 0 0 14px;
  display: block;
}
.logo { display: none; }
.d-home-brand img.brand-hero {
  width: 92px;
  height: 46px;
  object-fit: cover;
  object-position: left center;
  border-radius: 8px;
  background: #000;
}
h1.title {
  margin: 0;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
h1.title span { display: block; font-size: 1.15rem; }
.welcome { text-align: center; color: #1d4ed8; font-weight: 700; margin: 10px 0 4px; }
.hint { text-align: center; color: var(--muted); font-size: 0.9rem; margin: 0 0 16px; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 16px;
}

label.field {
  display: block;
  font-weight: 800;
  color: #1d4ed8;
  margin-bottom: 8px;
}
label.field small { display: block; color: var(--red); font-weight: 700; }

.input {
  width: 100%;
  border: 1px solid #d6dee8;
  border-radius: 12px;
  padding: 12px 12px 12px 40px;
  font-size: 1rem;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%2394a3b8' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/></svg>") 12px 50% no-repeat;
}

.btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-2);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 13px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.btn:active { transform: scale(0.99); }
.btn.ghost { background: #e2e8f0; color: var(--navy); margin-top: 8px; }

.secure {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.lang {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.lang a { color: var(--muted); text-decoration: none; font-weight: 700; }
.lang a.active { color: var(--red); }
.err { color: var(--red); font-size: 0.85rem; margin-top: 8px; display: none; }

.d-home-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.d-home-brand { display: flex; gap: 10px; align-items: center; }
.d-home-brand img { width: 46px; height: 46px; }
.d-home-brand img.brand-hero { width: 92px; height: 46px; }
.d-home-brand strong { display: block; }
.d-home-brand span { color: var(--muted); font-size: 0.82rem; }
.d-home-actions { display: flex; gap: 8px; }
.chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.d-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.d-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.93rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
}
.d-menu-card.full { grid-column: 1 / -1; flex-direction: row; padding: 16px 20px; }
.d-menu-icon { font-size: 2rem; line-height: 1; }

.page-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.page-head h2 { margin: 0; font-size: 1.05rem; }
.q-card { background: #fff; border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.opts { display: grid; gap: 8px; margin-top: 12px; }
.opt {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: start;
  cursor: pointer;
  font-weight: 700;
}
.opt.pick { border-color: var(--navy); background: #eef3ff; }
.meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; }
.result { text-align: center; padding: 24px 8px; }
.result .score { font-size: 2.4rem; font-weight: 900; }
.pass { color: #16a34a; }
.d-mini-hist {
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px 8px;
  box-shadow: var(--shadow);
}
.d-mini-hist h3 {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 700;
}
.d-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.83rem;
}
.d-mini-row:last-child { border-bottom: 0; }
.d-mini-score { font-weight: 900; font-size: 1rem; color: var(--navy); }
.d-mini-pass { color: #16a34a; font-weight: 700; }
.hist-btn{
  display:flex;width:100%;align-items:center;gap:10px;justify-content:space-between;
  background:#fff;border:0;border-bottom:1px solid #f1f5f9;padding:12px 4px;cursor:pointer;text-align:left;
  font:inherit;
}
.hist-btn:last-child{border-bottom:0;}

.lesson, .sign {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}
.sign .glyph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.muted { color: var(--muted); font-size: 0.85rem; }
.demo-badge {
  display: inline-block;
  background: #fff3cd;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ios-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 10px;
}
.dl { display: grid; gap: 8px; margin-top: 16px; }
.dl a {
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; border-radius: 12px; font-weight: 800; text-decoration: none;
}
.dl-a { background: #0b245b; color: #fff; }
.dl-i { background: #25d366; color: #053; }
html[dir="rtl"] .d-menu-card.full { flex-direction: row-reverse; }

.wrap-videos { width: min(560px, calc(100% - 24px)); }
.teacher-grid { display: grid; gap: 12px; }
.teacher-card {
  display: flex; flex-direction: row; gap: 14px; align-items: center;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 14px; text-align: left; cursor: pointer; font: inherit; color: inherit;
  box-shadow: var(--shadow);
}
.teacher-card span { display: flex; flex-direction: column; gap: 2px; }
.teacher-card strong { font-size: 1.05rem; }
.teacher-logo {
  width: 72px; height: 72px; object-fit: cover; border-radius: 14px;
  flex-shrink: 0; background: #dc2626;
}
.teacher-logo.round { border-radius: 50%; }
.v-toolbar { margin: 10px 0; }
.v-search { padding-left: 12px; background-image: none; }
.v-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.v-chip {
  border: 1px solid #e2e8f0; background: #fff; border-radius: 999px;
  padding: 6px 10px; font-size: 0.75rem; font-weight: 800; color: var(--navy); cursor: pointer;
}
.v-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.v-grid { display: grid; gap: 10px; }
.v-card {
  display: flex; flex-direction: column; gap: 6px; background: #fff; border: 0;
  border-radius: 14px; padding: 0 0 10px; text-align: left; cursor: pointer;
  font: inherit; color: inherit; box-shadow: var(--shadow); overflow: hidden;
}
.v-thumb {
  display: block; height: 148px; background: #0f172a center/cover no-repeat; position: relative;
}
.v-play {
  position: absolute; inset: auto 10px 10px auto; background: rgba(0,0,0,.72); color: #fff;
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem;
}
.v-meta { color: var(--muted); font-size: 0.72rem; font-weight: 800; padding: 0 12px; }
.v-name { font-weight: 800; font-size: 0.86rem; padding: 0 12px; line-height: 1.35; }
.v-lightbox {
  position: fixed; inset: 0; background: rgba(15,23,42,.82); z-index: 50;
  display: flex; flex-direction: column; justify-content: center; padding: 18px;
}
.v-lightbox[hidden] { display: none !important; }
.v-frame { width: 100%; max-width: 720px; margin: 0 auto; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; }
.v-frame iframe { width: 100%; height: 100%; border: 0; }
.v-lb-title { color: #fff; text-align: center; font-weight: 700; max-width: 720px; margin: 10px auto 0; }
.v-lb-close {
  position: absolute; top: 12px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 10px;
  background: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.sign-mode-ico { font-size: 2rem; line-height: 1; }
.sign-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sign-tile {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 14px;
  padding: 10px 8px 12px; cursor: pointer; font: inherit; color: inherit;
  box-shadow: var(--shadow); text-align: center;
}
.sign-tile img { width: 88px; height: 88px; object-fit: contain; }
.sign-tile span { font-size: 0.72rem; font-weight: 700; line-height: 1.3; }
.sign-lb-img { width: min(280px, 80vw); height: auto; margin: 0 auto; display: block; background: #fff; border-radius: 12px; padding: 16px; }
.quiz-sign { display: block; width: 180px; height: 180px; object-fit: contain; margin: 12px auto 18px; }
body.quiz-on {
  background-color: #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Cpath d='M10 5h2v12h-2zM5 10h12v2H5z' fill='%23ffffff' fill-opacity='0.16'/%3E%3C/svg%3E");
}
body.quiz-on .wrap { padding-bottom: 28px; }
body.quiz-on .page-head h2 { color: #fff; }
body.quiz-on .chip { background: rgba(255,255,255,.92); }
.quiz-hero {
  background: transparent;
  padding: 28px 18px 22px;
  text-align: center;
  color: #fff;
}
.quiz-cap {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 1.5rem;
}
.quiz-hero h3 { margin: 0 0 10px; font-size: 1.35rem; }
.quiz-hero p { margin: 0 0 20px; opacity: .95; line-height: 1.45; font-size: 0.95rem; }
.quiz-start {
  border: 0; background: #fff; color: #1d4ed8; font-size: 1rem;
  padding: 12px 28px; border-radius: 999px; cursor: pointer; font: inherit; font-weight: 800;
}
.quiz-start.dark { background: #1d4ed8; color: #fff; }
.quiz-board {
  background: #fff; color: var(--navy); padding: 16px 14px 18px; border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,23,42,.18);
}
.quiz-top {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; color: #334155; font-size: 0.95rem;
}
.quiz-rule { height: 1px; background: #e2e8f0; margin: 12px 0 4px; }
.quiz-score-pill {
  background: #dbeafe; color: #1d4ed8; border-radius: 999px; padding: 4px 10px; font-weight: 800; font-size: 0.82rem;
}
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  min-height: 76px; text-align: left; border: 1.5px solid #e2e8f0; background: #fff;
  border-radius: 12px; padding: 10px; cursor: pointer; font: inherit; font-size: 0.78rem;
  font-weight: 700; color: #0f172a; line-height: 1.3;
}
.quiz-opt i { font-style: normal; font-weight: 900; flex-shrink: 0; }
.quiz-opt.ok { border-color: #16a34a; color: #15803d; background: #f0fdf4; }
.quiz-opt.bad { border-color: #dc2626; color: #b91c1c; background: #fef2f2; }
.quiz-next {
  display: block; width: 100%; margin-top: 14px; border: 0; border-radius: 14px;
  background: #2563eb; color: #fff; font-weight: 800; padding: 13px; cursor: pointer; font: inherit;
}
.quiz-next[hidden] { display: none; }
.quiz-done { padding: 18px 8px 8px; text-align: center; }
.quiz-done .quiz-cap { background: #dbeafe; }
.quiz-done-score { font-size: 2.4rem; font-weight: 900; color: #1d4ed8; margin: 8px 0 16px; }

.input-pass { padding-left: 12px; background-image: none; }
#passWrap[hidden] { display: none; }
.adm-body { background: #e8edf5; }
.adm-wrap { width: min(720px, calc(100% - 24px)); }
.adm-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  background: linear-gradient(180deg, #0b245b, #102a6b); color: #fff;
  border-radius: 16px; padding: 14px 16px; margin-bottom: 14px;
}
.adm-head strong { display: block; font-size: 1.05rem; }
.adm-head span { display: block; opacity: .85; font-size: .8rem; margin-top: 4px; }
.adm-head .chip { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }
.adm-hint { color: #475569; font-size: .9rem; margin: 0 0 14px; }
.adm-editor {
  margin-top: 18px; background: #fff; border-radius: 16px; padding: 14px 16px 16px;
  box-shadow: var(--shadow);
}
.adm-editor h3 { margin: 0 0 6px; }
.adm-editor p { margin: 0 0 12px; color: var(--muted); font-size: .88rem; }
.adm-add { display: grid; gap: 8px; }
.adm-add input {
  border: 1px solid #d6dee8; border-radius: 10px; padding: 10px 12px; font: inherit;
}
.adm-check { font-size: .88rem; font-weight: 700; color: #334155; }
.adm-edit-row {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 8px 0; border-top: 1px solid #eef2f7; font-size: .9rem; font-weight: 700;
}
.adm-edit-row small { color: var(--muted); font-weight: 600; }
.adm-edit-row button {
  border: 1px solid #e2e8f0; background: #f8fafc; border-radius: 8px; padding: 4px 10px;
  font-weight: 800; cursor: pointer;
}
.adm-page p { margin: 0; line-height: 1.5; color: #334155; }
.adm-wrap.wide { width: min(960px, calc(100% - 24px)); }
.adm-toolbar { display:flex; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.adm-toolbar input {
  flex:1; min-width:160px; border:1px solid #d6dee8; border-radius:12px; padding:10px 12px; font:inherit;
}
.adm-table { width:100%; border-collapse:collapse; font-size:.88rem; }
.adm-table th { text-align:left; color:var(--muted); border-bottom:2px solid #e5e7eb; padding:8px 6px; }
.adm-table td { padding:8px 6px; border-bottom:1px solid #f1f5f9; vertical-align:middle; }
.adm-table .muted { color:var(--muted); }
.adm-pill { font-size:.75rem; font-weight:800; border-radius:999px; padding:3px 8px; }
.adm-pill.on { background:#dcfce7; color:#166534; }
.adm-pill.off { background:#fee2e2; color:#991b1b; }
.adm-ops { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.adm-ops a, .adm-ops button {
  border:0; background:none; color:#b91c1c; font-weight:800; cursor:pointer; padding:0; font:inherit; font-size:.82rem; text-decoration:none;
}
.adm-form { display:grid; gap:12px; }
.adm-form label { display:grid; gap:4px; font-size:.8rem; font-weight:700; color:var(--muted); }
.adm-form input, .adm-form select {
  border:1px solid #d6dee8; border-radius:10px; padding:10px 12px; font:inherit; color:var(--navy);
}
.adm-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.adm-flash { padding:10px 12px; border-radius:10px; font-weight:700; font-size:.88rem; }
.adm-flash.ok { background:#dcfce7; color:#166534; }
.adm-flash.err { background:#fee2e2; color:#991b1b; }
.adm-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:14px; }
.adm-stats .stat { background:#fff; border-radius:14px; padding:12px; box-shadow:var(--shadow); }
.adm-stats .label { font-size:.75rem; color:var(--muted); font-weight:700; }
.adm-stats .value { font-size:1.4rem; font-weight:900; color:var(--navy); }
@media (max-width:640px){
  .adm-2 { grid-template-columns:1fr; }
  .adm-stats { grid-template-columns:1fr; }
}
.adm-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; }
.adm-filters {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:10px; margin-bottom:12px; padding:12px;
}
.adm-filters label { display:grid; gap:4px; font-size:.75rem; font-weight:700; color:var(--muted); }
.adm-filters input, .adm-filters select {
  border:1px solid #d6dee8; border-radius:10px; padding:9px 10px; font:inherit; color:var(--navy);
}
.adm-fs { border:1px solid #e2e8f0; border-radius:12px; padding:12px; margin:0; display:grid; gap:10px; }
.adm-fs legend { font-weight:800; color:var(--navy); padding:0 6px; }
.adm-pager { display:flex; gap:8px; justify-content:center; margin-top:12px; }
.adm-pager button {
  border:0; background:#1e3a8a; color:#fff; font-weight:800; border-radius:10px; padding:8px 14px; cursor:pointer;
}
.adm-pager button:disabled { opacity:.4; cursor:default; }
.adm-form textarea { border:1px solid #d6dee8; border-radius:10px; padding:10px 12px; font:inherit; color:var(--navy); }
#imgPrev { max-width:100%; max-height:280px; border-radius:8px; border:1px solid #e2e8f0; background:#fff; display:block; margin-bottom:8px; }
.adm-drop {
  border:2px dashed #93c5fd; background:#eff6ff; border-radius:14px; padding:18px 14px; text-align:center;
  color:#1e3a8a; cursor:pointer; font-weight:700;
}
.adm-drop.on { background:#dbeafe; border-color:#2563eb; }
.adm-drop small { display:block; font-weight:600; color:#64748b; margin-top:6px; }
.adm-paste-hint { font-size:.82rem; font-weight:600; color:var(--muted); margin:0; }
.adm-stats .value small { font-size:.85rem; font-weight:700; color:var(--muted); }
@media (max-width:800px){
  .adm-filters, .adm-3 { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .adm-filters, .adm-3 { grid-template-columns:1fr; }
}
.adm-exam { border:1px solid #e2e8f0; border-radius:12px; margin-bottom:10px; background:#fff; }
.adm-exam summary {
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; padding:10px 12px; cursor:pointer; font-weight:700;
}
.adm-qlist { margin:0; padding:0 12px 12px 28px; }
.adm-q { margin:0 0 12px; padding-bottom:10px; border-bottom:1px solid #f1f5f9; }
.adm-q p { margin:6px 0; font-weight:700; color:#0f172a; }
.adm-q-top { display:flex; gap:8px; align-items:center; flex-wrap:wrap; font-size:.82rem; color:var(--muted); }
.adm-q-opts { display:grid; gap:4px; font-size:.82rem; color:#334155; }
.adm-q-opts .ok { color:#166534; font-weight:800; }
.adm-q-opts .bad { color:#b91c1c; font-weight:800; }
.adm-q.ok { border-left:3px solid #16a34a; padding-left:8px; }
.adm-q.bad { border-left:3px solid #dc2626; padding-left:8px; }
.adm-q.bos { border-left:3px solid #94a3b8; padding-left:8px; }
.adm-pill:not(.on):not(.off) { background:#e2e8f0; color:#475569; }
.adm-rep { margin-bottom:12px; }
.adm-rep-top { display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:8px; font-size:.88rem; }
.adm-rep-q { margin:0 0 8px; font-weight:700; line-height:1.45; }
.adm-rep-opts .ok { color:#166534; font-weight:800; }
.adm-rep-note { background:#fff7ed; padding:8px 10px; border-radius:8px; margin:0; }

.d-ann-list { display:grid; gap:10px; margin:0 0 14px; }
.d-ann {
  display:flex; gap:10px; align-items:flex-start; justify-content:space-between;
  background:#fffbeb; border:1px solid #fcd34d; border-radius:14px;
  padding:12px 14px; color:#92400e;
}
.d-ann strong { display:block; font-size:.95rem; }
.d-ann p { margin:6px 0 0; font-size:.86rem; font-weight:600; line-height:1.45; }
.d-ann .chip { background:#fff; border-color:#f59e0b; color:#92400e; flex-shrink:0; }

[hidden] { display: none !important; }

.daily-pick {
  max-height: 380px; overflow: auto; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff;
}
.daily-pick-row {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 10px; border-bottom: 1px solid #f1f5f9; font-size: .82rem; cursor: pointer;
}
.daily-pick-row:hover { background: #f8fafc; }
.daily-pick-row.sel { background: #eff6ff; }
.daily-pick-row input { margin-top: 3px; flex-shrink: 0; }
.daily-pick-row .qtxt { font-weight: 700; color: #0f172a; line-height: 1.4; }
.daily-pick-row small { display: block; color: var(--muted); font-weight: 600; margin-top: 2px; }
.daily-pick-meta { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; align-items: center; font-size: .82rem; font-weight: 700; }

.daily-tags { display: flex; flex-wrap: wrap; gap: 4px; max-width: 320px; }
.daily-tag {
  font-size: .72rem; font-weight: 800; background: #dbeafe; color: #1e40af;
  border-radius: 999px; padding: 3px 8px; line-height: 1.3;
}
.daily-tag.miss { background: #f1f5f9; color: #64748b; }

.rank-table td { vertical-align: top; }
.rank-gsm { font-weight: 800; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
