/* Football scarves — interface language adapted from KolleK (MIT, see CREDITS.md).
   Neutral surfaces, hairline borders, 8/12/16px radii, Inter, one brand blue for data. */

:root {
  --page: #ffffff;
  --sidebar: #f8f9fa;
  --canvas: #ffffff;
  --card: #f5f5f5;
  --pill-group: #f3f4f5;
  --input: #ffffff;
  --hairline: #e5e7eb;
  --hairline-soft: #f3f4f6;
  --ink: #111111;
  --body: #374151;
  --muted: #6b7280;
  --muted-soft: #898989;
  --primary: #111111;
  --on-primary: #ffffff;

  --brand: #2a78d6;          /* single-series data colour */
  --brand-strong: #184f95;
  --success: #10b981;
  --new: #e34948;

  /* sequential map ramp, light -> dark (low -> high) */
  --seq-1: #cde2fb; --seq-2: #9ec5f4; --seq-3: #6da7ec; --seq-4: #3987e5; --seq-5: #256abf; --seq-6: #184f95;
  --nodata: #eceef0;
  --ocean: #ffffff;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, .06);
  --shadow-sm: 0 1px 3px rgba(17, 17, 17, .08), 0 1px 2px rgba(17, 17, 17, .04);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Unbounded", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* accents, taken from the colours scarves are actually knitted in */
  --c-red: #e4412e;
  --c-yellow: #f2b632;
  --c-blue: #2b59c3;
  --c-teal: #13a08a;
  --c-pink: #e0569b;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 14px; line-height: 1.5; color: var(--body); background: var(--page); -webkit-font-smoothing: antialiased; font-feature-settings: "cv11", "ss01"; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
.ico { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* ------------------------------------------------------------ shell */
.shell { display: flex; min-height: 100vh; }
.main { flex: 1; min-width: 0; outline: none; }
.page { padding: 32px 24px 64px; }
@media (min-width: 1024px) { .page { padding: 40px 40px 72px; } }
.page-narrow { max-width: 1152px; margin: 0 auto; }

/* sidebar */
.sidebar {
  position: sticky; top: 0; z-index: 40;
  display: flex; flex-direction: column; gap: 24px;
  width: 240px; height: 100vh; flex: none;
  padding: 20px 16px; background: var(--sidebar); border-right: 1px solid var(--hairline);
}
.sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.logo { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--primary); color: var(--on-primary); }
.logo svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; }
.wordmark { font-size: 17px; font-weight: 650; letter-spacing: -.02em; color: var(--ink); }

.sidebar-scroll { display: flex; flex-direction: column; gap: 24px; flex: 1; min-height: 0; overflow-y: auto; margin: 0 -6px; padding: 0 6px; scrollbar-width: thin; scrollbar-color: var(--hairline) transparent; }
.nav-group { display: flex; flex-direction: column; gap: 2px; }
.nav-label { margin: 0; padding: 6px 8px; font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-soft); }
.nav-link {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 8px 10px; border: 0; border-radius: var(--radius-md); background: transparent; text-align: left;
  font-size: 14px; font-weight: 500; color: var(--body); transition: background .15s, color .15s;
}
.nav-link > span:not(.nav-count):not(.dot):not(.flag) { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-link .ico { color: var(--muted); }
.nav-link:hover { background: var(--canvas); color: var(--ink); }
.nav-link.is-active { background: var(--canvas); color: var(--ink); box-shadow: var(--shadow-xs); }
.nav-link.is-active .ico { color: var(--ink); }
.nav-count { flex: none; font-size: 12px; color: var(--muted-soft); font-variant-numeric: tabular-nums; }
.sidebar-foot { display: flex; align-items: center; gap: 10px; padding: 12px 8px 0; border-top: 1px solid var(--hairline); }
.avatar { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 999px; background: #d1fae5; color: #065f46; font-weight: 600; font-size: 13px; flex: none; }
.owner p { margin: 0; }
.owner-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.owner-meta { font-size: 12px; color: var(--muted); }

.topbar { display: none; }
.scrim { position: fixed; inset: 0; z-index: 35; background: rgba(0, 0, 0, .35); }

@media (max-width: 1023px) {
  .shell { display: block; }
  .topbar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--page); border-bottom: 1px solid var(--hairline); }
  .sidebar { position: fixed; inset: 0 auto 0 0; transform: translateX(-100%); transition: transform .2s ease; box-shadow: none; }
  .sidebar.is-open { transform: none; box-shadow: 0 10px 40px rgba(0, 0, 0, .2); }
}

