:root{
    --primary: #6366f1;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-card: #ffffff;
}

.human-card{
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.human-card .badge{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: var(--primary);
    font-size: 0.75rem;
}

.human-card h3{
    margin: 0;
    color: var(--text-main);
    font-size: 1.5rem;
}

.human-card p{
    color: var(--text-muted);
    line-height: 1.6;
}

.human-card button{
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.human-card button:hover{
    transform: translateY(-2px);
    filter: brightness(110%);
}
