/* mybadge.id */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #e8ecf1; color: #2d3748; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { text-align: center; padding: 5rem 2rem 3rem; }
.hero-badge { width: 100px; height: 100px; border-radius: 50%; background: #e8ecf1; box-shadow: 8px 8px 16px #c8ccd1, -8px -8px 16px #ffffff; margin: 0 auto 2rem; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); }
.tagline { font-size: 0.85rem; color: #666; margin-top: 0.3rem; }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 1.5rem; text-align: center; }
.showcase { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; }
.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.badge-item { text-align: center; padding: 1.5rem; background: #e8ecf1; border-radius: 16px; box-shadow: 6px 6px 12px #c8ccd1, -6px -6px 12px #ffffff; }
.badge-circle { width: 56px; height: 56px; border-radius: 50%; background: #e8ecf1; box-shadow: 4px 4px 8px #c8ccd1, -4px -4px 8px #ffffff; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.badge-circle.accent { color: #6366f1; }
.badge-icon { font-size: 1.2rem; color: #2d3748; }
.badge-circle.accent .badge-icon { color: #6366f1; }
.badge-id { font-family: 'Fira Code', monospace; font-size: 0.55rem; color: #888; display: block; margin-bottom: 0.3rem; }
.badge-label { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.75rem; display: block; margin-bottom: 0.3rem; }
.verified-tag { font-size: 0.55rem; color: #22c55e; }
.verify { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; }
.verify-panel { background: #e8ecf1; box-shadow: inset 4px 4px 8px #c8ccd1, inset -4px -4px 8px #ffffff; border-radius: 12px; padding: 1.5rem; text-align: center; }
.verify-text { font-size: 0.7rem; color: #888; margin-bottom: 0.5rem; }
.verify-code { font-family: 'Fira Code', monospace; font-size: 0.8rem; display: block; margin-bottom: 1rem; }
.verify-status { font-size: 0.7rem; color: #22c55e; }
.check { margin-right: 0.3rem; }
.profile { text-align: center; padding: 3rem 2rem; }
.profile-card { background: #e8ecf1; box-shadow: 8px 8px 16px #c8ccd1, -8px -8px 16px #ffffff; border-radius: 16px; padding: 2rem; display: inline-block; margin-bottom: 2rem; }
.profile-avatar { width: 48px; height: 48px; border-radius: 50%; background: #6366f1; margin: 0 auto 0.75rem; }
.profile-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.profile-badges { font-size: 0.65rem; color: #888; display: block; margin-bottom: 0.75rem; }
.mini-badges { display: flex; justify-content: center; gap: 0.5rem; }
.mini-badge { width: 20px; height: 20px; border-radius: 50%; background: #e8ecf1; box-shadow: 2px 2px 4px #c8ccd1, -2px -2px 4px #ffffff; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.65rem; color: #c8ccd1; display: block; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 400px) { .badge-grid { grid-template-columns: 1fr; } }