/* ------------------------------------------------------------ shared atoms */
.crumbs { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; font-size: 13px; min-width: 0; }
.crumbs a { font-weight: 500; color: var(--muted-soft); transition: color .15s; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--muted-soft); }
.crumbs strong { font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

h1.title { margin: 0; font-family: var(--display); font-size: 28px; line-height: 1.2; font-weight: 700; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.lede { margin: 6px 0 0; max-width: 36rem; font-size: 15px; line-height: 1.6; color: var(--muted); }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; background: var(--card); color: var(--ink); font-size: 13px; font-weight: 500; white-space: nowrap; }
.badge .ico { width: 14px; height: 14px; color: var(--muted); }
.badge-sm { padding: 2px 9px; font-size: 12px; }
.badge-new { background: color-mix(in srgb, var(--new) 12%, transparent); color: var(--new); }
.badge-official { background: color-mix(in srgb, #f59e0b 16%, transparent); color: #b45309; }
.badge-nt { background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }

.flag { display: inline-block; flex: none; width: 18px; height: 13.5px; border-radius: 2.5px; object-fit: cover; box-shadow: 0 0 0 1px rgba(17, 17, 17, .12); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: var(--radius-md); border: 1px solid transparent; font-size: 14px; font-weight: 500; white-space: nowrap; transition: background .15s, border-color .15s, color .15s; }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { opacity: .88; }
.btn-outline { background: var(--canvas); border-color: var(--hairline); color: var(--ink); }
.btn-outline:hover { border-color: var(--muted-soft); }
.btn:disabled { opacity: .4; cursor: default; }
.icon-btn { display: grid; place-items: center; width: 36px; height: 36px; border-radius: var(--radius-md); border: 1px solid var(--hairline); background: var(--canvas); color: var(--ink); }

.pills { display: flex; flex-wrap: wrap; gap: 6px; padding: 6px; border-radius: 999px; background: var(--card); }
.pill { padding: 6px 14px; border: 0; border-radius: 999px; background: transparent; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s, background .15s; white-space: nowrap; }
.pill:hover { color: var(--ink); }
.pill.is-on { background: var(--canvas); color: var(--ink); box-shadow: var(--shadow-sm); }

.box { border: 1px solid var(--hairline); border-radius: var(--radius-xl); background: var(--canvas); }
.box-pad { padding: 24px; }
.box-title { margin: 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.box-sub { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------ items page */
.coll-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
@media (min-width: 640px) { .coll-head { flex-direction: row; align-items: flex-start; } }
.coll-icon { display: grid; place-items: center; width: 96px; height: 96px; flex: none; border-radius: var(--radius-xl); border: 1px solid var(--hairline); background: var(--card); overflow: hidden; }
.coll-icon img { width: 100%; height: 100%; object-fit: cover; }
.coll-icon .flag { width: 56px; height: 42px; border-radius: 5px; }
.coll-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.kpis { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 16px; }
.kpis p { margin: 0; }
.kpi-label { font-size: 13px; color: var(--muted-soft); }
.kpi-value { font-size: 16px; font-weight: 600; color: var(--ink); }

.toolbar { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.toolbar-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.toolbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.search { position: relative; }
.search .ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted-soft); pointer-events: none; }
.search input { height: 40px; width: 220px; padding: 0 12px 0 36px; border: 1px solid var(--hairline); border-radius: var(--radius-md); background: var(--input); color: var(--ink); font-size: 14px; }
.search input::placeholder { color: var(--muted-soft); }
.search input:focus { outline: none; border-color: transparent; box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 35%, transparent); }
.select { height: 40px; padding: 0 34px 0 12px; border: 1px solid var(--hairline); border-radius: var(--radius-md); background: var(--input); color: var(--ink); font-size: 14px; appearance: none;
  background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23a3a3a3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23a3a3a3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 8px center; background-size: 18px; }
.viewswitch { display: flex; gap: 2px; padding: 2px; border: 1px solid var(--hairline); border-radius: var(--radius-md); }
.viewswitch button { display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 6px; background: transparent; color: var(--muted); }
.viewswitch button:hover { color: var(--ink); }
.viewswitch button.is-on { background: var(--card); color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border: 1px solid var(--hairline); border-radius: 999px; background: var(--canvas); font-size: 13px; font-weight: 500; color: var(--body); transition: border-color .15s, background .15s, color .15s; }
.chip:hover { border-color: var(--muted-soft); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }
.chip-count { color: var(--muted-soft); font-variant-numeric: tabular-nums; }
.chip[aria-pressed="true"] .chip-count { color: inherit; opacity: .7; }
.clear { border: 0; background: none; padding: 0 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
.clear:hover { color: var(--muted); }

.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1440px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card { display: block; overflow: hidden; border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--canvas); transition: border-color .15s; }
.card:hover { border-color: var(--muted); }
.card-photo { display: grid; place-items: center; height: 144px; padding: 14px; background: var(--card); }
.card-photo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(17, 17, 17, .14)); }
.card-body { padding: 14px; }
.card-name { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; min-height: 26px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--muted); }
.card-foot span:first-child { display: inline-flex; align-items: center; gap: 7px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-foot b { flex: none; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.list { border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; }
.row { display: grid; grid-template-columns: 96px minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, 1.4fr) 56px; align-items: center; gap: 16px; padding: 10px 16px; border-bottom: 1px solid var(--hairline-soft); background: var(--canvas); transition: background .15s; }
.row:last-child { border-bottom: 0; }
.row:hover { background: var(--sidebar); }
.row-head { background: var(--sidebar); font-size: 12px; font-weight: 500; color: var(--muted-soft); text-transform: uppercase; letter-spacing: .04em; padding-top: 8px; padding-bottom: 8px; }
.row-head:hover { background: var(--sidebar); }
.row-thumb { height: 40px; border-radius: 6px; background: var(--card); display: grid; place-items: center; padding: 4px; }
.row-thumb img { width: 100%; height: 100%; object-fit: contain; }
.row-name { font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-cell { display: flex; align-items: center; gap: 7px; min-width: 0; color: var(--muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.row-year { text-align: right; color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (max-width: 760px) {
  .row { grid-template-columns: 72px minmax(0, 1fr) 44px; }
  .row .row-cell { display: none; }
}

.result-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-top: 20px; font-size: 13px; color: var(--muted-soft); }
.more { display: flex; justify-content: center; margin-top: 20px; }

.empty { display: flex; flex-direction: column; align-items: center; padding: 56px 24px; text-align: center; border: 1px solid var(--hairline); border-radius: var(--radius-lg); }
.empty-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 20px; border-radius: var(--radius-lg); background: var(--card); color: var(--ink); }
.empty-icon .ico { width: 28px; height: 28px; }
.empty-title { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.empty p { margin: 10px 0 0; max-width: 460px; font-size: 15px; color: var(--muted); }

/* ------------------------------------------------------------ scarf page */
.item { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .item { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); } }
.item-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.item-head .coll-title-row { margin-top: 6px; }
.stepper { display: flex; gap: 8px; }
.photo {
  position: relative; display: grid; place-items: center; padding: clamp(20px, 5vw, 48px);
  border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--card); overflow: hidden;
  min-height: 240px; perspective: 900px;
}
.photo img { width: 100%; max-height: 60vh; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(17, 17, 17, .22)); transition: transform .4s cubic-bezier(.16, 1, .3, 1); transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.photo-glare { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .22), transparent 45%); opacity: 0; transition: opacity .3s; }
.photo:hover .photo-glare { opacity: 1; }
.section-title { margin: 32px 0 12px; font-size: 16px; font-weight: 600; color: var(--ink); }
.note { margin: 0; padding: 20px; border-radius: var(--radius-lg); background: var(--card); font-size: 15px; line-height: 1.65; color: var(--body); max-width: 70ch; }
.note-empty { color: var(--muted); }
.note-foot { margin: 8px 0 0; font-size: 12px; color: var(--muted-soft); }
.details { border-radius: var(--radius-lg); background: var(--card); padding: 6px 20px; }
.detail { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.detail:last-child { border-bottom: 0; }
.detail dt { color: var(--muted); }
.detail dd { margin: 0; display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); text-align: right; min-width: 0; }
.detail dd a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--hairline); overflow-wrap: anywhere; }
.detail dd a:hover { text-decoration-color: currentColor; }
.detail .ico { color: var(--muted); }
.related { display: grid; gap: 10px; }
.related a { display: flex; align-items: center; gap: 12px; padding: 8px; border: 1px solid var(--hairline); border-radius: var(--radius-md); transition: border-color .15s; }
.related a:hover { border-color: var(--muted); }
.related .row-thumb { width: 84px; flex: none; }
.related span { font-size: 13px; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kbd-hint { margin-top: 16px; font-size: 12px; color: var(--muted-soft); }
kbd { display: inline-block; padding: 1px 6px; border: 1px solid var(--hairline); border-radius: 4px; font-family: inherit; font-size: 11px; color: var(--muted); }

.page-head { margin-bottom: 28px; }
.coll-text { min-width: 0; flex: 1; }
.logo-lg { width: 56px; height: 56px; border-radius: 14px; }
.logo-lg svg { width: 36px; height: 36px; }
.card-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; min-width: 0; }
.card-name-row .card-name { margin-bottom: 0; }
.card-logo { width: 22px; height: 22px; flex: none; object-fit: contain; }
.row-name { display: flex; align-items: center; gap: 8px; }
.row-name span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-logo { width: 20px; height: 20px; flex: none; object-fit: contain; }
.item-id { display: flex; align-items: center; gap: 16px; min-width: 0; }
.item-logo { display: grid; place-items: center; width: 72px; height: 72px; flex: none; padding: 10px; border: 1px solid var(--hairline); border-radius: var(--radius-xl); background: var(--card); }
.item-logo img { width: 100%; height: 100%; object-fit: contain; }
.item-alt { margin: 2px 0 0; font-size: 14px; color: var(--muted); }
.icon-btn-lg { width: 40px; height: 40px; }
.icon-btn:disabled { opacity: .4; cursor: default; }
.leaders-more { display: inline-block; margin-top: 12px; }

