:root {
  --bg: #060a12;
  --bg2: #0b1220;
  --surface: rgba(18, 28, 48, 0.72);
  --surface-solid: #121c30;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted2: #64748b;
  --accent: #34d399;
  --accent-dim: rgba(52, 211, 153, 0.14);
  --gold: #f5c518;
  --gold-dim: rgba(245, 197, 24, 0.12);
  --sky: #38bdf8;
  --sky-dim: rgba(56, 189, 248, 0.12);
  --warn: #fbbf24;
  --danger: #f87171;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Oswald", "DM Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.auth-locked { overflow: hidden; }

.app-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(52, 211, 153, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(56, 189, 248, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(245, 197, 24, 0.06), transparent),
    linear-gradient(180deg, #060a12 0%, #0a101c 50%, #060a12 100%);
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ——— Auth overlay ——— */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 8, 16, 0.82);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.25s ease;
}

.auth-overlay[hidden] { display: none !important; }

.auth-card {
  position: relative;
  width: min(420px, 100%);
  padding: 2rem 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, rgba(24, 36, 58, 0.95) 0%, rgba(12, 18, 32, 0.98) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}

.auth-card-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2), transparent 70%);
  pointer-events: none;
}

.auth-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
  position: relative;
}

.auth-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-dim), var(--gold-dim));
  border: 1px solid var(--border-strong);
}

.auth-brand h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.auth-brand p, .auth-foot {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.auth-form { position: relative; }

.field {
  display: block;
  margin-bottom: 1rem;
}

.field span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 10, 18, 0.6);
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus {
  outline: none;
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

.field-error {
  min-height: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--danger);
  font-size: 0.85rem;
}

.auth-foot {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.12s, background 0.15s, border-color 0.15s;
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #042f1a;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.25);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #4ade80, #34d399);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.82rem; }
.btn-block { width: 100%; margin-top: 0.5rem; }

.btn.is-loading { pointer-events: none; opacity: 0.75; }

.row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }

/* ——— Public shell ——— */
.shell { min-height: 100vh; }

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand { display: flex; gap: 0.85rem; align-items: center; }

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-dim), var(--sky-dim));
  border: 1px solid var(--border);
}

.logo-mark.lg { width: 48px; height: 48px; font-size: 1.5rem; }

.brand h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tagline { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.8rem; }

.topbar-actions { display: flex; gap: 0.5rem; margin-left: auto; }

.league-nav { display: flex; flex-wrap: wrap; gap: 0.35rem; flex: 1; justify-content: center; }

.league-nav button {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.15s;
}

.league-nav button:hover { color: var(--text); border-color: var(--border-strong); }

.league-nav button.active {
  color: var(--accent);
  border-color: rgba(52, 211, 153, 0.45);
  background: var(--accent-dim);
}

.page { max-width: 960px; margin: 0 auto; padding: 1.25rem 1.5rem 3rem; }

.status-strip {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.tabs { display: flex; gap: 0.4rem; margin-bottom: 1rem; flex-wrap: wrap; }

.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
}

.tab.active {
  color: var(--sky);
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--sky-dim);
}

.panel { padding: 1.25rem; min-height: 320px; }

.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.match-row:last-child { border-bottom: none; }

.team { font-weight: 600; font-size: 0.95rem; }
.team.away { text-align: right; }
.meta { text-align: center; color: var(--muted); font-size: 0.8rem; }
.score { font-family: var(--display); font-size: 1.25rem; color: var(--accent); letter-spacing: 0.04em; }

.standings-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.standings-table th, .standings-table td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.standings-table th { color: var(--muted2); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.standings-table tr:hover td { background: rgba(255,255,255,0.02); }

.empty, .error-msg { color: var(--muted); padding: 3rem 1rem; text-align: center; }

.badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(245, 197, 24, 0.25);
}

/* ——— Admin / Studio layout ——— */
.admin-layout,
#studio-app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-layout[hidden],
#studio-app[hidden] { display: none !important; }

.admin-main-shell { display: flex; flex-direction: column; min-width: 0; }

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.header-actions { display: flex; align-items: center; gap: 0.65rem; }

.admin-main { padding: 1.5rem 1.75rem 3rem; overflow: auto; }

.nav-group {
  margin: 1rem 0 0.35rem 0.85rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted2);
  font-weight: 700;
}

.nav-group:first-child { margin-top: 0; }

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.stat-grid.compact { margin-bottom: 0; }

.pipeline-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.pipeline-list strong { color: var(--text); }

.headline-cell { max-width: 320px; }
.muted-cell { color: var(--muted2); font-size: 0.82rem; }
.actions-cell { white-space: nowrap; }

.inline-nav { margin-bottom: 1rem; justify-content: flex-start; }

.inner-panel {
  min-height: 200px;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.match-row.compact {
  grid-template-columns: 1fr auto 1fr;
  font-size: 0.88rem;
  padding: 0.5rem 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  min-height: 100vh;
}

.sidebar-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.sidebar-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.sidebar-sub { font-size: 0.75rem; color: var(--muted); }

.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.nav-item:hover { background: rgba(255,255,255,0.04); color: var(--text); }

.nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}

.nav-icon { opacity: 0.7; font-size: 0.9rem; }

