:root {
  --bg: #07111f;
  --bg-2: #0c1728;
  --panel: #ffffff;
  --soft: #f5f8fc;
  --text: #182234;
  --muted: #6b778b;
  --border: #e3e9f2;
  --brand: #1769e0;
  --brand-dark: #0c469f;
  --gold: #f4b41a;
  --green: #0e9f6e;
  --red: #db3141;
  --violet: #7555d9;
  --shadow: 0 18px 55px rgba(3, 12, 30, .14);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #eef3f9;
}
body.auth-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin: 0; }
.hidden { display: none !important; }

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 13%, rgba(23,105,224,.6), transparent 31%),
    radial-gradient(circle at 89% 82%, rgba(244,180,26,.32), transparent 29%),
    linear-gradient(145deg, #030914, #07111f 48%, #0f1d33);
}
.auth-gate::before, .auth-gate::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
}
.auth-gate::before { top: -195px; left: -165px; }
.auth-gate::after { right: -210px; bottom: -190px; }
.auth-panel {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  padding: 30px 26px 24px;
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.21);
  box-shadow: 0 35px 90px rgba(0,0,0,.46);
  backdrop-filter: blur(22px);
}
.auth-logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(145deg, #fff6ad, #f4b41a 52%, #a96400);
  border: 5px solid rgba(255,255,255,.96);
  font-weight: 1000;
  letter-spacing: .04em;
  box-shadow: 0 18px 45px rgba(244,180,26,.28);
}
.auth-kicker, .section-kicker, .hero-label, .eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 900;
}
.auth-kicker { color: #ffd665; text-align: center; }
.auth-panel h1 { text-align: center; margin: 7px 0 8px; font-size: 1.7rem; }
.auth-copy { color: #dbe8fa; text-align: center; line-height: 1.5; font-size: .91rem; }
.auth-panel label { color: #fff; }
.auth-note { margin-top: 13px; color: #b9c8db; text-align: center; font-size: .78rem; line-height: 1.45; }

.admin-layout { min-height: 100vh; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 268px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(23,105,224,.35), transparent 28%),
    linear-gradient(180deg, #07111f, #0a1729 62%, #07111f);
  border-right: 1px solid rgba(255,255,255,.08);
}
.brand-block { display: flex; align-items: center; gap: 11px; padding: 5px 7px 22px; }
.brand-mark {
  width: 47px; height: 47px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 15px; color: #07111f; font-weight: 1000;
  background: linear-gradient(145deg, #fff6a8, #f4b41a 52%, #b16d00);
  box-shadow: 0 9px 24px rgba(244,180,26,.22);
}
.brand-block strong { display: block; font-size: .98rem; }
.brand-block span { display: block; color: #91a6c0; margin-top: 2px; font-size: .76rem; }
.side-nav { display: grid; gap: 7px; }
.nav-item {
  width: 100%; min-height: 50px; padding: 10px 12px;
  display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px;
  color: #cbd7e7; text-align: left; font-weight: 800;
  border: 1px solid transparent; border-radius: 15px; background: transparent;
}
.nav-item > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); }
.nav-item b { min-width: 24px; padding: 3px 7px; border-radius: 99px; color: #07111f; background: #f4b41a; text-align: center; font-size: .72rem; }
.nav-item:hover { background: rgba(255,255,255,.07); }
.nav-item.active { color: #fff; border-color: rgba(255,255,255,.13); background: linear-gradient(135deg, rgba(23,105,224,.78), rgba(12,70,159,.5)); }
.sidebar-footer { margin-top: auto; padding: 13px 10px 5px; border-top: 1px solid rgba(255,255,255,.09); }
.sidebar-footer small { display: block; color: #8fa3bd; }
.sidebar-footer strong { display: block; margin: 3px 0 10px; font-size: .9rem; }
.sidebar-logout { width: 100%; min-height: 39px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; color: #fff; background: rgba(255,255,255,.07); font-weight: 800; }

.main-column { min-height: 100vh; margin-left: 268px; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  min-height: 78px; padding: 14px 22px;
  display: flex; align-items: center; gap: 12px;
  color: #fff; background: rgba(7,17,31,.94); backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.topbar h1 { font-size: 1.3rem; }
.eyebrow { color: #91bffb; margin-bottom: 3px; }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.status-pill, .install-btn { border-radius: 999px; padding: 8px 11px; font-size: .78rem; font-weight: 800; }
.status-pill { color: #fff; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); }
.status-pill.online { background: rgba(14,159,110,.24); }
.status-pill.offline { background: rgba(244,180,26,.22); }
.install-btn { border: 0; color: #07111f; background: #f4b41a; }

.page-wrap { width: min(1220px, 100%); margin: 0 auto; padding: 20px 20px 35px; }
.page-panel { display: none; }
.page-panel.active { display: block; }
.page-intro { margin-bottom: 15px; padding: 4px 2px; }
.page-intro h2 { font-size: 1.45rem; margin: 3px 0 5px; }
.page-intro p:last-child { color: var(--muted); max-width: 760px; line-height: 1.45; }
.section-kicker { color: var(--brand); }

.card {
  margin-bottom: 15px; padding: 18px;
  background: var(--panel); border: 1px solid rgba(255,255,255,.85); border-radius: 22px;
  box-shadow: var(--shadow);
}
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 13px; }
.section-heading h2 { font-size: 1.17rem; margin-top: 3px; }
.section-heading p:not(.section-kicker), .card > p, .field-help { color: var(--muted); font-size: .88rem; line-height: 1.45; }

.hero-banner {
  position: relative; overflow: hidden;
  min-height: 210px; margin-bottom: 17px; padding: 27px;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  color: #fff; border-radius: 28px;
  background:
    linear-gradient(105deg, rgba(4,14,29,.15), rgba(4,14,29,.72)),
    radial-gradient(circle at 80% 18%, rgba(244,180,26,.36), transparent 24%),
    linear-gradient(135deg, #1769e0, #0b2d63 56%, #07111f);
  box-shadow: 0 24px 55px rgba(7,17,31,.22);
}
.hero-banner::after { content: "VSSCC"; position: absolute; right: -18px; bottom: -38px; color: rgba(255,255,255,.06); font-size: 8rem; font-weight: 1000; letter-spacing: -.05em; }
.hero-banner > * { position: relative; z-index: 1; }
.hero-label { color: #ffd665; }
.hero-banner h2 { max-width: 650px; margin: 6px 0 8px; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.06; }
.hero-banner p:last-child { max-width: 690px; color: #d6e6fb; line-height: 1.5; }
.hero-action { flex: 0 0 auto; min-height: 49px; padding: 12px 17px; border: 0; border-radius: 15px; color: #07111f; background: linear-gradient(145deg, #fff0a3, #f4b41a); font-weight: 900; }

.metric-grid { display: grid; gap: 12px; margin-bottom: 17px; }
.dashboard-metrics { grid-template-columns: repeat(5, 1fr); }
.accounting-metrics { grid-template-columns: repeat(4, 1fr); }
.metric-card { position: relative; overflow: hidden; min-height: 125px; padding: 16px; border-radius: 20px; color: #fff; box-shadow: 0 16px 35px rgba(7,17,31,.14); }
.metric-card::after { content: ""; position: absolute; width: 105px; height: 105px; right: -32px; bottom: -43px; border-radius: 50%; background: rgba(255,255,255,.13); }
.metric-card span { display: block; color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 800; }
.metric-card strong { display: block; margin: 8px 0 3px; font-size: 1.55rem; line-height: 1; }
.metric-card small { color: rgba(255,255,255,.75); font-size: .72rem; }
.metric-card.blue { background: linear-gradient(135deg, #2478ea, #0c469f); }
.metric-card.amber { background: linear-gradient(135deg, #f2a711, #b26600); }
.metric-card.green { background: linear-gradient(135deg, #14a978, #087353); }
.metric-card.red { background: linear-gradient(135deg, #e04655, #9f1927); }
.metric-card.dark { background: linear-gradient(135deg, #172a45, #07111f); }
.metric-card.violet { background: linear-gradient(135deg, #8366e6, #4e349f); }

.dashboard-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 15px; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quick-grid button { min-height: 108px; padding: 14px; display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; column-gap: 11px; text-align: left; border: 1px solid var(--border); border-radius: 17px; color: var(--text); background: var(--soft); }
.quick-grid button > span { grid-row: 1 / 3; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); font-weight: 1000; font-size: 1.2rem; }
.quick-grid strong { align-self: end; }
.quick-grid small { align-self: start; color: var(--muted); margin-top: 2px; }
.text-btn { border: 0; color: var(--brand); background: transparent; font-weight: 850; }
.recent-list { display: grid; gap: 9px; }
.recent-item { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-item:last-child { border-bottom: 0; }
.recent-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; font-weight: 1000; }
.recent-icon.income { color: #087353; background: #e9fbf4; }
.recent-icon.expense { color: #a61c2b; background: #fff0f2; }
.recent-item strong { display: block; font-size: .88rem; }
.recent-item small { color: var(--muted); }
.recent-amount { font-weight: 950; font-size: .9rem; }
.recent-amount.income { color: var(--green); }
.recent-amount.expense { color: var(--red); }

label { display: block; margin: 12px 0; color: #263348; font-size: .88rem; font-weight: 760; }
input, select, textarea {
  width: 100%; margin-top: 7px; padding: 12px 13px;
  border: 1px solid var(--border); border-radius: 14px; outline: 0;
  color: var(--text); background: #fbfcff;
}
input:focus, select:focus, textarea:focus { border-color: rgba(23,105,224,.7); box-shadow: 0 0 0 4px rgba(23,105,224,.12); }
textarea { resize: vertical; }
.grid-2, .grid-3, .filter-grid { display: grid; gap: 11px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.filter-grid { grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 14px; padding: 12px; border-radius: 17px; background: var(--soft); }
.inline-form { display: grid; grid-template-columns: minmax(220px, 420px) auto; align-items: end; gap: 11px; }
.inline-form label { margin: 0; }

button { min-height: 43px; padding: 10px 14px; border: 0; border-radius: 13px; font-weight: 850; }
.primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.secondary { color: var(--brand-dark); background: #e8f1ff; }
.ghost { color: #334155; background: #f1f5f9; }
.danger-outline { color: var(--red); background: #fff0f2; border: 1px solid #ffd2d8; }
.full { width: 100%; margin-top: 8px; }
.tool-row { display: flex; gap: 8px; flex-wrap: wrap; }
.small-btn { min-height: 36px; padding: 8px 10px; font-size: .8rem; }
.message { min-height: 21px; margin-top: 9px; color: var(--muted); font-size: .86rem; }
.message.ok { color: var(--green); font-weight: 800; }
.message.warn { color: #b16d00; font-weight: 800; }
.message.error { color: var(--red); font-weight: 800; }

.multi-select-block { position: relative; margin: 12px 0; }
.multi-select-button { width: 100%; min-height: 51px; padding: 12px 13px; display: flex; justify-content: space-between; align-items: center; text-align: left; color: #263348; background: #fbfcff; border: 1px solid var(--border); border-radius: 14px; }
.multi-select-menu { margin-top: 7px; padding: 8px; border: 1px solid var(--border); border-radius: 16px; background: #fff; box-shadow: 0 14px 30px rgba(7,17,31,.12); }
.check-row { display: flex; align-items: center; gap: 9px; margin: 0; padding: 10px; border-radius: 11px; }
.check-row:hover { background: var(--soft); }
.check-row input { width: 19px; height: 19px; margin: 0; }
.other-sport-input { margin: 6px; }

.photo-preview, .receipt-preview, .logo-preview { margin-top: 10px; object-fit: cover; background: #fff; border: 4px solid #eef3f9; box-shadow: 0 10px 25px rgba(7,17,31,.12); }
.photo-preview { width: 112px; height: 112px; border-radius: 22px; }
.receipt-preview { width: min(270px, 100%); max-height: 220px; border-radius: 17px; }
.logo-preview { width: 88px; height: 88px; border-radius: 50%; }
.field-help { display: block; margin-top: 6px; }
.import-card { border: 1px solid rgba(244,180,26,.3); background: linear-gradient(135deg, #fff, #fffaf0); }
.import-preview { display: grid; gap: 4px; margin-top: 11px; padding: 12px; border: 1px solid var(--border); border-radius: 15px; background: var(--soft); color: #334155; font-size: .86rem; }
.balance-card { border-left: 5px solid var(--gold); }

.account-list { display: grid; gap: 10px; }
.account-entry { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 12px; align-items: start; padding: 14px; border: 1px solid var(--border); border-radius: 17px; background: #fff; }
.account-type-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; font-weight: 1000; font-size: 1.2rem; }
.account-type-icon.income { color: #087353; background: #e8fbf3; }
.account-type-icon.expense { color: #a51c2c; background: #fff0f2; }
.account-entry h3 { font-size: .98rem; }
.account-meta { margin-top: 5px; color: var(--muted); font-size: .81rem; line-height: 1.5; }
.account-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 7px; }
.account-tag { padding: 4px 7px; border-radius: 99px; background: #f1f5f9; color: #465268; font-size: .7rem; font-weight: 800; }
.account-tag.receipt { color: #684500; background: #fff6d7; }
.account-side { text-align: right; min-width: 122px; }
.account-amount { display: block; font-size: 1rem; font-weight: 1000; }
.account-amount.income { color: var(--green); }
.account-amount.expense { color: var(--red); }
.account-actions { display: flex; justify-content: flex-end; gap: 6px; flex-wrap: wrap; margin-top: 9px; }
.ledger-print-heading { display: none; }
.empty-state { padding: 26px; text-align: center; color: var(--muted); }

.member-list { display: grid; gap: 12px; }
.member-card { display: grid; grid-template-columns: 76px 1fr; gap: 13px; align-items: start; }
.avatar { width: 76px; height: 76px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; color: var(--brand-dark); background: #e8f1ff; font-size: 1.3rem; font-weight: 1000; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-main h3 { font-size: 1.03rem; }
.member-meta { color: var(--muted); font-size: .83rem; line-height: 1.5; }
.badges, .card-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.badge { padding: 5px 8px; border-radius: 99px; background: #f1f5f9; color: #334155; font-size: .71rem; font-weight: 850; }
.badge.sport { color: #075985; background: #e0f2fe; }
.badge.pending { color: #b45309; background: #fff7ed; }
.badge.synced { color: #047857; background: #ecfdf5; }
.list-tools { position: sticky; top: 92px; z-index: 6; display: flex; gap: 10px; align-items: center; }
.list-tools > input { margin: 0; }
.sync-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 15px; }
.sync-stats div { padding: 13px; border: 1px solid var(--border); border-radius: 15px; text-align: center; background: var(--soft); }
.sync-stats strong { display: block; color: var(--brand-dark); font-size: 1.35rem; }
.sync-stats span { color: var(--muted); font-size: .76rem; }
.security-card { border: 1px solid rgba(244,180,26,.28); background: linear-gradient(135deg, #fffdf4, #fff8e7); }
.code-sample { margin: 12px 0; padding: 12px; overflow-x: auto; border-radius: 13px; color: #dbe8fa; background: #07111f; }
.warning-box { padding: 12px; border-radius: 13px; color: #835300 !important; background: #fff3ca; border: 1px solid #ffe394; }
summary { cursor: pointer; font-weight: 850; }
footer { padding: 10px 20px 25px; color: #718096; text-align: center; font-size: .78rem; }

.image-modal { position: fixed; inset: 0; z-index: 10000; padding: 22px; display: grid; place-items: center; background: rgba(2,8,20,.92); }
.image-modal img { max-width: min(900px, 95vw); max-height: 78vh; border-radius: 18px; box-shadow: 0 28px 80px rgba(0,0,0,.55); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; padding: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.13); font-size: 1.7rem; }
.modal-download { position: absolute; bottom: 20px; text-decoration: none; padding: 11px 15px; border-radius: 13px; font-weight: 850; }
.mobile-scrim { position: fixed; inset: 0; z-index: 24; background: rgba(2,8,20,.62); }

@media (max-width: 1050px) {
  .dashboard-metrics { grid-template-columns: repeat(3,1fr); }
  .accounting-metrics { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .sidebar { transform: translateX(-105%); transition: transform .22s ease; box-shadow: 18px 0 60px rgba(0,0,0,.34); }
  .sidebar.open { transform: translateX(0); }
  .main-column { margin-left: 0; }
  .menu-btn { display: grid; place-items: center; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .topbar { min-height: 72px; padding: 11px 13px; }
  .topbar h1 { font-size: 1.08rem; }
  .eyebrow { max-width: 230px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .page-wrap { padding: 13px 11px 27px; }
  .card { padding: 15px; border-radius: 19px; }
  .hero-banner { min-height: 250px; padding: 21px; align-items: flex-start; flex-direction: column; }
  .hero-action { width: 100%; }
  .dashboard-metrics, .accounting-metrics { grid-template-columns: repeat(2,1fr); }
  .metric-card { min-height: 112px; padding: 14px; }
  .metric-card strong { font-size: 1.28rem; }
  .quick-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .filter-grid { grid-template-columns: 1fr; gap: 0; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form button { width: 100%; }
  .account-entry { grid-template-columns: 46px 1fr; }
  .account-type-icon { width: 46px; height: 46px; border-radius: 14px; }
  .account-side { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; text-align: left; min-width: 0; border-top: 1px solid var(--border); padding-top: 9px; }
  .account-actions { margin-top: 0; }
  .member-card { grid-template-columns: 62px 1fr; }
  .avatar { width: 62px; height: 62px; border-radius: 16px; }
  .list-tools { top: 80px; display: block; }
  .list-tools .tool-row { margin-top: 9px; }
  .list-tools .tool-row button { flex: 1 1 120px; }
  .sync-stats { grid-template-columns: 1fr; }
  .topbar-actions .install-btn { display: none !important; }
  .auth-panel { padding: 25px 18px 21px; }
}

@media print {
  body { background: #fff; }
  .sidebar, .topbar, .page-panel:not(#accounting), .page-intro, .accounting-metrics, .balance-card, #accountForm, .import-card, footer, .no-print { display: none !important; }
  .main-column { margin: 0; }
  .page-wrap { width: 100%; padding: 0; }
  #accounting { display: block !important; }
  #accountingReport { box-shadow: none; border: 0; margin: 0; padding: 0; }
  .ledger-print-heading { display: block; margin-bottom: 18px; }
  .account-entry { break-inside: avoid; box-shadow: none; }
}

/* Preset email/password login */
.auth-panel > label { display: block; margin-top: 14px; }
.auth-panel > label > input,
.password-input-wrap {
  margin-top: 7px;
}
.password-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.22);
}
.password-input-wrap input {
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.password-toggle {
  min-width: 66px;
  padding: 0 13px;
  border: 0;
  border-left: 1px solid #d7e1ef;
  color: #0c469f;
  background: #eaf1fb;
  font-weight: 900;
}
.auth-panel code { color: #ffe18a; }


/* Dashboard developer credit */
.dashboard-credit {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(244,180,26,.30);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 20%, rgba(244,180,26,.18), transparent 28%),
    linear-gradient(135deg, #07111f, #0b2a58 58%, #07111f);
  box-shadow: 0 18px 45px rgba(4,17,38,.18);
  color: #fff;
  text-align: left;
}
.dashboard-credit::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.08), transparent 70%);
}
.credit-emblem {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,225,138,.75);
  border-radius: 16px;
  background: linear-gradient(145deg, #f4b41a, #8b5c00);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 25px rgba(0,0,0,.25);
  color: #07111f;
  font-size: 1.45rem;
  font-weight: 1000;
}
.credit-copy { position: relative; z-index: 1; display: grid; gap: 2px; }
.credit-copy span { color: #b9c9dd; font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.credit-copy strong { color: #ffe18a; font-size: 1.08rem; }
.credit-copy a { color: #fff; font-size: .82rem; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.credit-copy a:hover, .credit-copy a:focus { text-decoration: underline; }

@media (max-width: 600px) {
  .dashboard-credit { justify-content: flex-start; padding: 16px; border-radius: 18px; }
  .credit-emblem { width: 46px; height: 46px; flex-basis: 46px; border-radius: 14px; }
}