/* ------------------------------------------------------------ statistics */
.kpi-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.kpi-card { display: flex; flex-direction: column; gap: 6px; padding: 20px; border-radius: var(--radius-lg); background: var(--card); }
.kpi-card-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--muted); }
.kpi-dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.kpi-big { font-family: var(--display); font-size: 28px; line-height: 36px; font-weight: 600; letter-spacing: -.025em; color: var(--ink); }
.kpi-note { font-size: 13px; font-weight: 500; color: var(--muted-soft); }
.stat-grid { display: grid; gap: 16px; margin-top: 16px; }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); } }
.box-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.box-head-value { text-align: right; flex: none; }
.box-head-value b { display: block; font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.box-head-value span { font-size: 12px; color: var(--muted-soft); }

.bars { display: grid; gap: 14px; }
.bar-row { display: grid; gap: 6px; }
.bar-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; }
.bar-label { display: flex; align-items: center; gap: 8px; min-width: 0; color: var(--body); }
.bar-label span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-label .ico { color: var(--muted); }
.bar-val { flex: none; color: var(--muted); font-variant-numeric: tabular-nums; }
.bar-val b { color: var(--ink); font-weight: 600; }
.bar-track { height: 8px; border-radius: 999px; background: var(--card); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: var(--brand); transform-origin: left; transition: transform .8s cubic-bezier(.16, 1, .3, 1); }
.bar-row.is-muted .bar-fill { background: var(--muted-soft); }
button.bar-row { width: 100%; padding: 0; border: 0; background: none; text-align: left; }
button.bar-row:hover .bar-label span:last-child { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.is-waiting .bar-fill { transform: scaleX(0); }

.columns svg { display: block; width: 100%; height: auto; overflow: visible; }
.columns .col { fill: var(--brand); }
.columns .col.is-hot { fill: var(--brand-strong); }
.columns .hit { fill: transparent; }
.columns .grid-line { stroke: var(--hairline-soft); }
.columns .base { stroke: var(--hairline); }
.columns text { font-family: var(--font); font-size: 11px; fill: var(--muted-soft); font-variant-numeric: tabular-nums; }
.columns .peak { font-size: 12px; font-weight: 600; fill: var(--ink); }

.tables { margin-top: 16px; }
.tables summary { width: max-content; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--muted); }
.tables summary:hover { color: var(--ink); }
.tables-wrap { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.tables table { border-collapse: collapse; font-size: 13px; min-width: 220px; }
.tables caption { text-align: left; padding-bottom: 6px; font-weight: 600; color: var(--ink); }
.tables td { padding: 5px 10px; border-bottom: 1px solid var(--hairline-soft); }
.tables td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }

