body { margin: 0; font-family: 'Inter', sans-serif; background: radial-gradient(circle at top, #1f1f1f, #0d0d0d); color: white; display: flex; justify-content: center; align-items: center; height: 100vh; } .container { width: 90%; max-width: 600px; backdrop-filter: blur(20px); background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px; } h1 { text-align: center; margin-bottom: 25px; } .item { margin-bottom: 18px; } .label { margin-bottom: 6px; font-size: 14px; } .bar { height: 12px; background: #2d2d2d; border-radius: 999px; overflow: hidden; } .fill { height: 100%; width: 0%; border-radius: 999px; transition: width 0.5s ease; } .life { background: #06b6d4; } .year { background: #ec4899; } .quarter { background: #22c55e; } .month { background: #6366f1; } .week { background: #8b5cf6; } .day { background: #f59e0b; }