.sidebar-foot { padding-top: 1rem; border-top: 1px solid var(--border); }

.studio-shell { display: flex; flex-direction: column; min-width: 0; }

.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  font-weight: 600;
}

.studio-header h1 {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.user-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

.studio-main {
  padding: 1.5rem 1.75rem 3rem;
  overflow: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}

.stat-card:hover { border-color: var(--border-strong); }

.stat-card.highlight {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(145deg, var(--accent-dim), transparent);
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  font-weight: 600;
}

.stat-value {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.stat-value.sm { font-size: 1.1rem; font-family: var(--font); font-weight: 600; }

.studio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.studio-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.studio-card .card-sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); }

.studio-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.studio-table th, .studio-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.studio-table th {
  background: rgba(0,0,0,0.2);
  color: var(--muted2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.studio-table tr:last-child td { border-bottom: none; }
.studio-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.epl-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-ok { background: var(--accent-dim); color: var(--accent); }
.pill-warn { background: var(--gold-dim); color: var(--gold); }
.pill-bad { background: rgba(248,113,113,0.12); color: var(--danger); }
.pill-muted { background: rgba(255,255,255,0.06); color: var(--muted); }

.code-block {
  margin-top: 1rem;
  padding: 0.85rem;
  max-height: 220px;
  overflow: auto;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  color: var(--muted);
}

.premium-dialog {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-solid);
  color: var(--text);
  padding: 1.5rem;
  max-width: 440px;
  width: 92vw;
  box-shadow: var(--shadow);
}

.premium-dialog::backdrop {
  background: rgba(4, 8, 16, 0.75);
  backdrop-filter: blur(6px);
}

.muted-sm { color: var(--muted); font-size: 0.85rem; margin: 0 0 1rem; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  color: var(--muted);
  font-size: 0.95rem;
}

.boot-loader[hidden] { display: none !important; }

.boot-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(52, 211, 153, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.news-list { display: flex; flex-direction: column; gap: 1rem; }

.news-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.18);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted2);
}

.news-headline {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.news-brief {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.news-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.news-source { color: var(--muted2); }

.news-link { color: var(--accent); text-decoration: none; }
.news-link:hover { text-decoration: underline; }

.epl-badge {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

@media (max-width: 860px) {
  .admin-layout,
  #studio-app { grid-template-columns: 1fr; }
  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: auto;
    align-items: center;
    gap: 0.5rem;
  }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; flex: 1; }
  .sidebar-foot { display: flex; gap: 0.5rem; width: 100%; }
  .sidebar-foot .btn-block { width: auto; flex: 1; }
}

@media (max-width: 640px) {
  .topbar { padding: 0.75rem 1rem; }
  .league-nav { order: 3; width: 100%; justify-content: flex-start; }
  .page { padding: 1rem; }
}

/* Advertising manager (MSEApp News parity) */
.ad-subnav, .cc-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; align-items: center; }
.cc-btn, .ad-subnav a {
  display: inline-flex; align-items: center; padding: 0.35rem 0.75rem; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--text);
  font-size: 0.78rem; text-decoration: none; cursor: pointer;
}
.cc-btn.primary, .ad-subnav a.primary { background: var(--accent-dim); border-color: rgba(52,211,153,0.35); color: var(--accent); }
.cc-panel {
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  padding: 1rem 1.1rem; margin-bottom: 1rem;
}
.cc-panel h2, .cc-panel h3 { margin: 0 0 0.65rem; font-size: 1.05rem; }
.cc-muted { color: var(--muted2); font-size: 0.82rem; }
.cc-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; min-width: 640px; }
.cc-table th, .cc-table td { padding: 0.45rem 0.55rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.cc-table th { color: var(--muted2); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }
.cc-table-wrap, .table-wrap { overflow-x: auto; }
.cc-pill, .cc-pill.ok { display: inline-block; padding: 0.1rem 0.45rem; border-radius: 999px; font-size: 0.65rem; font-weight: 600; background: rgba(255,255,255,0.06); }
.cc-pill.ok { background: var(--accent-dim); color: var(--accent); }
.cc-pill.bad { background: rgba(248,113,113,0.15); color: #fca5a5; }
.cc-stack label { display: block; margin-bottom: 0.65rem; }
.cc-stack input, .cc-stack select, .cc-stack textarea { width: 100%; max-width: 32rem; margin-top: 0.25rem; }
.cc-inline { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; }
.ad-size-spec { background: rgba(0,0,0,0.2); border-radius: 10px; padding: 0.75rem; margin: 0.75rem 0; }
.ad-size-spec-px { font-size: 1.25rem; font-weight: 700; margin: 0.25rem 0; }
.ad-preview-frame { margin: 1rem 0; padding: 1rem; background: #f5f0e6; border-radius: 12px; }
.ad-preview-frame[data-dev="mobile"] { max-width: 360px; }
.ad-preview-frame[data-dev="tablet"] { max-width: 768px; }
.ad-preview-tabs { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; }
.cc-ok { color: var(--accent); padding: 0.5rem 0; }
.cc-err { color: #fca5a5; padding: 0.5rem 0; }
.cc-list { margin: 0.5rem 0; padding-left: 1.2rem; }
.cc-list code { font-size: 0.78rem; word-break: break-all; }