/* ------------------------------------------------------------ map */
.map-layout { display: grid; gap: 16px; align-items: start; }
@media (min-width: 1100px) { .map-layout { grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); } }
.map-box { overflow: hidden; }
.map-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
.map-bar .pills { padding: 4px; }
.map-bar .pill { padding: 5px 12px; font-size: 13px; }
.legend { display: flex; align-items: flex-end; gap: 2px; font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.legend-title { margin-right: 8px; font-size: 12px; font-weight: 500; color: var(--body); align-self: center; }
.legend-step { display: grid; justify-items: center; gap: 4px; }
.legend-step i { display: block; width: 34px; height: 8px; }
.legend-step:nth-child(2) i { border-radius: 4px 0 0 4px; }
.legend-step:last-child i { border-radius: 0 4px 4px 0; }
.map-frame { aspect-ratio: 16 / 11; background: var(--ocean); cursor: grab; touch-action: none; }
.map-frame:active { cursor: grabbing; }
.map-frame svg { display: block; width: 100%; height: 100%; }
.land { stroke: var(--canvas); stroke-width: .7; vector-effect: non-scaling-stroke; }
.land.has { cursor: pointer; }
.land.has:hover, .land.is-hot { stroke: var(--ink); stroke-width: 1.5; }
.dot { stroke: var(--canvas); stroke-width: 1.5; vector-effect: non-scaling-stroke; cursor: pointer; }
.dot:hover { stroke: var(--ink); }
.map-foot { margin: 0; padding: 12px 16px; border-top: 1px solid var(--hairline); font-size: 13px; color: var(--muted); }
.zoom-btns { display: flex; gap: 6px; }
.leader { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; gap: 4px 10px; width: 100%; padding: 8px 10px; border: 0; border-radius: var(--radius-md); background: transparent; text-align: left; transition: background .15s; }
.leader:hover, .leader.is-hot { background: var(--sidebar); }
.leader-rank { font-size: 12px; color: var(--muted-soft); font-variant-numeric: tabular-nums; }
.leader-name { display: flex; align-items: center; gap: 8px; min-width: 0; font-weight: 500; color: var(--ink); }
.leader-name span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leader-val { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.leader .bar-track { grid-column: 2 / 4; height: 4px; }

/* tooltip */
.tip { position: fixed; z-index: 60; pointer-events: none; min-width: 150px; max-width: 260px; padding: 10px 12px; border-radius: var(--radius-md); background: var(--primary); color: var(--on-primary); font-size: 13px; line-height: 1.4; box-shadow: 0 10px 30px rgba(0, 0, 0, .2); }
.tip-title { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.tip-big { font-size: 18px; font-weight: 600; }
.tip-sub { margin-top: 2px; opacity: .72; }
.tip ul { margin: 6px 0 0; padding: 0; list-style: none; }
.tip li { display: flex; justify-content: space-between; gap: 12px; }

.credits { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--hairline); font-size: 12px; color: var(--muted-soft); }
.credits p { margin: 0 0 4px; }
.credits a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--hairline); }
.credits a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .page { padding: 24px 16px 56px; }
  .search input { width: 100%; }
  .search { flex: 1 1 100%; }
  .toolbar-right { width: 100%; }
  .toolbar-right .select { flex: 1; }
  .pills { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; max-width: 100%; }
  .pills::-webkit-scrollbar { display: none; }
  .legend-step i { width: 24px; }
}

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

