/* Minimal custom styles for effects ported from static HTML */
.glass { backdrop-filter: saturate(140%) blur(12px); background: rgba(255,255,255,0.06); }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); }
.fade-up { animation: fadeUp .6s ease .05s both; }
@keyframes fadeUp { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }
