* { box-sizing: border-box; }
:root {
  --bg:#030609; --panel:rgba(19,23,29,.72); --panel-strong:rgba(21,25,31,.94);
  --line:rgba(255,255,255,.105); --line-2:rgba(255,255,255,.18); --text:#f7f7f8;
  --muted:#a5a8ae; --soft:#737780; --success:#45d18a; --danger:#ef4444;
  --radius:28px; --shadow:0 30px 100px rgba(0,0,0,.52);
}
html { scroll-behavior:smooth; }
body {
  margin:0; min-height:100vh; color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 42% -10%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 12% 42%, rgba(255,255,255,.045), transparent 26%),
    linear-gradient(180deg,#070b10 0%,#020406 70%,#010203 100%);
}
body::before { content:""; position:fixed; inset:0; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px, transparent 1px); background-size:70px 70px; mask-image:radial-gradient(circle at 55% 40%, #000, transparent 70%); }
a { color:inherit; }
button, input, textarea, select { font:inherit; }
.page.blurred { filter:blur(9px); pointer-events:none; user-select:none; }
.glass-shell, .glass-card, .card { background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.035)); border:1px solid var(--line); box-shadow:var(--shadow); backdrop-filter:blur(22px); }
.site-nav { width:min(1840px,calc(100% - 96px)); margin:36px auto 0; min-height:86px; border-radius:28px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; padding:16px 28px; position:relative; z-index:10; }
.brand-block { display:flex; align-items:center; gap:18px; text-decoration:none; font-weight:900; font-size:26px; letter-spacing:-.04em; }
.brand-mark { width:48px; height:48px; display:grid; place-items:center; border-radius:13px; color:#fff; font-weight:950; background:linear-gradient(145deg,rgba(255,255,255,.22),rgba(255,255,255,.04)); border:1px solid rgba(255,255,255,.18); box-shadow:inset 0 0 20px rgba(255,255,255,.05); }
.nav-center { display:flex; gap:28px; align-items:center; justify-content:center; }
.nav-center a { color:#c8c9cd; text-decoration:none; padding:14px 28px; border-radius:999px; transition:.18s ease; }
.nav-center a:hover, .nav-center a.active { color:#fff; background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.06)); box-shadow:inset 0 1px 0 rgba(255,255,255,.12); }
.nav-action { justify-self:end; border:1px solid var(--line-2); border-radius:999px; padding:15px 32px; color:#fff; text-decoration:none; cursor:pointer; font-weight:850; background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045)); box-shadow:inset 0 1px 0 rgba(255,255,255,.1); }
.landing-hero { width:min(1780px,calc(100% - 128px)); margin:48px auto 0; display:grid; grid-template-columns:minmax(430px,.85fr) 1.45fr; gap:70px; align-items:center; }
.hero-copy { padding:42px 0; }
.pill { display:inline-flex; align-items:center; gap:12px; padding:12px 22px; border-radius:999px; color:#cfd1d5; background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.045)); border:1px solid var(--line); box-shadow:0 14px 50px rgba(0,0,0,.24); }
.hero-copy h1 { margin:30px 0 22px; font-size:clamp(54px,5.3vw,92px); line-height:1.02; letter-spacing:-.07em; }
.hero-copy h1 span { color:#8b8f97; }
.hero-copy p { max-width:620px; color:#b8bbc0; font-size:22px; line-height:1.55; margin:0; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-top:36px; }
.primary-cta, .secondary-cta, .primary-btn, .danger-btn, .sign-btn { border-radius:999px; padding:16px 30px; text-decoration:none; font-weight:850; cursor:pointer; border:1px solid var(--line-2); transition:transform .18s ease, border-color .18s ease, background .18s ease; }
.primary-cta { color:#0b0d10; background:#fff; border-color:#fff; box-shadow:0 16px 38px rgba(255,255,255,.14); }
.primary-cta span { margin-left:14px; font-size:24px; vertical-align:-2px; }
.secondary-cta, .sign-btn { color:#fff; background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.04)); }
.primary-cta:hover, .secondary-cta:hover, .primary-btn:hover, .danger-btn:hover, .sign-btn:hover, .nav-action:hover { transform:translateY(-2px); }
.social-proof { display:flex; gap:22px; align-items:center; margin-top:50px; color:#aeb2b9; }
.avatars { display:flex; align-items:center; }
.avatars span, .avatars strong { width:50px; height:50px; margin-right:-13px; border-radius:50%; border:3px solid #090c10; background:linear-gradient(145deg,#f1f1f1,#5e636b); box-shadow:0 6px 20px rgba(0,0,0,.28); }
.avatars span:nth-child(2){background:linear-gradient(145deg,#ffdbbd,#7c4a33)} .avatars span:nth-child(3){background:linear-gradient(145deg,#dcc4b4,#3b3d45)} .avatars span:nth-child(4){background:linear-gradient(145deg,#f4ece6,#2f3037)}
.avatars strong { display:grid; place-items:center; background:#191d23; color:#fff; font-size:16px; }
.dashboard-preview { min-height:640px; border-radius:30px; display:grid; grid-template-columns:200px 1fr; overflow:hidden; }
.preview-sidebar, .dash-sidebar { border-right:1px solid var(--line); padding:34px 16px; display:flex; flex-direction:column; gap:10px; }
.preview-sidebar h3, .dash-sidebar h3 { margin:0 0 20px; padding:0 16px; letter-spacing:-.04em; }
.preview-sidebar a, .dash-sidebar a { color:#a9adb5; text-decoration:none; padding:14px 16px; border-radius:13px; display:flex; gap:12px; align-items:center; font-size:14px; }
.preview-sidebar a.active, .dash-sidebar a.active, .preview-sidebar a:hover, .dash-sidebar a:hover { background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045)); color:#fff; }
.logout-preview { margin-top:auto; }
.preview-main { padding:36px 30px 30px; }
.preview-head { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:28px; }
.preview-head h2, .preview-head h1 { margin:0; letter-spacing:-.05em; font-size:28px; }
.date-pill { color:#b8bbc1; border:1px solid var(--line); border-radius:15px; padding:12px 15px; background:rgba(0,0,0,.14); font-size:13px; white-space:nowrap; }
.metric-grid, .stats-grid { display:grid; grid-template-columns:repeat(4,minmax(130px,1fr)); gap:16px; }
.metric-grid div, .stat-box { min-height:150px; padding:24px 20px; border-radius:17px; background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.03)); border:1px solid var(--line); box-shadow:inset 0 1px 0 rgba(255,255,255,.05); }
.metric-grid span, .stat-box span { display:block; color:#c6c8ce; font-size:13px; margin-bottom:18px; }
.metric-grid strong, .stat-box strong { display:block; font-size:25px; letter-spacing:-.04em; margin-bottom:12px; }
.metric-grid small, .stat-box small { color:#8f949c; line-height:1.5; }
.metric-grid small::first-line { color:var(--success); }
.preview-bottom, .dashboard-columns { display:grid; grid-template-columns:1.55fr .85fr; gap:16px; margin-top:18px; }
.chart-card, .sources-card, .glass-card { border-radius:17px; padding:24px; background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.028)); border:1px solid var(--line); }
.card-title { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.card-title span { padding:9px 14px; border:1px solid var(--line); border-radius:14px; color:#bbbfc6; font-size:12px; }
svg { width:100%; height:auto; }
.grid-line { stroke:rgba(255,255,255,.055); stroke-width:1; fill:none; }
.area { fill:url(#lineFill); }
.line { fill:none; stroke:rgba(255,255,255,.72); stroke-width:2.1; }
.sources-card h3 { margin:0 0 28px; }
.source-row { display:grid; grid-template-columns:1fr auto; gap:10px; align-items:center; margin:18px 0; color:#c9ccd2; font-size:14px; }
.source-row i { grid-column:1 / -1; height:5px; border-radius:99px; background:rgba(255,255,255,.08); overflow:hidden; }
.source-row i::before { content:""; display:block; width:var(--w); height:100%; border-radius:99px; background:rgba(255,255,255,.72); }
.feature-row { width:min(1780px,calc(100% - 128px)); margin:42px auto 60px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature-row article { display:flex; gap:26px; align-items:center; padding:34px 28px; border-radius:17px; background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)); border:1px solid var(--line); }
.feature-row article > span { width:78px; height:78px; display:grid; place-items:center; border-radius:17px; font-size:32px; background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.055)); border:1px solid var(--line-2); }
.feature-row h3 { margin:0 0 8px; font-size:22px; }
.feature-row p { margin:0; color:#b9bcc3; line-height:1.45; }
.modal.hidden { display:none; }
.modal { position:fixed; inset:0; display:grid; place-items:center; padding:24px; background:rgba(0,0,0,.50); z-index:100; backdrop-filter:blur(10px); }
.auth-panel { position:relative; width:min(440px,100%); padding:34px; border-radius:28px; background:var(--panel-strong); border:1px solid var(--line); box-shadow:var(--shadow); }
.auth-panel h3 { margin:6px 0 22px; font-size:30px; letter-spacing:-.04em; }
.close { position:absolute; right:18px; top:14px; border:0; background:transparent; color:#fff; font-size:30px; cursor:pointer; }
.oauth { display:block; margin-top:12px; padding:15px 16px; border-radius:16px; color:#fff; text-align:center; text-decoration:none; font-weight:900; border:1px solid rgba(255,255,255,.12); }
.google { background:#2563eb; } .twitch { background:#9146ff; }
/* App pages */
.topbar { min-height:76px; padding:18px 28px; display:flex; justify-content:space-between; align-items:center; position:sticky; top:0; z-index:20; background:rgba(3,6,9,.56); backdrop-filter:blur(18px); border-bottom:1px solid var(--line); }
.brand { color:#fff; text-decoration:none; font-weight:950; font-size:24px; letter-spacing:-.04em; }
.nav-links { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.nav-links a:not(.sign-btn) { color:#d4d6db; text-decoration:none; font-weight:750; padding:10px 12px; border-radius:999px; }
.nav-links a:not(.sign-btn):hover { background:rgba(255,255,255,.08); }
.app-nav { margin-top:22px; width:min(1500px,calc(100% - 48px)); }
.dashboard-shell { width:min(1500px,calc(100% - 48px)); margin:28px auto 60px; border-radius:30px; display:grid; grid-template-columns:250px 1fr; overflow:hidden; }
.dash-sidebar { padding:32px 18px; }
.dash-sidebar .avatar { width:82px; height:82px; border-radius:22px; margin:0 0 6px 14px; }
.dash-sidebar p { color:#c6c8ce; margin:0 14px 18px; }
.dash-main { padding:36px; min-width:0; }
.real-head { margin-bottom:22px; }
.eyebrow { color:#9da1a9; text-transform:uppercase; letter-spacing:.18em; font-weight:900; font-size:12px; margin:0 0 8px; }
.pro-stats { margin-bottom:16px; }
.links-card h2, .donations-card h2, .glass-card h2 { margin-top:0; letter-spacing:-.04em; }
.real-chart .area { fill:rgba(255,255,255,.08); }
.card { width:min(900px,100%); border-radius:30px; padding:42px; }
.hero { min-height:calc(100vh - 76px); display:grid; place-items:center; padding:32px; }
.normal-hero { align-content:start; padding-top:46px; }
.settings-card, .donate-card, .auth-verify-card { width:min(920px,100%); }
h1 { font-size:clamp(38px,5vw,64px); line-height:.98; margin:0 0 24px; letter-spacing:-.06em; }
h2 { font-size:clamp(24px,3vw,36px); margin:0 0 20px; letter-spacing:-.04em; }
.muted { color:var(--muted); }
.copy-box { padding:15px; border:1px solid rgba(255,255,255,.12); background:rgba(0,0,0,.22); border-radius:16px; color:#e7e9ed; word-break:break-all; margin-bottom:16px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; text-align:left; }
.form-grid label { display:grid; gap:8px; color:#e5e7eb; font-weight:750; }
.form-grid .full, .full { grid-column:1 / -1; }
input, textarea, select { width:100%; border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.25); color:#fff; border-radius:15px; padding:14px; outline:none; }
input:focus, textarea:focus, select:focus { border-color:rgba(255,255,255,.4); box-shadow:0 0 0 4px rgba(255,255,255,.08); }
textarea { resize:vertical; }
small { color:#a8adb6; font-weight:500; }
.primary-btn { color:#0b0d10; background:#fff; border-color:#fff; }
.danger-btn { color:#fff; background:var(--danger); border-color:transparent; }
.flash, .success-box, .features div { padding:14px; border-radius:16px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); margin-bottom:16px; }
.success-box { background:rgba(69,209,138,.12); border-color:rgba(69,209,138,.28); }
.table-wrap { overflow-x:auto; border:1px solid rgba(255,255,255,.09); border-radius:18px; }
table { width:100%; border-collapse:collapse; min-width:760px; }
th, td { padding:14px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left; color:#e5e7eb; }
th { color:#b9bcc3; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
tr:last-child td { border-bottom:0; }
.warning { color:#fca5a5; font-weight:850; }
.mt-card { margin-top:24px; } .mt-small { margin-top:18px; }
.wallet-cell { max-width:320px; overflow-wrap:anywhere; }
.hidden-field { display:none; }
.avatar { width:96px; height:96px; object-fit:cover; border-radius:28px; border:1px solid rgba(255,255,255,.25); box-shadow:0 16px 50px rgba(0,0,0,.25); }
.big-secret { font-size:22px; font-weight:900; letter-spacing:.08em; text-align:center; }
.small-uri { font-size:12px; }
.donate-form { margin-top:22px; }
.audio-unlock { position:fixed; left:50%; top:18px; transform:translateX(-50%); z-index:50; border:0; border-radius:999px; padding:12px 18px; font-weight:800; background:#fff; color:#111827; box-shadow:0 16px 45px rgba(0,0,0,.25); cursor:pointer; }
.audio-unlock.hidden { display:none; }
.obs-body { margin:0; background:transparent; overflow:hidden; font-family:Inter, Arial, sans-serif; }
.obs-alert { position:fixed; left:50%; top:64px; transform:translateX(-50%); min-width:420px; max-width:760px; padding:28px 34px; border-radius:30px; background:rgba(15,23,42,.92); color:#fff; border:1px solid rgba(255,255,255,.25); box-shadow:0 24px 80px rgba(0,0,0,.5); text-align:center; animation:obs-pop .35s ease-out; }
.obs-alert.hidden { display:none; }
.obs-title { font-size:34px; font-weight:950; margin-bottom:10px; }
.obs-message { font-size:22px; color:#e5e7eb; }
.obs-time { font-size:14px; color:var(--muted); margin-bottom:10px; }
audio { max-width:240px; width:100%; }
@keyframes obs-pop { from { opacity:0; transform:translateX(-50%) translateY(-20px) scale(.94); } to { opacity:1; transform:translateX(-50%) translateY(0) scale(1); } }
@media (max-width:1200px){ .landing-hero{grid-template-columns:1fr; gap:28px;} .dashboard-preview{min-height:auto;} .feature-row{grid-template-columns:repeat(2,1fr);} }
@media (max-width:900px){ .site-nav{width:calc(100% - 28px); grid-template-columns:1fr auto; gap:14px; padding:14px;} .nav-center{order:3; grid-column:1/-1; overflow-x:auto; justify-content:flex-start; gap:8px;} .nav-center a{padding:10px 16px;} .landing-hero,.feature-row{width:calc(100% - 28px);} .hero-copy h1{font-size:48px;} .hero-copy p{font-size:18px;} .dashboard-preview,.dashboard-shell{grid-template-columns:1fr;} .preview-sidebar,.dash-sidebar{border-right:0; border-bottom:1px solid var(--line);} .metric-grid,.stats-grid,.preview-bottom,.dashboard-columns,.feature-row{grid-template-columns:1fr;} .form-grid{grid-template-columns:1fr;} .card{padding:28px; border-radius:24px;} .dashboard-shell,.app-nav{width:calc(100% - 28px);} .dash-main{padding:22px;} }
@media (max-width:560px){ .brand-block{font-size:20px;} .brand-mark{width:42px;height:42px;} .nav-action{padding:12px 18px;} .hero-actions{display:grid;} .feature-row article{align-items:flex-start; padding:24px;} .dashboard-preview{border-radius:22px;} }

/* Public info pages */
.info-page .site-nav { margin-bottom: 0; }
.info-hero { width:min(1500px,calc(100% - 96px)); margin:70px auto 80px; }
.info-copy { max-width:820px; margin-bottom:34px; }
.info-copy h1 { font-size:clamp(46px,7vw,92px); margin:26px 0 18px; }
.info-copy > p:not(.pill) { color:#c6c8ce; font-size:22px; line-height:1.55; margin:0; }
.news-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.news-card { min-height:220px; }
.news-date { display:inline-flex; margin-bottom:18px; color:#aeb2ba; font-size:13px; border:1px solid var(--line); border-radius:999px; padding:8px 12px; background:rgba(0,0,0,.16); }
.news-card h2 { margin-bottom:12px; }
.news-card p, .faq-list p { color:#bcc0c8; line-height:1.6; font-size:16px; }
.faq-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:28px; align-items:start; }
.faq-list { display:grid; gap:14px; }
.faq-list details { padding:0; overflow:hidden; }
.faq-list summary { cursor:pointer; padding:24px 28px; font-size:20px; font-weight:900; letter-spacing:-.03em; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; float:right; color:#fff; opacity:.72; }
.faq-list details[open] summary::after { content:'–'; }
.faq-list p { margin:0; padding:0 28px 26px; }
@media (max-width:900px){ .info-hero{width:calc(100% - 28px); margin-top:42px;} .news-grid,.faq-layout{grid-template-columns:1fr;} .info-copy > p:not(.pill){font-size:18px;} }

/* Real dashboard donation dynamics */
.dashboard-overview-row {
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  align-items:stretch;
  margin:18px 0 0;
}
.donations-dynamic-card, .balance-card { padding:24px; border-radius:22px; }
.chart-title-row { align-items:flex-start; gap:18px; }
.chart-title-row small { display:block; margin-top:6px; color:var(--muted); }
.period-form select {
  width:auto;
  min-width:126px;
  border-radius:14px;
  padding:10px 34px 10px 12px;
  background:rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
}
.donation-chart-wrap { margin-top:18px; min-height:320px; }
#donationChart { width:100%; height:320px; display:block; overflow:visible; }
.chart-grid { stroke:rgba(255,255,255,.075); stroke-width:1; }
.chart-y-label, .chart-x-label { fill:#a9adb5; font-size:12px; }
.chart-area-fill { fill:rgba(255,255,255,.08); }
.chart-line-real { fill:none; stroke:rgba(255,255,255,.82); stroke-width:3; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 8px 18px rgba(255,255,255,.08)); }
.chart-dot { fill:#fff; stroke:rgba(3,6,9,.92); stroke-width:2; }
.balance-card { display:flex; flex-direction:column; justify-content:center; }
.balance-label { color:#aeb2ba; font-size:13px; text-transform:uppercase; letter-spacing:.14em; font-weight:900; }
.balance-card strong { display:block; margin:14px 0 8px; font-size:clamp(36px,4vw,58px); line-height:1; letter-spacing:-.06em; }
.withdraw-btn { display:inline-flex; justify-content:center; align-items:center; margin-top:22px; width:100%; text-decoration:none; text-align:center; }
@media (max-width:900px){ .dashboard-overview-row{grid-template-columns:1fr;} .donation-chart-wrap,#donationChart{min-height:260px;height:260px;} }

/* Dashboard cleanup */
.dashboard-clean-top { grid-template-columns:1fr; }
.compact-sidebar { padding-top:34px; }
.compact-sidebar a { font-size:15px; }
.card-heading-row { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.card-heading-row h2 { margin:0; }
.secondary-btn { border-radius:999px; padding:12px 20px; text-decoration:none; font-weight:850; border:1px solid var(--line-2); color:#fff; background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.04)); display:inline-flex; align-items:center; justify-content:center; }
.small-btn { padding:10px 16px; font-size:14px; white-space:nowrap; }
@media (max-width:560px){ .card-heading-row{align-items:flex-start; flex-direction:column;} .small-btn{width:100%;} }

.dashboard-settings-card { width:100%; }
.dashboard-settings-card .form-grid { margin-top:18px; }


/* Sidebar profile + donation panels */
.sidebar-profile {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:4px 8px 24px;
  margin-bottom:8px;
  border-bottom:1px solid var(--line);
}
.sidebar-avatar {
  width:96px;
  height:96px;
  border-radius:28px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.22);
  background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.055));
  box-shadow:0 18px 55px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.1);
}
.sidebar-avatar-fallback {
  display:grid;
  place-items:center;
  color:#fff;
  font-size:42px;
  font-weight:950;
  text-transform:uppercase;
}
.sidebar-username {
  max-width:100%;
  color:#fff;
  font-size:24px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.055em;
  text-align:center;
  overflow-wrap:anywhere;
}
.donation-list {
  display:grid;
  gap:14px;
}
.donation-panel {
  position:relative;
  min-height:126px;
  padding:26px 74px 26px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.028));
  border:1px solid var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055), 0 16px 48px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.donation-panel-time {
  position:absolute;
  top:16px;
  right:20px;
  color:#858a93;
  font-size:12px;
  font-weight:650;
  letter-spacing:.01em;
}
.donation-panel h3 {
  margin:0 0 16px;
  color:#fff;
  font-size:20px;
  font-weight:950;
  letter-spacing:-.035em;
}
.donation-panel p {
  margin:0;
  max-width:760px;
  color:#d4d7dd;
  font-size:17px;
  line-height:1.55;
}
.all-donations-list .donation-panel { min-height:118px; }
@media (max-width:900px){
  .sidebar-profile{border-bottom:0; padding-bottom:14px;}
  .dash-sidebar{align-items:stretch;}
  .sidebar-avatar{width:82px;height:82px;border-radius:24px;}
  .sidebar-username{font-size:22px;}
}
@media (max-width:560px){
  .donation-panel{padding:54px 18px 22px;}
  .donation-panel-time{left:18px; right:auto; top:16px;}
  .donation-panel h3{font-size:18px;}
  .donation-panel p{font-size:15px;}
}

/* Withdrawals + admin */
.withdraw-summary-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:18px; align-items:stretch; }
.withdraw-total-card { min-height:230px; }
.withdraw-fee-card { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.withdraw-fee-card > div { padding:20px; border-radius:18px; background:rgba(255,255,255,.055); border:1px solid var(--line); }
.withdraw-fee-card span { display:block; color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.08em; font-weight:850; margin-bottom:12px; }
.withdraw-fee-card strong { display:block; color:#fff; font-size:24px; letter-spacing:-.04em; }
.full-span { grid-column:1 / -1; }
.withdraw-form .hidden-field { display:none; }
.withdrawal-list { display:grid; gap:14px; margin-top:18px; }
.withdrawal-panel { position:relative; padding:26px 28px; border-radius:22px; background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.028)); border:1px solid var(--line); box-shadow:inset 0 1px 0 rgba(255,255,255,.055), 0 16px 48px rgba(0,0,0,.22); }
.withdrawal-panel time { position:absolute; top:18px; right:24px; color:#858a93; font-size:12px; font-weight:650; }
.withdrawal-panel h3 { margin:14px 110px 10px 0; color:#fff; font-size:23px; letter-spacing:-.04em; }
.withdrawal-panel p { margin:8px 0 0; color:#cfd2d8; line-height:1.55; overflow-wrap:anywhere; }
.status-pill { display:inline-flex; align-items:center; justify-content:center; border-radius:999px; padding:8px 12px; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; background:rgba(255,255,255,.08); border:1px solid var(--line); color:#d7dbe2; }
.status-pending { color:#fde68a; border-color:rgba(253,230,138,.26); background:rgba(253,230,138,.08); }
.status-approved, .status-completed { color:#86efac; border-color:rgba(134,239,172,.24); background:rgba(134,239,172,.08); }
.status-rejected { color:#fca5a5; border-color:rgba(252,165,165,.24); background:rgba(252,165,165,.08); }
.admin-shell-single { grid-template-columns:1fr; }
.admin-withdrawal-panel { text-align:left; }
.admin-actions { display:grid; grid-template-columns:1fr auto; gap:12px; margin-top:18px; }
.admin-actions-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:12px; }
.admin-actions-row form { margin:0; }
@media (max-width:900px){ .withdraw-summary-grid,.withdraw-fee-card{grid-template-columns:1fr;} .withdrawal-panel h3{margin-right:0;} .withdrawal-panel time{position:static; display:block; margin-bottom:10px;} .admin-actions{grid-template-columns:1fr;} }

.admin-decision-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.admin-note-label {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 700;
}

.admin-decision-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
  font: inherit;
}

.admin-decision-form textarea:focus {
  border-color: rgba(255,255,255,.35);
}

.admin-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.single-withdraw-summary { grid-template-columns: minmax(0, 1fr); }
.withdraw-net-preview {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-weight: 750;
}
.withdraw-net-preview strong { color:#fff; font-size: 20px; margin-left: 8px; }
.admin-decision-locked {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: var(--muted);
}
.admin-decision-locked span { font-weight: 850; color: #fff; }
.admin-decision-locked p { margin: 10px 0 0; }