/* ------------------------------------------------------------ home hero */
.hero {
  position: relative; display: grid; gap: 28px 48px; align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr);
  margin: 0 0 28px; padding: 40px 0 8px;
}
.hero-stripes { position: absolute; top: 0; left: 0; display: flex; gap: 0; height: 10px; width: min(360px, 60%); border-radius: 3px; overflow: hidden; }
.hero-stripes i { flex: 1; transform-origin: left; animation: stripe .9s var(--ease-out) both; }
.hero-stripes i:nth-child(1) { background: var(--c-red); animation-delay: .05s; }
.hero-stripes i:nth-child(2) { background: var(--c-yellow); animation-delay: .12s; }
.hero-stripes i:nth-child(3) { background: var(--ink); animation-delay: .19s; }
.hero-stripes i:nth-child(4) { background: var(--c-blue); animation-delay: .26s; }
.hero-stripes i:nth-child(5) { background: var(--c-teal); animation-delay: .33s; }
@keyframes stripe { from { transform: scaleX(0); } }

.hero-title {
  margin: 0; font-family: var(--display); font-weight: 800; color: var(--ink);
  font-size: clamp(30px, 4.1vw, 60px); line-height: 1.04; letter-spacing: -.035em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .06em; white-space: nowrap; }
.hero-title .line > span { display: inline-block; animation: rise-line .9s var(--ease-out) both; }
.hero-title .line:nth-child(2) > span { animation-delay: .08s; }
.hero-title .line:nth-child(3) > span { animation-delay: .16s; }
@keyframes rise-line { from { transform: translateY(105%); } }
.hero-title .num { font-weight: 800; color: var(--c-red); font-variant-numeric: tabular-nums; }
.hero-title .num-blue { color: var(--c-blue); }
.hero-title em {
  font-style: normal; position: relative; z-index: 0; white-space: nowrap;
}
.hero-title em::after { /* a knitted scarf stripe under the word */
  content: ""; position: absolute; z-index: -1; left: -.04em; right: -.04em; bottom: .1em; height: .24em; border-radius: .08em;
  background: repeating-linear-gradient(90deg, var(--c-yellow) 0 .5em, color-mix(in srgb, var(--c-yellow) 70%, var(--c-red)) .5em .56em);
  transform-origin: left; animation: stripe .8s var(--ease-out) .55s both;
}
.hero-side { display: grid; gap: 20px; padding-bottom: 10px; animation: fade-up .9s var(--ease-out) .3s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } }
.hero-lede { margin: 0; max-width: 34rem; font-size: 16px; line-height: 1.6; color: var(--body); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.stat {
  display: grid; gap: 2px; min-width: 124px; padding: 12px 16px 13px; border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--c) 13%, var(--canvas)); color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 28%, transparent);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.stat:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 45%, transparent), 0 12px 24px -14px color-mix(in srgb, var(--c) 70%, transparent); }
