body{
    background:linear-gradient(135deg, #f4f7fb 0%, #eef4ff 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    color:#1f2937;
}

h1, h2, h3, h4{
    color:#2563eb;
    font-weight:700;
}

.hero-card {
    background:linear-gradient(135deg, #2563eb, #14b8a6);
    color:white;
    border-radius:20px;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 12px 30px rgba(37,99,235,.18);
}

.card {
    border:none;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(15,23,42,.08);
}

.btn{
    margin:4px 0;
    border-radius:10px;
}

.profile-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg, #2563eb, #14b8a6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:bold;
}

.profile-avatar.large{
    width:120px;
    height:120px;
    font-size:2.5rem;
}

.id-card{
    border:2px dashed #2563eb;
    border-radius:16px;
    background:linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    padding:20px;
}

.laundry-token{
    border:1px solid #d8e6ff;
    border-radius:12px;
    background:#f8fbff;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}
