:root{
  --bg:#0b0f14;
  --card:#111827cc;
  --border:rgba(255,255,255,.10);
  --text:#e5e7eb;
  --muted:#9ca3af;
  --primary:#22c55e;
  --danger:#ef4444;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --r:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:radial-gradient(1200px 600px at 15% 0%,rgba(34,197,94,.10),transparent 60%),var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
a{color:inherit}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}
.muted{color:var(--muted)}
.small{font-size:.88rem}
.topbar{
  position:sticky;top:0;z-index:10;
  display:flex;justify-content:space-between;gap:14px;align-items:center;
  padding:12px 14px;background:rgba(0,0,0,.35);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.brand{display:flex;gap:10px;align-items:center}
.logo{width:38px;height:38px;border-radius:12px;border:1px solid var(--border);background:#0f172a}
.title{font-weight:800}
.subtitle{font-size:.86rem;color:var(--muted)}
.walletBox{display:flex;flex-direction:column;align-items:flex-end;gap:6px}
.container{max-width:1100px;margin:0 auto;padding:14px}
.grid{display:grid;grid-template-columns:1fr;gap:14px}
@media(min-width:920px){.grid{grid-template-columns:1.2fr .8fr}}
.card{
  background:linear-gradient(180deg,rgba(17,24,39,.90),rgba(17,24,39,.65));
  border:1px solid var(--border); border-radius:var(--r); box-shadow:var(--shadow);
  padding:14px;
}
.row{display:flex;align-items:center}
.between{justify-content:space-between}
.gap{gap:10px}
.pill{padding:8px 10px;border:1px solid var(--border);border-radius:999px;background:rgba(0,0,0,.22);font-size:.9rem}
.growroom{position:relative;margin-top:10px;border-radius:var(--r);overflow:hidden;border:1px solid var(--border);background:#0f172a}
.hero{width:100%;display:block;aspect-ratio:16/9;object-fit:cover}
.harvestBtn{
  position:absolute;left:12px;bottom:12px;
  display:flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.55);backdrop-filter:blur(8px);
  color:var(--text);cursor:pointer;
}
.harvestBtn img{width:18px;height:18px}
.stats{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:12px}
@media(min-width:520px){.stats{grid-template-columns:repeat(4,1fr)}}
.stat{padding:10px;border:1px solid var(--border);border-radius:14px;background:rgba(0,0,0,.18)}
.label{font-size:.85rem;color:var(--muted)}
.value{font-size:1.15rem;font-weight:800;margin-top:2px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);color:var(--text);cursor:pointer;
}
.btn.primary{background:linear-gradient(180deg,rgba(34,197,94,.95),rgba(34,197,94,.65));border-color:rgba(34,197,94,.40);color:#04110a;font-weight:800}
.btn:disabled{opacity:.45;cursor:not-allowed}
.divider{height:1px;background:var(--border);margin:14px 0}
.upgradeList{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.upgrade{display:flex;gap:10px;align-items:flex-start;padding:10px;border-radius:16px;border:1px solid var(--border);background:rgba(0,0,0,.18)}
.upgrade .icon{width:44px;height:44px;border-radius:14px;border:1px solid var(--border);background:#0f172a}
.upgrade .meta{flex:1}
.upgrade .name{font-weight:800}
.upgrade .desc{font-size:.9rem;color:var(--muted);margin-top:2px}
.upgrade .cost{margin-top:8px;font-size:.92rem}
.eventCard{display:flex;gap:10px;align-items:center;padding:10px;border-radius:16px;border:1px solid var(--border);background:rgba(0,0,0,.18)}
.eventCard .icon{width:44px;height:44px;border-radius:14px;border:1px solid var(--border);background:#0f172a}
.footer{padding:18px 14px;text-align:center}