.stat b { font-family: var(--display); font-size: 26px; line-height: 1.1; font-weight: 700; letter-spacing: -.02em; color: color-mix(in srgb, var(--c) 80%, var(--ink)); font-variant-numeric: tabular-nums; }
.stat span { font-size: 13px; color: var(--muted); }
.stat-yellow { --c: var(--c-yellow); }
.stat-blue { --c: var(--c-blue); }
.stat-red { --c: var(--c-red); }

/* two slow rows of real scarves, like a stand holding them up */
.wall {
  display: grid; gap: 12px; margin: 0 -24px 36px; padding: 6px 0;
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  animation: fade-up 1s var(--ease-out) .45s both;
}
@media (min-width: 1024px) { .wall { margin-left: -40px; margin-right: -40px; } }
.wall-track { display: flex; gap: 12px; width: max-content; animation: drift 110s linear infinite; }
.wall-track:nth-child(2) { animation-direction: reverse; animation-duration: 130s; }
.wall:hover .wall-track { animation-play-state: paused; }
@keyframes drift { to { transform: translateX(-50%); } }
.wall-item {
  display: grid; place-items: center; width: 250px; height: 64px; padding: 6px 10px; flex: none;
  border-radius: 10px; background: var(--card);
  transition: transform .4s var(--ease-out), background .3s;
}
.wall-item img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(17, 17, 17, .18)); }
.wall-item:hover { transform: translateY(-4px) scale(1.04) rotate(-1.5deg); background: color-mix(in srgb, var(--c-yellow) 18%, var(--card)); }

.pill-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--c); vertical-align: 1px; }
.pill.is-on .pill-dot { box-shadow: 0 0 0 3px color-mix(in srgb, var(--c) 25%, transparent); }

/* cards rise in, a few at a time */
.card { animation: card-in .7s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 28ms); }
@keyframes card-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.card { transition: border-color .15s, transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(17, 17, 17, .35); }
.card-photo img { transition: transform .5s var(--ease-out); }
.card:hover .card-photo img { transform: scale(1.06) rotate(-1.2deg); }
.card:nth-child(4n+1):hover { border-color: var(--c-red); }
.card:nth-child(4n+2):hover { border-color: var(--c-blue); }
.card:nth-child(4n+3):hover { border-color: var(--c-yellow); }
.card:nth-child(4n+4):hover { border-color: var(--c-teal); }

/* ------------------------------------------------------------ scarf page: club tag + unroll */
.photo img { animation: unroll 1s var(--ease-out) .1s both; }
@keyframes unroll { from { clip-path: inset(0 100% 0 0); transform: translateX(-12px); } to { clip-path: inset(0 0 0 0); } }
.photo:has(.club-tag) { padding-top: 96px; }
.club-tag {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; max-width: calc(100% - 44px);
  border-radius: 12px; background: var(--canvas); color: var(--ink);
  box-shadow: 0 1px 2px rgba(17, 17, 17, .08), 0 14px 28px -12px rgba(17, 17, 17, .35);
  transform-origin: 24px -14px;
  animation: tag-drop .9s var(--ease-out) .55s both, tag-sway 5s ease-in-out 1.6s infinite;
}
.club-tag::before { /* the hole the string goes through */
  content: ""; position: absolute; left: 20px; top: 6px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--card); box-shadow: inset 0 1px 1px rgba(17, 17, 17, .25);
}
.club-tag-string { position: absolute; left: 23px; top: -18px; width: 1.5px; height: 26px; background: var(--muted-soft); border-radius: 1px; }
.club-tag-badge { display: grid; place-items: center; width: 44px; height: 44px; flex: none; margin-top: 6px; border-radius: 9px; background: var(--card); padding: 5px; }
.club-tag-badge img { width: 100%; height: 100%; object-fit: contain; }
.club-tag-badge .flag { width: 30px; height: 22px; }
.club-tag-text { display: grid; min-width: 0; }
.club-tag-text b { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.club-tag-text small { font-size: 12px; color: var(--muted); }
.club-tag:hover { animation-play-state: paused; box-shadow: 0 0 0 2px var(--c-red), 0 14px 28px -12px rgba(17, 17, 17, .35); }
@keyframes tag-drop {
  0% { opacity: 0; transform: translateY(-40px) rotate(-18deg); }
  55% { opacity: 1; transform: translateY(4px) rotate(5deg); }
  80% { transform: translateY(0) rotate(-2deg); }
  100% { transform: rotate(-3deg); }
}
@keyframes tag-sway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(-1deg); } }
.item-logo { animation: fade-up .6s var(--ease-out) both; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-title { font-size: clamp(30px, 7vw, 56px); }
}
@media (max-width: 900px) {
  .wall-item { width: 190px; height: 50px; }
}
@media (max-width: 640px) {
  .wall { margin-left: -16px; margin-right: -16px; }
  .stat { min-width: 0; flex: 1 1 40%; }
  .club-tag { top: 16px; left: 14px; }
  .photo:has(.club-tag) { padding-top: 88px; }
}
@media (prefers-reduced-motion: reduce) {
  .wall-track, .club-tag { animation: none !important; }
  .wall { overflow-x: auto; }
}

