:root{
  --bg: rgba(10,14,26,0.80);
  --line: rgba(255,255,255,0.14);
  --text: rgba(235,242,255,0.96);
  --muted: rgba(170,179,214,0.90);
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --accent1:#22c55e;
  --accent2:#38bdf8;
}

html,body{height:100%}
body.obs{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: transparent;
}

.overlay{
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  width: 520px;
}

.panel{
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 14px;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand{
  font-size: 40px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0;
  display:block;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: none;
}

.brandMain{font-size:1em; font-weight:1000}
.brandSub{display:block; margin-top:4px; font-size:0.56em; font-weight:950; letter-spacing:0.06em; text-transform:uppercase; white-space:nowrap}

.row{display:flex; align-items:baseline; justify-content:space-between; gap:12px}
.label{font-size:13px; color: var(--muted); letter-spacing:0.08em; text-transform:uppercase; font-weight:900}
.value{font-size:28px; font-weight:900; letter-spacing:-0.02em}
.small{font-size:12px; color: var(--muted)}

.progress{
  margin-top:10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow:hidden;
}
.progressBar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 999px;
  transition: width 300ms ease;
}

.subrow{margin-top:8px; font-size:14px; color: rgba(210,219,245,0.96); font-weight:800; letter-spacing:0.01em}
.subrow.subtle{margin-top:4px; font-size:12px; color: rgba(190,199,230,0.95); font-weight:800}

.todayRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.todayChip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(7,10,18,0.34);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.01em;
}
.todayChip.primary{
  border:none;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #061018;
  text-shadow: none;
}

.donations{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.donation{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,10,18,0.30);
}

.left{min-width:0}
.name{font-size:15px; font-weight:1000; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.comment{
  font-size:13px;
  color: rgba(215,224,248,0.92);
  margin-top:4px;
  line-height:1.25;
  white-space:normal;
  overflow:hidden;
  display:-webkit-box;
  line-clamp:2;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.meta{
  font-size:12px;
  color: rgba(190,199,230,0.95);
  margin-top:5px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.right{text-align:right; flex:0 0 auto}
.amount{font-size:15px; font-weight:1000}
.time{font-size:12px; color: rgba(190,199,230,0.95); margin-top:4px}

.hint{margin-top:10px; font-size:12px; color: var(--muted)}