.coll-icon-club { padding: 14px; background: var(--card); animation: fade-up .6s var(--ease-out) both; }
.coll-icon-club img { width: 100%; height: 100%; object-fit: contain; }
.club-head .item-alt { margin-top: 2px; }

/* =================================================================== Soviet match-programme edition
   Newsprint paper, constructivist red and ink, ochre and navy accents; condensed poster headings. Light only.
   Everything below overrides the neutral KolleK tokens above; delete this block to go back. */
:root {
  --page: #eee5d0;
  --sidebar: #e5d9bf;
  --canvas: #f6efe0;
  --card: #e7dcc4;
  --pill-group: #e1d4b8;
  --input: #f8f2e5;
  --hairline: #c9ba98;
  --hairline-soft: #dccfb2;
  --ink: #1b1814;
  --body: #3a3228;
  --muted: #6b5f4d;
  --muted-soft: #807360;
  --primary: #c22f1b;
  --on-primary: #f7f0e1;

  --brand: #b8311d;
  --brand-strong: #7a1f10;
  --new: #c22f1b;
  --seq-1: #f0d4c4; --seq-2: #e2a78c; --seq-3: #d17556; --seq-4: #bb482b; --seq-5: #922e19; --seq-6: #5c1b0e;
  --nodata: #dbcfb5;
  --ocean: #f3ebd9;

  --c-red: #c22f1b;
  --c-yellow: #d19a28;
  --c-blue: #24406d;
  --c-teal: #3b735d;
  --c-pink: #8b4354;

  --radius-md: 2px;
  --radius-lg: 3px;
  --radius-xl: 4px;
  --shadow-xs: 0 1px 0 rgba(27, 24, 20, .14);
  --shadow-sm: 0 1px 0 rgba(27, 24, 20, .18), 0 2px 6px -3px rgba(27, 24, 20, .25);
  --font: "PT Sans", "Helvetica Neue", Arial, sans-serif;
  --display: "Oswald", "PT Sans Narrow", "Arial Narrow", sans-serif;
  --letter: "PT Serif", Georgia, serif;
}

body { background-color: var(--page); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .32 0 0 0 0 .25 0 0 0 0 .15 0 0 0 .1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.sidebar { background-color: var(--sidebar); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .32 0 0 0 0 .25 0 0 0 0 .15 0 0 0 .1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
:focus-visible { outline-color: var(--c-red); }

/* poster type */
h1.title, .hero-title, .box-title, .section-title, .empty-title, .wordmark, .kpi-big, .stat b, .viewer-club {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .01em;
}
h1.title { font-size: 34px; font-weight: 700; line-height: 1.05; }
.box-title, .section-title { font-size: 17px; font-weight: 600; letter-spacing: .03em; }
.wordmark { font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.nav-label, .kpi-label, .row-head, .legend-title, .detail dt { font-family: var(--display); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.nav-label { font-size: 12px; color: var(--c-red); }
.kpi-value { font-family: var(--display); font-size: 20px; font-weight: 600; }
.kpi-big { font-size: 34px; font-weight: 700; }
.logo { background: var(--c-red); color: var(--on-primary); border-radius: 2px; }

/* stamps, not pills */
.badge { border-radius: 2px; background: transparent; box-shadow: inset 0 0 0 1px var(--hairline); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-sm { font-size: 10.5px; padding: 2px 7px; }
.badge-new { background: var(--c-red); color: var(--on-primary); box-shadow: none; }
.badge-official { background: color-mix(in srgb, var(--c-yellow) 22%, transparent); color: color-mix(in srgb, var(--c-yellow) 55%, var(--ink)); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-yellow) 60%, transparent); }
.badge-nt { background: transparent; color: var(--c-blue); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-blue) 55%, transparent); }
.pills { border-radius: 3px; background: var(--pill-group); }
.pill { border-radius: 2px; font-family: var(--display); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; font-size: 13.5px; }
.pill.is-on { background: var(--ink); color: var(--page); box-shadow: none; }
.chip { border-radius: 2px; }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--page); }
.btn, .icon-btn, .search input, .select, .viewswitch { border-radius: 2px; }
.nav-link { border-radius: 2px; }
.nav-link.is-active { background: var(--canvas); box-shadow: inset 3px 0 0 var(--c-red); }

/* hero: a constructivist poster block */
.hero-stripes { height: 16px; width: min(440px, 72%); gap: 6px; border-radius: 0; transform: skewX(-24deg); transform-origin: left; left: 6px; }
.hero-stripes i:nth-child(1) { background: var(--c-red); flex: 3; }
.hero-stripes i:nth-child(2) { background: var(--ink); flex: 1; }
.hero-stripes i:nth-child(3) { background: var(--c-yellow); flex: 2; }
.hero-stripes i:nth-child(4) { background: var(--c-blue); flex: 1; }
.hero-stripes i:nth-child(5) { background: var(--c-red); flex: .5; }
.hero-title { font-weight: 700; font-size: clamp(40px, 5.6vw, 92px); line-height: .96; letter-spacing: 0; }
.hero-title .num { color: var(--c-red); }
.hero-title .num-blue { color: var(--c-blue); }
.hero-title em { background: var(--c-red); color: var(--on-primary); padding: 0 .14em; margin-right: .06em; }
.hero-title em::after { display: none; }
.hero-lede { font-family: var(--letter); font-size: 17px; font-style: italic; color: var(--body); }
.stat { border-radius: 2px; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline), inset 0 4px 0 var(--c); padding-top: 16px; }
.stat:hover { box-shadow: inset 0 0 0 1px var(--ink), inset 0 4px 0 var(--c), 0 10px 20px -14px rgba(27, 24, 20, .5); }
.stat b { font-size: 34px; font-weight: 700; color: var(--c); }
.stat span { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.wall-item { border-radius: 2px; background: color-mix(in srgb, var(--card) 70%, var(--canvas)); }
.wall-item:hover { background: color-mix(in srgb, var(--c-yellow) 22%, var(--card)); }

/* cards: printed stickers on newsprint */
.card { border-radius: 3px; background: var(--canvas); }
.card:hover { border-color: var(--ink); box-shadow: 4px 4px 0 -1px color-mix(in srgb, var(--c-red) 85%, transparent); }
.card:nth-child(4n+1):hover, .card:nth-child(4n+2):hover, .card:nth-child(4n+3):hover, .card:nth-child(4n+4):hover { border-color: var(--ink); }
.card-photo { background: var(--card); }
.card-name { font-weight: 700; }
.list, .row-thumb, .related a, .box, .details, .note, .kpi-card, .photo, .coll-icon, .empty, .tip { border-radius: 3px; }
.kpi-card { background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline); }
.kpi-dot { border-radius: 0; transform: skewX(-20deg); }
.box { background: var(--canvas); }
.details { background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline); }
.note { font-family: var(--letter); font-size: 16.5px; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline); }
.tip { background: var(--ink); color: var(--page); }

/* club tag: a match ticket stub */
.club-tag { border-radius: 2px; background: var(--canvas); padding-right: 16px; box-shadow: inset 0 0 0 1px var(--hairline), 0 12px 24px -12px rgba(27, 24, 20, .45); }
.club-tag-badge { border-radius: 0; background: transparent; padding-right: 12px; margin-right: 2px; box-shadow: 1px 0 0 0 transparent; border-right: 1.5px dashed var(--hairline); }
.club-tag::before { background: var(--page); }
.club-tag-text b { font-size: 15px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.club-tag-text small { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; color: var(--c-red); }
.club-tag:hover { box-shadow: inset 0 0 0 1.5px var(--c-red), 0 12px 24px -12px rgba(27, 24, 20, .45); }
.coll-icon-club { background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline); }

/* charts keep one red series on paper */
.bar-track { background: var(--card); border-radius: 0; }
.bar-fill { border-radius: 0; }
.credits { border-top-style: double; border-top-width: 3px; }
